Merge develop into main (#419)

- Apply IRAM optimization to all platforms instead of only ESP32
- Implement performance optimizations
- Created `tt::hal::uart::open(uart_port_t)`
This commit is contained in:
Ken Van Hoeylandt
2025-11-23 00:11:08 +01:00
committed by GitHub
parent eba1f8955a
commit 6ab6ae5686
7 changed files with 62 additions and 38 deletions
@@ -82,7 +82,7 @@ struct AppManifest {
std::string appVersionName = {};
/** The technical version (must be incremented with new releases of the app */
uint64_t appVersionCode = {};
uint64_t appVersionCode = 0;
/** App category helps with listing apps in Launcher, app list or settings apps. */
Category appCategory = Category::User;
@@ -91,7 +91,7 @@ struct AppManifest {
Location appLocation = Location::internal();
/** Controls various settings */
uint32_t appFlags = Flags::None;
uint16_t appFlags = Flags::None;
/** Create the instance of the app */
CreateApp createApp = nullptr;