Tactility/boards/yellow_board/yellow_board.c
Ken Van Hoeylandt 632d7ccccf
Implemented power management (#67)
- Implemented HAL for for power management
- Implemented the Power app (accessible via Settings app)
- Implemented status bar icon for battery status
2024-11-02 23:40:26 +01:00

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
};