Ken Van Hoeylandt 5dc2599e55 implemented furi from flipper zero
added cmsis_core, furi, mlib and nanobake
implemented basic app structure from furi
implemented basic placeholder apps
2023-12-26 21:47:27 +01:00

20 lines
327 B
C

#pragma once
#include "nb_hardware.h"
#include "nb_app.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void nanobake_start(nb_config_t _Nonnull * config);
typedef void* FuriThreadId;
extern FuriThreadId nanobake_get_app_thread_id(size_t index);
extern size_t nanobake_get_app_thread_count();
#ifdef __cplusplus
}
#endif