From 66d825a05af520b5a43f14fc160011e898132d9a Mon Sep 17 00:00:00 2001 From: Ken Van Hoeylandt Date: Sat, 27 Jan 2024 14:20:26 +0100 Subject: [PATCH] updated comments/order --- tactility/src/tactility.c | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/tactility/src/tactility.c b/tactility/src/tactility.c index 1c5ebb3e..d085ae71 100644 --- a/tactility/src/tactility.c +++ b/tactility/src/tactility.c @@ -7,24 +7,29 @@ #define TAG "tactility" +// region System services + extern const ServiceManifest gui_service; extern const ServiceManifest loader_service; -// System apps +static const ServiceManifest* const system_services[] = { + &gui_service, + &loader_service // depends on gui service +}; + +// endregion + +// region System apps + extern const AppManifest desktop_app; extern const AppManifest system_info_app; -// System apps static const AppManifest* const system_apps[] = { &desktop_app, &system_info_app }; -// System services - started in the order specified below -static const ServiceManifest* const system_services[] = { - &gui_service, - &loader_service // depends on gui service -}; +// endregion static void register_system_apps() { TT_LOG_I(TAG, "Registering default apps");