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:
authorあく <alleteam@gmail.com>2021-06-30 00:19:20 +0300
committerGitHub <noreply@github.com>2021-06-30 00:19:20 +0300
commite8211226f3a4f7609143ef02d6ef684b9fb41f00 (patch)
tree039c38f63468a9db444598304604bea1f4263279 /applications/applications.c
parentdce3665f63be6ce77691c00fe8e7ca59d3ecddf9 (diff)
[FL-1496] SubGhz: Library, Cli, Application (#543)
* ApiHal: set frequency and path in one go. Drivers: proper frequency registers calculation for CC1101. Update subghz cli to match new api. * SubGhz: preparation for parsers porting, tim2 sharing * ApiHal: add interrupts API, move all TIM2 related things there. * SubGhz: refactor protocol lib and add keeloq. * SubGhz: proper init_set for keeloq manafacture key * SubGhz: port more protocols to lib * SubGhz: load keeloq manufacture keys from sd card (if any). * SubGhz: format output from protocols. * SubGhz: use default frequency in subghz_rx cli command. * SubGhz: keeloq key types * Fix compillation error when internal storage disabled * SubGhz: minor cleanup * SubGhz: properly handle timeout and reset signal in subghz_rx * SubGhz: Worker, Capture View. Furi: emulate thread join. * SubGhz: free strings on keeloq key load end * SubGhz: update protocols reporting API, app refactoring and capture view, update API HAL usage. * SubGhz: update dump formatting * ApiHal: backport subghz preset to F5 * ApiHal: backport subghz frequency range to F5
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/applications.c b/applications/applications.c
index 694e136e..977c4805 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -184,7 +184,8 @@ const FlipperApplication FLIPPER_APPS[] = {
#endif
#ifdef APP_SUBGHZ
- {.app = subghz_app, .name = "Sub-1 GHz", .stack_size = 1024, .icon = A_Sub1ghz_14},
+ // TODO: decrease stack after SD API refactoring
+ {.app = subghz_app, .name = "Sub-1 GHz", .stack_size = 4096, .icon = A_Sub1ghz_14},
#endif
#ifdef APP_LF_RFID