 d2ca67d261
			
		
	
	
		d2ca67d261
		
			
		
	
	
	
	
		
			
			* SubGhz: add SubGhzThresholdRssi * SubGhz: remove direct reading of subghz-txrx-txrx_state * SubGhz: remove direct reading subghz->txrx->hopper_state * SubGhz: remove direct reading subghz->lock * SubGhz: check load type file * SubGhz: remove direct reading subghz->txrx->rx_key_state * SubGhz: remove direct reading subghz->txrx->speaker_state * SubGhz: refactoring subghz_scene_set_type.c * SubGhz: moving "txrx" entity to a separate file * SubGhz: show error tx start * SubGhz: refactoring RPC * SubGhz: value get optimizations * SubGhz: fix name file * SubGhz: add function description * SubGhz: fix double back with a blocked transmission in this region and speacker, when a transmission is blocked in this region * SubGhz: correct spelling * SubGhz: better naming * SubGhz: simplify includes Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			220 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			220 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "../subghz_i.h"
 | |
| #include "../views/receiver.h"
 | |
| #include <dolphin/dolphin.h>
 | |
| #include <lib/subghz/protocols/bin_raw.h>
 | |
| 
 | |
| static const NotificationSequence subghs_sequence_rx = {
 | |
|     &message_green_255,
 | |
| 
 | |
|     &message_vibro_on,
 | |
|     &message_note_c6,
 | |
|     &message_delay_50,
 | |
|     &message_sound_off,
 | |
|     &message_vibro_off,
 | |
| 
 | |
|     &message_delay_50,
 | |
|     NULL,
 | |
| };
 | |
| 
 | |
| static const NotificationSequence subghs_sequence_rx_locked = {
 | |
|     &message_green_255,
 | |
| 
 | |
|     &message_display_backlight_on,
 | |
| 
 | |
|     &message_vibro_on,
 | |
|     &message_note_c6,
 | |
|     &message_delay_50,
 | |
|     &message_sound_off,
 | |
|     &message_vibro_off,
 | |
| 
 | |
|     &message_delay_500,
 | |
| 
 | |
|     &message_display_backlight_off,
 | |
|     NULL,
 | |
| };
 | |
| 
 | |
| static void subghz_scene_receiver_update_statusbar(void* context) {
 | |
|     SubGhz* subghz = context;
 | |
|     FuriString* history_stat_str = furi_string_alloc();
 | |
|     if(!subghz_history_get_text_space_left(subghz->history, history_stat_str)) {
 | |
|         FuriString* frequency_str = furi_string_alloc();
 | |
|         FuriString* modulation_str = furi_string_alloc();
 | |
| 
 | |
|         subghz_txrx_get_frequency_and_modulation(subghz->txrx, frequency_str, modulation_str);
 | |
| 
 | |
|         subghz_view_receiver_add_data_statusbar(
 | |
|             subghz->subghz_receiver,
 | |
|             furi_string_get_cstr(frequency_str),
 | |
|             furi_string_get_cstr(modulation_str),
 | |
|             furi_string_get_cstr(history_stat_str));
 | |
| 
 | |
|         furi_string_free(frequency_str);
 | |
|         furi_string_free(modulation_str);
 | |
|     } else {
 | |
|         subghz_view_receiver_add_data_statusbar(
 | |
|             subghz->subghz_receiver, furi_string_get_cstr(history_stat_str), "", "");
 | |
|         subghz->state_notifications = SubGhzNotificationStateIDLE;
 | |
|     }
 | |
|     furi_string_free(history_stat_str);
 | |
| }
 | |
| 
 | |
| void subghz_scene_receiver_callback(SubGhzCustomEvent event, void* context) {
 | |
|     furi_assert(context);
 | |
|     SubGhz* subghz = context;
 | |
|     view_dispatcher_send_custom_event(subghz->view_dispatcher, event);
 | |
| }
 | |
| 
 | |
