 8c93695d01
			
		
	
	
		8c93695d01
		
			
		
	
	
	
	
		
			
			* SubGhz: add CC1101 Ext driver * SubGhz: move TIM2 -> TIM17 use cc1101_ext * FuriHal: SPI move channel DMA 3,4 -> 6.7 * Documentation: fix font * SubGhz: add work with SubGhz devices by link to device * SubGhz: add support switching external/internal cc1101 "subghz chat" * SubGhz: add support switching external/internal cc1101 "subghz tx" and "subghz rx" * SubGhz: add "Radio Settings" scene * SubGhz: add icon * SubGhz: add supported CC1101 external module in SubGhz app * SubGhz: fix check frequency supported radio device * SubGhz: fix clang-formatted * Sughz: move dirver CC1101_Ext to lib , compile cmd ./fbt launch_app APPSRC=radio_device_cc1101_ext * SubGhz: fix CLI * SubGhz: fix PVS * SubGhz: delete comments * SubGhz: fix unit_test * Format sources * Update api symbols and drivers targets * Drivers: find proper place for target option * SubGhz: external device connected method naming * Format sources * SubGhz: fix module selection menu, when external is not connected * SubGhz: fix furi_assert(device); * SubGhz: fix split h and c * SubGhz: furi_hal_subghz remove preset load function by name * SubGhz: deleted comments * Format Sources * SubGhz: add some consts and fix unit tests * Sync API Symbols Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			224 lines
		
	
	
		
			8.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			224 lines
		
	
	
		
			8.3 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);
 | |
| 
 | |
|     subghz_view_receiver_set_radio_device_type(
 | |
|         subghz->subghz_receiver, subghz_txrx_radio_device_get(subghz->txrx));
 | |
| }
 | |
| 
 | |
| 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_txrx_radio_device_get_rssi(subghz->txrx));
 | |
| 
 | |
|         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);
 | |
| }
 |