mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-14 18:58:36 -07:00
fix file browser test
This commit is contained in:
@@ -45,6 +45,7 @@ extern int32_t vibro_test_app(void* p);
|
|||||||
extern int32_t bt_hid_app(void* p);
|
extern int32_t bt_hid_app(void* p);
|
||||||
extern int32_t battery_test_app(void* p);
|
extern int32_t battery_test_app(void* p);
|
||||||
extern int32_t text_box_test_app(void* p);
|
extern int32_t text_box_test_app(void* p);
|
||||||
|
extern int32_t file_browser_app(void* p);
|
||||||
|
|
||||||
// Plugins
|
// Plugins
|
||||||
extern int32_t music_player_app(void* p);
|
extern int32_t music_player_app(void* p);
|
||||||
@@ -479,6 +480,14 @@ const FlipperApplication FLIPPER_DEBUG_APPS[] = {
|
|||||||
.flags = FlipperApplicationFlagDefault},
|
.flags = FlipperApplicationFlagDefault},
|
||||||
#endif
|
#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
|
#ifdef APP_BATTERY_TEST
|
||||||
{.app = battery_test_app,
|
{.app = battery_test_app,
|
||||||
.name = "Battery Test",
|
.name = "Battery Test",
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ APP_USB_MOUSE = 1
|
|||||||
APP_BAD_USB = 1
|
APP_BAD_USB = 1
|
||||||
APP_U2F = 1
|
APP_U2F = 1
|
||||||
APP_UART_ECHO = 1
|
APP_UART_ECHO = 1
|
||||||
|
APP_FILE_BROWSER_TEST = 1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
@@ -209,6 +210,11 @@ CFLAGS += -DAPP_KEYPAD_TEST
|
|||||||
SRV_GUI = 1
|
SRV_GUI = 1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
APP_FILE_BROWSER_TEST ?= 0
|
||||||
|
ifeq ($(APP_FILE_BROWSER_TEST), 1)
|
||||||
|
CFLAGS += -DAPP_FILE_BROWSER_TEST
|
||||||
|
SRV_GUI = 1
|
||||||
|
endif
|
||||||
|
|
||||||
APP_ACCESSOR ?= 0
|
APP_ACCESSOR ?= 0
|
||||||
ifeq ($(APP_ACCESSOR), 1)
|
ifeq ($(APP_ACCESSOR), 1)
|
||||||
|
|||||||
BIN
assets/icons/Archive/back_10px.png
Normal file
BIN
assets/icons/Archive/back_10px.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 154 B |
BIN
assets/icons/Archive/loading_10px.png
Normal file
BIN
assets/icons/Archive/loading_10px.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 173 B |
Reference in New Issue
Block a user