mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-01-25 11:05:02 +00:00
16 lines
426 B
C
16 lines
426 B
C
|
#include "../subghz_i.h"
|
||
|
|
||
|
const void subghz_scene_analyze_on_enter(void* context) {
|
||
|
SubGhz* subghz = context;
|
||
|
view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewAnalyze);
|
||
|
}
|
||
|
|
||
|
const bool subghz_scene_analyze_on_event(void* context, SceneManagerEvent event) {
|
||
|
// SubGhz* subghz = context;
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
const void subghz_scene_analyze_on_exit(void* context) {
|
||
|
// SubGhz* subghz = context;
|
||
|
}
|