forked from flipperdevices/flipperzero-firmware
-
-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CFW Settings Loader In Settings Menu
- Loading branch information
1 parent
dcd0225
commit bde45ed
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |