Support for building and running external apps (#112)

This commit is contained in:
Ken Van Hoeylandt
2024-12-08 16:46:19 +01:00
committed by GitHub
parent 42e843b463
commit 415442e410
74 changed files with 2901 additions and 126 deletions
+16
View File
@@ -0,0 +1,16 @@
#pragma once
#include "AppManifest.h"
#ifdef ESP_PLATFORM
namespace tt::app {
bool startElfApp(const char* filePath);
void setElfAppManifest(const AppManifest& manifest);
}
#endif // ESP_PLATFORM