mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Implemented HAL for for power management - Implemented the Power app (accessible via Settings app) - Implemented status bar icon for battery status
16 lines
353 B
C
16 lines
353 B
C
#include "waveshare_s3_touch.h"
|
|
|
|
#include "lvgl_i.h"
|
|
|
|
bool ws3t_bootstrap();
|
|
|
|
const HardwareConfig waveshare_s3_touch = {
|
|
.bootstrap = &ws3t_bootstrap,
|
|
.display = {
|
|
.set_backlight_duty = NULL // TODO: This requires implementing the CH422G IO expander
|
|
},
|
|
.init_graphics = &ws3t_init_lvgl,
|
|
.sdcard = NULL,
|
|
.power = NULL
|
|
};
|