Added GPIO app (#45)

- Implemented GPIO app
- LVGL now allocates freely (as opposed to using a fixed-size buffer): when it goes OOM, it just deletes image cache and starts behaving erratically.
This commit is contained in:
Ken Van Hoeylandt
2024-02-13 22:40:17 +01:00
committed by GitHub
parent bec24614d3
commit de34cbfd7a
6 changed files with 215 additions and 0 deletions
+2
View File
@@ -7,6 +7,7 @@
extern void wifi_main(void*);
extern const ServiceManifest wifi_service;
extern const AppManifest gpio_app;
extern const AppManifest wifi_connect_app;
extern const AppManifest wifi_manage_app;
@@ -18,6 +19,7 @@ void app_main(void) {
*/
.hardware = TT_BOARD_HARDWARE,
.apps = {
&gpio_app,
&hello_world_app,
&wifi_connect_app,
&wifi_manage_app