created ServiceManifest (#5)

based on AppManifest
This commit is contained in:
Ken Van Hoeylandt
2024-01-05 19:38:39 +01:00
committed by GitHub
parent 3b9986fcef
commit e842e30ab3
39 changed files with 134 additions and 352 deletions
+4 -4
View File
@@ -1,19 +1,18 @@
#include "furi.h"
#include "app_manifest_registry.h"
#include <string.h>
#include "freertos/FreeRTOS.h"
#include "freertos/queue.h"
#define TAG "furi"
void furi_init() {
FURI_LOG_I(TAG, "init start");
furi_assert(!furi_kernel_is_irq());
if (xTaskGetSchedulerState() == taskSCHEDULER_RUNNING) {
vTaskSuspendAll();
}
furi_record_init();
xTaskResumeAll();
#if defined(__ARM_ARCH_7A__) && (__ARM_ARCH_7A__ == 0U)
@@ -24,4 +23,5 @@ void furi_init() {
#endif
app_manifest_registry_init();
FURI_LOG_I(TAG, "init complete");
}