pull/736/head
Kevin Hester 2021-03-08 17:09:35 +08:00
rodzic 7bbd2c0e80
commit 781d2f0ad6
2 zmienionych plików z 18 dodań i 4 usunięć

Wyświetl plik

@ -87,14 +87,26 @@ eink:
* new battery level sensing * new battery level sensing
* measure current draw * measure current draw
* DONE: fix backlight * DONE: fix backlight
* USB is busted because of power enable mode? * DONE - USB is busted because of power enable mode?
* test that board leaves bootloader always
* test USB - works in bootloader
* test LEDs
* Test BME280
* test gps
* check GPS fast locking
* tested! dlora
* test eink backlight
* tested! eink
* test buttons
* test battery charging
* test serial flash
* send updated app and bootloader image
* OHH BME280! THAT IS GREAT! * OHH BME280! THAT IS GREAT!
* make new screen work, ask for datasheet * make new screen work, ask for datasheet
* say I think you could ship this * say I think you could ship this
* leds seem busted * leds seem busted
* usb doesn't stay connected * fix hw_model: "nrf52unknown"
* check GPS works * use larger icon for meshtastic logo
* check GPS fast locking
* send email about variants & faster flash programming - https://github.com/geeksville/Meshtastic-esp32/commit/f110225173a77326aac029321cdb6491bfa640f6 * send email about variants & faster flash programming - https://github.com/geeksville/Meshtastic-esp32/commit/f110225173a77326aac029321cdb6491bfa640f6
* send PR for bootloader * send PR for bootloader
* fix nrf52 time/date * fix nrf52 time/date

Wyświetl plik

@ -143,11 +143,13 @@ static void drawBootScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int1
drawIconScreen(region, display, state, x, y); drawIconScreen(region, display, state, x, y);
} }
#ifdef HAS_EINK
/// Used on eink displays while in deep sleep /// Used on eink displays while in deep sleep
static void drawSleepScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y) static void drawSleepScreen(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y)
{ {
drawIconScreen("Sleeping...", display, state, x, y); drawIconScreen("Sleeping...", display, state, x, y);
} }
#endif
static void drawPluginFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y) static void drawPluginFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y)
{ {