Skip to content

Commit 7ebfd73

Browse files
committed
Tweaks to fix parallelbus
1 parent 8e528a0 commit 7ebfd73

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

ports/espressif/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ INC += \
6464
-isystem esp-idf/components/esp_driver_i2s/include \
6565
-isystem esp-idf/components/esp_driver_$(IDF_TARGET)/include \
6666
-isystem esp-idf/components/esp_driver_ledc/include \
67+
-isystem esp-idf/components/esp_driver_parlio/include \
6768
-isystem esp-idf/components/esp_driver_pcnt/include \
6869
-isystem esp-idf/components/esp_driver_rmt/include \
6970
-isystem esp-idf/components/esp_driver_sdio/include \

ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include "common-hal/microcontroller/Pin.h"
1919
#include "py/runtime.h"
2020

21-
#include "driver/gpio.h"
21+
#include <driver/gpio.h>
2222

2323
/*
2424
* Current pin limitations for ESP32-S2 ParallelBus:

ports/espressif/common-hal/paralleldisplaybus/ParallelBus.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include "common-hal/digitalio/DigitalInOut.h"
1010

11-
#include "esp-idf/components/esp_lcd/include/esp_lcd_panel_io.h"
11+
#include <esp-idf/components/esp_lcd/include/esp_lcd_panel_io.h>
1212

1313
typedef struct {
1414
mp_obj_base_t base;

0 commit comments

Comments
 (0)