implemented furi from flipper zero

added cmsis_core, furi, mlib and nanobake
implemented basic app structure from furi
implemented basic placeholder apps
This commit is contained in:
Ken Van Hoeylandt
2023-12-26 21:47:27 +01:00
parent 0cf7829a2d
commit 5dc2599e55
114 changed files with 53069 additions and 297 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
#include "hello_world/hello_world.h"
void app_main(void) {
static nb_platform_config_t platform_config = {
static nb_config_t platform_config = {
.display_driver = &board_2432s024_create_display_driver,
.touch_driver = &board_2432s024_create_touch_driver,
.apps = {
@@ -16,5 +16,5 @@ void app_main(void) {
}
};
nanobake_run(&platform_config);
nanobake_start(&platform_config);
}