implemented service registry (#8)

+ implemented app and service context for data sharing
This commit is contained in:
Ken Van Hoeylandt
2024-01-06 20:37:41 +01:00
committed by GitHub
parent 051b1548ec
commit 83e226f696
25 changed files with 282 additions and 101 deletions
+3
View File
@@ -1,7 +1,9 @@
#include "furi.h"
#include "app_manifest_registry.h"
#include "freertos/FreeRTOS.h"
#include "freertos/queue.h"
#include "service_registry.h"
#define TAG "furi"
@@ -22,6 +24,7 @@ void furi_init() {
NVIC_SetPriority(SVCall_IRQn, 0U);
#endif
service_registry_init();
app_manifest_registry_init();
FURI_LOG_I(TAG, "init complete");
}