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>2021-08-29 16:05:15 +0300
committerGitHub <noreply@github.com>2021-08-29 16:05:15 +0300
commit663dbbfe9f8e7c868310e3500be136e4f51d3979 (patch)
tree2afc2aecb9d61168fa429bc5d3c3d137a226d8f1 /applications/subghz/subghz_i.h
parent0a8a944e100c79432773ef3b6e749ab065e46cd1 (diff)
SubGhz: frequency hopping mode (#671)
* SubGhz: fix assert on worker double stop. * SubGhz: add hopping mode (315.00, 433.92, 868.00) * SubGhz: add support for new alarms on the keelog protocol * SubGhz: update te in princeton protocol * SubGhz: move static to tests, rename sniffer to hopper/auto, remove delay from timer thread, optimize locking strategy. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Diffstat (limited to 'applications/subghz/subghz_i.h')
-rw-r--r--applications/subghz/subghz_i.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/subghz/subghz_i.h b/applications/subghz/subghz_i.h
index 8b084209..f816503e 100644
--- a/applications/subghz/subghz_i.h
+++ b/applications/subghz/subghz_i.h
@@ -4,8 +4,8 @@
#include "views/subghz_analyze.h"
#include "views/subghz_receiver.h"
#include "views/subghz_transmitter.h"
-#include "views/subghz_static.h"
+#include "views/subghz_test_static.h"
#include "views/subghz_test_carrier.h"
#include "views/subghz_test_packet.h"
@@ -62,8 +62,8 @@ struct SubGhz {
SubghzAnalyze* subghz_analyze;
SubghzReceiver* subghz_receiver;
SubghzTransmitter* subghz_transmitter;
- SubghzStatic* subghz_static;
+ SubghzTestStatic* subghz_test_static;
SubghzTestCarrier* subghz_test_carrier;
SubghzTestPacket* subghz_test_packet;
};