diff --git a/Documentation/ideas.md b/Documentation/ideas.md index e8940ad5d..4d5b07a04 100644 --- a/Documentation/ideas.md +++ b/Documentation/ideas.md @@ -12,6 +12,7 @@ ## Higher Priority +- Devices with a keyboard attached should always highlight the first widget (~Cardputer navigation issue), same for LV_INDEV_TYPE_ENCODER being present - Make it more clear to end-users that an SD card is required to run Tactility - Move "# Fix error "PSRAM space not enough for the Flash instructions" on boot:" fix from T-Deck and others to device.py - Make it possible to override stack size for an app via config file (loaded at boot), and make it possible to set preferred memory location (e.g. internal/external) diff --git a/Tests/SdkIntegration/main/Source/main.c b/Tests/SdkIntegration/main/Source/main.c index 5b0bcfb70..d4a9c3339 100644 --- a/Tests/SdkIntegration/main/Source/main.c +++ b/Tests/SdkIntegration/main/Source/main.c @@ -1,5 +1,3 @@ -#include - #include #include @@ -24,13 +22,6 @@ #include #include -#include -#include -#include -#include -#include -#include - static void onShowApp(AppHandle app, void* data, lv_obj_t* parent) { lv_obj_t* toolbar = lvgl_toolbar_create(parent, "Title"); lv_obj_align(toolbar, LV_ALIGN_TOP_MID, 0, 0);