mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-11-24 11:14:26 +03:00
fix file browser test
This commit is contained in:
parent
feb31c6607
commit
697b016805
@ -45,6 +45,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);
|
||||
@ -479,6 +480,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",
|
||||
|
@ -64,6 +64,7 @@ APP_USB_MOUSE = 1
|
||||
APP_BAD_USB = 1
|
||||
APP_U2F = 1
|
||||
APP_UART_ECHO = 1
|
||||
APP_FILE_BROWSER_TEST = 1
|
||||
endif
|
||||
|
||||
|
||||
@ -209,6 +210,11 @@ CFLAGS += -DAPP_KEYPAD_TEST
|
||||
SRV_GUI = 1
|
||||
endif
|
||||
|
||||
APP_FILE_BROWSER_TEST ?= 0
|
||||
ifeq ($(APP_FILE_BROWSER_TEST), 1)
|
||||
CFLAGS += -DAPP_FILE_BROWSER_TEST
|
||||
SRV_GUI = 1
|
||||
endif
|
||||
|
||||
APP_ACCESSOR ?= 0
|
||||
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 |
Loading…
Reference in New Issue
Block a user