| static void subghz_scene_add_to_history_callback(
 | |
|     SubGhzReceiver* receiver,
 | |
|     SubGhzProtocolDecoderBase* decoder_base,
 | |
|     void* context) {
 | |
|     furi_assert(context);
 | |
|     SubGhz* subghz = context;
 | |
|     SubGhzHistory* history = subghz->history;
 | |
|     FuriString* str_buff = furi_string_alloc();
 | |
| 
 | |
|     SubGhzRadioPreset preset = subghz_txrx_get_preset(subghz->txrx);
 | |
| 
 | |
|     if(subghz_history_add_to_history(history, decoder_base, &preset)) {
 | |
|         furi_string_reset(str_buff);
 | |
| 
 | |
|         subghz->state_notifications = SubGhzNotificationStateRxDone;
 | |
|         uint16_t item_history = subghz_history_get_item(history);
 | |
|         subghz_history_get_text_item_menu(history, str_buff, item_history - 1);
 | |
|         subghz_view_receiver_add_item_to_menu(
 | |
|             subghz->subghz_receiver,
 | |
|             furi_string_get_cstr(str_buff),
 | |
|             subghz_history_get_type_protocol(history, item_history - 1));
 | |
| 
 | |
|         subghz_scene_receiver_update_statusbar(subghz);
 | |
|     }
 | |
|     subghz_receiver_reset(receiver);
 | |
|     furi_string_free(str_buff);
 | |
|     subghz_rx_key_state_set(subghz, SubGhzRxKeyStateAddKey);
 | |
| }
 | |
| 
 | |
| void subghz_scene_receiver_on_enter(void* context) {
 | |
|     SubGhz* subghz = context;
 | |
|     SubGhzHistory* history = subghz->history;
 | |
| 
 | |
|     FuriString* str_buff;
 | |
|     str_buff = furi_string_alloc();
 | |
| 
 | |
|     if(subghz_rx_key_state_get(subghz) == SubGhzRxKeyStateIDLE) {
 | |
|         subghz_set_default_preset(subghz);
 | |
|         subghz_history_reset(history);
 | |
|         subghz_rx_key_state_set(subghz, SubGhzRxKeyStateStart);
 | |
|     }
 | |
| 
 | |
|     subghz_view_receiver_set_lock(subghz->subghz_receiver, subghz_is_locked(subghz));
 | |
| 
 | |
|     //Load history to receiver
 | |
|     subghz_view_receiver_exit(subghz->subghz_receiver);
 | |
|     for(uint8_t i = 0; i < subghz_history_get_item(history); i++) {
 | |
|         furi_string_reset(str_buff);
 | |
|         subghz_history_get_text_item_menu(history, str_buff, i);
 | |
|         subghz_view_receiver_add_item_to_menu(
 | |
|             subghz->subghz_receiver,
 | |
|             furi_string_get_cstr(str_buff),
 | |
|             subghz_history_get_type_protocol(history, i));
 | |
|         subghz_rx_key_state_set(subghz, SubGhzRxKeyStateAddKey);
 | |
|     }
 | |
|     furi_string_free(str_buff);
 | |
|     subghz_scene_receiver_update_statusbar(subghz);
 | |
|     subghz_view_receiver_set_callback(
 | |
|         subghz->subghz_receiver, subghz_scene_receiver_callback, subghz);
 | |
|     subghz_txrx_set_rx_calback(subghz->txrx, subghz_scene_add_to_history_callback, subghz);
 | |
| 
 | |
|     subghz->state_notifications = SubGhzNotificationStateRx;
 | |
|     subghz_txrx_rx_start(subghz->txrx);
 | |
|     subghz_view_receiver_set_idx_menu(subghz->subghz_receiver, subghz->idx_menu_chosen);
 | |
| 
 | |
|     //to use a universal decoder, we are looking for a link to it
 | |
|     furi_check(
 | |
|         subghz_txrx_load_decoder_by_name_protocol(subghz->txrx, SUBGHZ_PROTOCOL_BIN_RAW_NAME));
 | |
| 
 | |
|     view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewIdReceiver);
 | |
| }
 | |
| 
 | |
