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:
authorAnna Prosvetova <anna@prosvetova.me>2021-10-01 14:57:32 +0300
committerGitHub <noreply@github.com>2021-10-01 14:57:32 +0300
commit32467cedd73a73b5722e80c0e73f63a251f32624 (patch)
treeb22b381afe271f6219c154c28963ebf9504443ef /applications/applications.c
parent638f2763088cefd40a3e279d4db36bd64f418b1d (diff)
Menu: reorder applications (#734)
Diffstat (limited to 'applications/applications.c')
-rwxr-xr-xapplications/applications.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/applications/applications.c b/applications/applications.c
index f16d1fde..1050ff7e 100755
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -116,26 +116,26 @@ const FlipperApplication FLIPPER_APPS[] = {
{.app = subghz_app, .name = "Sub-GHz", .stack_size = 2048, .icon = &A_Sub1ghz_14},
#endif
-#ifdef APP_NFC
- {.app = nfc_app, .name = "NFC", .stack_size = 4096, .icon = &A_NFC_14},
-#endif
-
#ifdef APP_LF_RFID
{.app = lfrfid_app, .name = "125 kHz RFID", .stack_size = 2048, .icon = &A_125khz_14},
#endif
-#ifdef APP_IRDA
- {.app = irda_app, .name = "Infrared", .stack_size = 1024 * 3, .icon = &A_Infrared_14},
+#ifdef APP_NFC
+ {.app = nfc_app, .name = "NFC", .stack_size = 4096, .icon = &A_NFC_14},
#endif
-#ifdef APP_IBUTTON
- {.app = ibutton_app, .name = "iButton", .stack_size = 2048, .icon = &A_iButton_14},
+#ifdef APP_IRDA
+ {.app = irda_app, .name = "Infrared", .stack_size = 1024 * 3, .icon = &A_Infrared_14},
#endif
#ifdef APP_GPIO
{.app = gpio_app, .name = "GPIO", .stack_size = 1024, .icon = &A_GPIO_14},
#endif
+#ifdef APP_IBUTTON
+ {.app = ibutton_app, .name = "iButton", .stack_size = 2048, .icon = &A_iButton_14},
+#endif
+
};
const size_t FLIPPER_APPS_COUNT = sizeof(FLIPPER_APPS) / sizeof(FlipperApplication);