We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9571bab + 0ed8448 commit 82a0af5Copy full SHA for 82a0af5
ports/espressif/boards/hardkernel_odroid_go/pins.c
@@ -1,4 +1,6 @@
1
+#include "py/objtuple.h"
2
#include "shared-bindings/board/__init__.h"
3
+#include "shared-module/displayio/__init__.h"
4
5
// Pin names from: https://wiki.odroid.com/odroid_go/odroid_go
6
@@ -53,5 +55,6 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
53
55
{ MP_ROM_QSTR(MP_QSTR_EXT4), MP_ROM_PTR(&pin_GPIO15) },
54
56
57
{ MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&board_spi_obj) },
58
+ { MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_PTR(&displays[0].display)},
59
};
60
MP_DEFINE_CONST_DICT(board_module_globals, board_module_globals_table);
0 commit comments