- Implemented HAL for for power management - Implemented the Power app (accessible via Settings app) - Implemented status bar icon for battery status
18 lines
417 B
C
18 lines
417 B
C
#include "yellow_board.h"
|
|
#include "display_i.h"
|
|
|
|
bool twodotfour_lvgl_init();
|
|
bool twodotfour_bootstrap();
|
|
|
|
extern const SdCard twodotfour_sdcard;
|
|
|
|
const HardwareConfig yellow_board_24inch_cap = {
|
|
.bootstrap = &twodotfour_bootstrap,
|
|
.display = {
|
|
.set_backlight_duty = &twodotfour_backlight_set
|
|
},
|
|
.init_graphics = &twodotfour_lvgl_init,
|
|
.sdcard = &twodotfour_sdcard,
|
|
.power = NULL
|
|
};
|