nrf5: Correcting define name for epaper sld00200p, missing 0.
This commit is contained in:
parent
d2f5f1fe60
commit
643bf19466
@ -33,9 +33,9 @@
|
|||||||
#define MICROPY_PY_MACHINE_TIMER (1)
|
#define MICROPY_PY_MACHINE_TIMER (1)
|
||||||
#define MICROPY_PY_MACHINE_RTC (1)
|
#define MICROPY_PY_MACHINE_RTC (1)
|
||||||
|
|
||||||
#define MICROPY_PY_DISPLAY (1)
|
#define MICROPY_PY_DISPLAY (1)
|
||||||
#define MICROPY_PY_DISPLAY_EPAPER_SLD0020P (1)
|
#define MICROPY_PY_DISPLAY_EPAPER_SLD00200P (1)
|
||||||
#define MICROPY_PY_DISPLAY_LCD_SLD10261P (1)
|
#define MICROPY_PY_DISPLAY_LCD_SLD10261P (1)
|
||||||
|
|
||||||
#define MICROPY_HW_HAS_SWITCH (0)
|
#define MICROPY_HW_HAS_SWITCH (0)
|
||||||
#define MICROPY_HW_HAS_FLASH (0)
|
#define MICROPY_HW_HAS_FLASH (0)
|
||||||
|
@ -133,52 +133,52 @@
|
|||||||
|
|
||||||
#ifndef MICROPY_PY_DISPLAY
|
#ifndef MICROPY_PY_DISPLAY
|
||||||
|
|
||||||
#define MICROPY_PY_DISPLAY (0)
|
#define MICROPY_PY_DISPLAY (0)
|
||||||
#define MICROPY_PY_DISPLAY_EPAPER (0)
|
#define MICROPY_PY_DISPLAY_EPAPER (0)
|
||||||
#define MICROPY_PY_DISPLAY_EPAPER_SLD0020P (0)
|
#define MICROPY_PY_DISPLAY_EPAPER_SLD00200P (0)
|
||||||
#define MICROPY_PY_DISPLAY_LCD (0)
|
#define MICROPY_PY_DISPLAY_LCD (0)
|
||||||
#define MICROPY_PY_DISPLAY_LCD_SLD10261P (0)
|
#define MICROPY_PY_DISPLAY_LCD_SLD10261P (0)
|
||||||
#define MICROPY_PY_DISPLAY_OLED (0)
|
#define MICROPY_PY_DISPLAY_OLED (0)
|
||||||
#define MICROPY_PY_DISPLAY_OLED_SSD1306 (0)
|
#define MICROPY_PY_DISPLAY_OLED_SSD1306 (0)
|
||||||
#define MICROPY_PY_DISPLAY_OLED_SSD1305 (0)
|
#define MICROPY_PY_DISPLAY_OLED_SSD1305 (0)
|
||||||
|
|
||||||
#elif MICROPY_PY_DISPLAY
|
#elif MICROPY_PY_DISPLAY
|
||||||
|
|
||||||
// Default to include Monochrome Framebuffer
|
// Default to include Monochrome Framebuffer
|
||||||
// if display module is selected.
|
// if display module is selected.
|
||||||
#ifndef MICROPY_PY_LCD_MONO_FB
|
#ifndef MICROPY_PY_LCD_MONO_FB
|
||||||
#define MICROPY_PY_LCD_MONO_FB (1)
|
#define MICROPY_PY_LCD_MONO_FB (1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef MICROPY_PY_DISPLAY_EPAPER_SLD0020P
|
#ifndef MICROPY_PY_DISPLAY_EPAPER_SLD00200P
|
||||||
#define MICROPY_PY_DISPLAY_EPAPER_SLD0020P (0)
|
#define MICROPY_PY_DISPLAY_EPAPER_SLD00200P (0)
|
||||||
#else
|
#else
|
||||||
#if MICROPY_PY_DISPLAY_EPAPER_SLD0020P
|
#if MICROPY_PY_DISPLAY_EPAPER_SLD00200P
|
||||||
#define MICROPY_PY_DISPLAY_EPAPER (1)
|
#define MICROPY_PY_DISPLAY_EPAPER (1)
|
||||||
#endif
|
#endif
|
||||||
#endif // MICROPY_PY_DISPLAY_EPAPER_SLD0020P
|
#endif // MICROPY_PY_DISPLAY_EPAPER_SLD0020P
|
||||||
|
|
||||||
#ifndef MICROPY_PY_DISPLAY_LCD_SLD10261P
|
#ifndef MICROPY_PY_DISPLAY_LCD_SLD10261P
|
||||||
#define MICROPY_PY_DISPLAY_LCD_SLD10261P (0)
|
#define MICROPY_PY_DISPLAY_LCD_SLD10261P (0)
|
||||||
#else
|
#else
|
||||||
#if MICROPY_PY_DISPLAY_LCD_SLD10261P
|
#if MICROPY_PY_DISPLAY_LCD_SLD10261P
|
||||||
#define MICROPY_PY_DISPLAY_LCD (1)
|
#define MICROPY_PY_DISPLAY_LCD (1)
|
||||||
#endif
|
#endif
|
||||||
#endif // MICROPY_PY_DISPLAY_LCD_SLD10261P
|
#endif // MICROPY_PY_DISPLAY_LCD_SLD10261P
|
||||||
|
|
||||||
#ifndef MICROPY_PY_DISPLAY_OLED_SSD1305
|
#ifndef MICROPY_PY_DISPLAY_OLED_SSD1305
|
||||||
#define MICROPY_PY_DISPLAY_OLED_SSD1305 (0)
|
#define MICROPY_PY_DISPLAY_OLED_SSD1305 (0)
|
||||||
#else
|
#else
|
||||||
#if MICROPY_PY_DISPLAY_OLED_SSD1305
|
#if MICROPY_PY_DISPLAY_OLED_SSD1305
|
||||||
#define MICROPY_PY_DISPLAY_OLED (1)
|
#define MICROPY_PY_DISPLAY_OLED (1)
|
||||||
#endif
|
#endif
|
||||||
#endif // MICROPY_PY_DISPLAY_OLED_SSD1305
|
#endif // MICROPY_PY_DISPLAY_OLED_SSD1305
|
||||||
|
|
||||||
#ifndef MICROPY_PY_DISPLAY_OLED_SSD1306
|
#ifndef MICROPY_PY_DISPLAY_OLED_SSD1306
|
||||||
#define MICROPY_PY_DISPLAY_OLED_SSD1306 (0)
|
#define MICROPY_PY_DISPLAY_OLED_SSD1306 (0)
|
||||||
#else
|
#else
|
||||||
#if MICROPY_PY_DISPLAY_OLED_SSD1306
|
#if MICROPY_PY_DISPLAY_OLED_SSD1306
|
||||||
#define MICROPY_PY_DISPLAY_OLED (1)
|
#define MICROPY_PY_DISPLAY_OLED (1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // MICROPY_PY_DISPLAY_OLED_SSD1306
|
#endif // MICROPY_PY_DISPLAY_OLED_SSD1306
|
||||||
|
Loading…
x
Reference in New Issue
Block a user