663dbbfe9f
* 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>
16 lines
437 B
C
16 lines
437 B
C
#include "../subghz_i.h"
|
|
|
|
const void subghz_scene_test_static_on_enter(void* context) {
|
|
SubGhz* subghz = context;
|
|
view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewStatic);
|
|
}
|
|
|
|
const bool subghz_scene_test_static_on_event(void* context, SceneManagerEvent event) {
|
|
// SubGhz* subghz = context;
|
|
return false;
|
|
}
|
|
|
|
const void subghz_scene_test_static_on_exit(void* context) {
|
|
// SubGhz* subghz = context;
|
|
}
|