Revert "fix for flash size in default config"

This reverts commit 38e7a35910.
This commit is contained in:
Ken Van Hoeylandt
2024-01-17 20:52:08 +01:00
parent 38e7a35910
commit 622c9f780c
164 changed files with 0 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#include "core.h"
#include "app_manifest_registry.h"
#include "service_registry.h"
#define TAG "tactility"
void tt_core_init() {
TT_LOG_I(TAG, "core init start");
tt_assert(!tt_kernel_is_irq());
#if defined(__ARM_ARCH_7A__) && (__ARM_ARCH_7A__ == 0U)
/* Service Call interrupt might be configured before kernel start */
/* and when its priority is lower or equal to BASEPRI, svc instruction */
/* causes a Hard Fault. */
NVIC_SetPriority(SVCall_IRQn, 0U);
#endif
tt_service_registry_init();
tt_app_manifest_registry_init();
TT_LOG_I(TAG, "core init complete");
}