We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a78d16 commit 4c68226Copy full SHA for 4c68226
1 file changed
ports/espressif/boards/espressif_esp32s3_lcd_ev/pins.c
@@ -1,5 +1,6 @@
1
#include "py/objtuple.h"
2
#include "shared-bindings/board/__init__.h"
3
+#include "shared-module/displayio/__init__.h"
4
5
STATIC const mp_rom_obj_tuple_t tft_r_pins = {
6
{&mp_type_tuple},
@@ -65,7 +66,7 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
65
66
{ MP_ROM_QSTR(MP_QSTR_SCL), MP_ROM_PTR(DEFAULT_I2C_BUS_SCL) },
67
{ MP_ROM_QSTR(MP_QSTR_SDA), MP_ROM_PTR(DEFAULT_I2C_BUS_SDA) },
68
- { MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_PTR(&displays[0].display)}
69
+ { MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_PTR(&displays[0].display) },
70
71
// boot mode button can be used in SW as well
72
{ MP_ROM_QSTR(MP_QSTR_BUTTON), MP_ROM_PTR(&pin_GPIO0) },
0 commit comments