Skip to content

Commit

Permalink
CFW Settings Loader In Settings Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueMaster committed May 17, 2023
1 parent dcd0225 commit bde45ed
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions applications/settings/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ App(
provides=[
# "dolphin_passport",
# "passport_settings",
"cfw_app_loader",
"desktop_settings_loader",
"passport_settings_loader",
"system_settings",
Expand Down
10 changes: 10 additions & 0 deletions applications/settings/cfw_app_loader/application.fam
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
App(
appid="cfw_app_loader",
name="CFW",
apptype=FlipperAppType.SETTINGS,
entry_point="cfw_app_loader_app",
requires=["gui"],
stack_size=int(1.5 * 1024),
order=10,
link="/ext/apps/Settings/CFW.fap",
)
9 changes: 9 additions & 0 deletions applications/settings/cfw_app_loader/cfw_app_loader_app.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <applications/services/loader/loader_i.h>

#define TAG "cfw_app_loader_app"

int32_t cfw_app_loader_app(void* p) {
UNUSED(p);

return 0;
}

0 comments on commit bde45ed

Please sign in to comment.