| bool subghz_scene_receiver_on_event(void* context, SceneManagerEvent event) {
 | |
|     SubGhz* subghz = context;
 | |
|     bool consumed = false;
 | |
|     if(event.type == SceneManagerEventTypeCustom) {
 | |
|         switch(event.event) {
 | |
|         case SubGhzCustomEventViewReceiverBack:
 | |
|             // Stop CC1101 Rx
 | |
|             subghz->state_notifications = SubGhzNotificationStateIDLE;
 | |
|             subghz_txrx_stop(subghz->txrx);
 | |
|             subghz_txrx_hopper_set_state(subghz->txrx, SubGhzHopperStateOFF);
 | |
|             subghz->idx_menu_chosen = 0;
 | |
|             subghz_txrx_set_rx_calback(subghz->txrx, NULL, subghz);
 | |
| 
 | |
|             if(subghz_rx_key_state_get(subghz) == SubGhzRxKeyStateAddKey) {
 | |
|                 subghz_rx_key_state_set(subghz, SubGhzRxKeyStateExit);
 | |
|                 scene_manager_next_scene(subghz->scene_manager, SubGhzSceneNeedSaving);
 | |
|             } else {
 | |
|                 subghz_rx_key_state_set(subghz, SubGhzRxKeyStateIDLE);
 | |
|                 subghz_set_default_preset(subghz);
 | |
|                 scene_manager_search_and_switch_to_previous_scene(
 | |
|                     subghz->scene_manager, SubGhzSceneStart);
 | |
|             }
 | |
|             consumed = true;
 | |
|             break;
 | |
|         case SubGhzCustomEventViewReceiverOK:
 | |
|             subghz->idx_menu_chosen = subghz_view_receiver_get_idx_menu(subghz->subghz_receiver);
 | |
|             scene_manager_next_scene(subghz->scene_manager, SubGhzSceneReceiverInfo);
 | |
|             DOLPHIN_DEED(DolphinDeedSubGhzReceiverInfo);
 | |
|             consumed = true;
 | |
|             break;
 | |
|         case SubGhzCustomEventViewReceiverConfig:
 | |
|             subghz->state_notifications = SubGhzNotificationStateIDLE;
 | |
|             subghz->idx_menu_chosen = subghz_view_receiver_get_idx_menu(subghz->subghz_receiver);
 | |
|             scene_manager_next_scene(subghz->scene_manager, SubGhzSceneReceiverConfig);
 | |
|             consumed = true;
 | |
|             break;
 | |
|         case SubGhzCustomEventViewReceiverOffDisplay:
 | |
|             notification_message(subghz->notifications, &sequence_display_backlight_off);
 | |
|             consumed = true;
 | |
|             break;
 | |
|         case SubGhzCustomEventViewReceiverUnlock:
 | |
|             subghz_unlock(subghz);
 | |
|             consumed = true;
 | |
|             break;
 | |
|         default:
 | |
|             break;
 | |
|         }
 | |
|     } else if(event.type == SceneManagerEventTypeTick) {
 | |
|         if(subghz_txrx_hopper_get_state(subghz->txrx) != SubGhzHopperStateOFF) {
 | |
|             subghz_txrx_hopper_update(subghz->txrx);
 | |
|             subghz_scene_receiver_update_statusbar(subghz);
 | |
|         }
 | |
| 
 | |
|         SubGhzThresholdRssiData ret_rssi = subghz_threshold_get_rssi_data(subghz->threshold_rssi);
 | |
| 
 | |
|         subghz_receiver_rssi(subghz->subghz_receiver, ret_rssi.rssi);
 | |
|         subghz_protocol_decoder_bin_raw_data_input_rssi(
 | |
|             (SubGhzProtocolDecoderBinRAW*)subghz_txrx_get_decoder(subghz->txrx), ret_rssi.rssi);
 | |
| 
 | |
|         switch(subghz->state_notifications) {
 | |
|         case SubGhzNotificationStateRx:
 | |
|             notification_message(subghz->notifications, &sequence_blink_cyan_10);
 | |
|             break;
 | |
|         case SubGhzNotificationStateRxDone:
 | |
|             if(!subghz_is_locked(subghz)) {
 | |
|                 notification_message(subghz->notifications, &subghs_sequence_rx);
 | |
|             } else {
 | |
|                 notification_message(subghz->notifications, &subghs_sequence_rx_locked);
 | |
|             }
 | |
|             subghz->state_notifications = SubGhzNotificationStateRx;
 | |
|             break;
 | |
|         default:
 | |
|             break;
 | |
|         }
 | |
|     }
 | |
|     return consumed;
 | |
| }
 | |
| 
 | |
| void subghz_scene_receiver_on_exit(void* context) {
 | |
|     UNUSED(context);
 | |
| }
 |