Skip to content

Commit

Permalink
updated comments/order
Browse files Browse the repository at this point in the history
  • Loading branch information
KenVanHoeylandt committed Jan 27, 2024
1 parent 69ff19c commit 66d825a
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions tactility/src/tactility.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 66d825a

Please sign in to comment.