nrf5/drivers: Activate ssd1289 object in the display module.
This commit is contained in:
parent
0fdcd2eac7
commit
197c052ca6
|
@ -31,6 +31,7 @@
|
|||
#include "epaper_sld00200p_obj.h"
|
||||
#include "lcd_ili9341_obj.h"
|
||||
#include "lcd_ls0xxb7dxxx_obj.h"
|
||||
#include "lcd_ssd1289_obj.h"
|
||||
#include "oled_ssd1305_obj.h"
|
||||
#include "oled_ssd1306_obj.h"
|
||||
|
||||
|
@ -45,15 +46,15 @@ STATIC const mp_map_elem_t mp_module_display_globals_table[] = {
|
|||
#if MICROPY_PY_DISPLAY_LCD_LS0XXB7DXXX
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_LS0XXB7DXXX), (mp_obj_t)&lcd_ls0xxb7dxxx_type },
|
||||
#endif
|
||||
#if MICROPY_PY_DISPLAY_LCD_SSD1289
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_SSD1289), (mp_obj_t)&lcd_ssd1289_type },
|
||||
#endif
|
||||
#if MICROPY_PY_DISPLAY_OLED_SSD1305
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_SSD1305), (mp_obj_t)&oled_ssd1305_type },
|
||||
#endif
|
||||
#if MICROPY_PY_DISPLAY_OLED_SSD1306
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_SSD1306), (mp_obj_t)&oled_ssd1306_type },
|
||||
#endif
|
||||
#if 0
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_SSD1289), (mp_obj_t)&lcd_ssd1289_type }
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue