Skip to content

Commit 3a84599

Browse files
committed
fix the DISPLAYIO_ITEMS they were backwards
1 parent 61ea718 commit 3a84599

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared-bindings/board/__init__.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ MP_DECLARE_CONST_FUN_OBJ_0(board_uart_obj);
4040

4141
#if CIRCUITPY_DISPLAYIO
4242
#define CIRCUITPYTHON_BOARD_DICT_DISPLAYIO_ITEMS \
43-
{ MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_NONE },
43+
/* expands to nothing, the DISPLAY property is handled by mp_module_board_attr */
4444
#else
4545
#define CIRCUITPYTHON_BOARD_DICT_DISPLAYIO_ITEMS \
46-
/* expands to nothing, the DISPLAY property is handled by mp_module_board_attr */
46+
{ MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_NONE },
4747
#endif
4848

4949
#define CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS \

0 commit comments

Comments
 (0)