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:
authorSkorpionm <85568270+Skorpionm@users.noreply.github.com>2022-04-09 21:47:14 +0300
committerGitHub <noreply@github.com>2022-04-09 21:47:14 +0300
commit7d022c6fda24ef10a5606c00c73b82297b2af8b5 (patch)
treec3e5b1263a2447ad97ad25562d53c7f1c7af796b /applications/subghz/subghz_i.h
parent435205de331d7d589e3549b021ee02640df83e83 (diff)
[FL-2439] SubGhz: fix magic numbers and description in crash (#1103)
* [FL-2439] SubGhz: fix magic numbers and description on crash
Diffstat (limited to 'applications/subghz/subghz_i.h')
-rw-r--r--applications/subghz/subghz_i.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/applications/subghz/subghz_i.h b/applications/subghz/subghz_i.h
index bfa80df3..b2d7df71 100644
--- a/applications/subghz/subghz_i.h
+++ b/applications/subghz/subghz_i.h
@@ -79,6 +79,14 @@ typedef enum {
SubGhzRxKeyStateRAWSave,
} SubGhzRxKeyState;
+/** SubGhzLoadKeyState state */
+typedef enum {
+ SubGhzLoadKeyStateUnknown,
+ SubGhzLoadKeyStateOK,
+ SubGhzLoadKeyStateParseErr,
+ SubGhzLoadKeyStateOnlyRx,
+} SubGhzLoadKeyState;
+
struct SubGhzTxRx {
SubGhzWorker* worker;