mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
added cmsis_core, furi, mlib and nanobake implemented basic app structure from furi implemented basic placeholder apps
20 lines
327 B
C
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
|