Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolay Minaylov <nm29719@gmail.com>2022-05-27 14:19:21 +0300
committerGitHub <noreply@github.com>2022-05-27 14:19:21 +0300
commit79920a3522092f0a7ad0bb043ba096119ef8057d (patch)
tree53c81212ed9fee926fc8c7a8f95bf1d762797eee /applications/applications.c
parent533f12af15ba6f04fa246d3408d5f55f69179c27 (diff)
[FL-2491] File browser GUI module (#1237)
* File browser module and test app * nfc: Add support for saved files in subdirectories * nfc: Use helper function to get shadow path when loading data * File browser dialog integration pt.1 * File browser dialog integration pt.2 * Gui,Dialogs: drop file select * Correct use of dynamic string_t(string_ptr) Co-authored-by: Yukai Li <yukaili.geek@gmail.com> Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/applications/applications.c b/applications/applications.c
index 4deae885..2ed1b961 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -44,6 +44,7 @@ extern int32_t vibro_test_app(void* p);
extern int32_t bt_hid_app(void* p);
extern int32_t battery_test_app(void* p);
extern int32_t text_box_test_app(void* p);
+extern int32_t file_browser_app(void* p);
// Plugins
extern int32_t music_player_app(void* p);
@@ -459,6 +460,14 @@ const FlipperApplication FLIPPER_DEBUG_APPS[] = {
.flags = FlipperApplicationFlagDefault},
#endif
+#ifdef APP_FILE_BROWSER_TEST
+ {.app = file_browser_app,
+ .name = "File Browser test",
+ .stack_size = 2048,
+ .icon = &A_BadUsb_14,
+ .flags = FlipperApplicationFlagDefault},
+#endif
+
#ifdef APP_BATTERY_TEST
{.app = battery_test_app,
.name = "Battery Test",