 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>
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <gui/view.h>
 | |
| #include "../helpers/subghz_types.h"
 | |
| #include "../helpers/subghz_custom_event.h"
 | |
| 
 | |
| #define SUBGHZ_RAW_THRESHOLD_MIN -90.0f
 | |
| 
 | |
| typedef struct SubGhzReadRAW SubGhzReadRAW;
 | |
| 
 | |
| typedef void (*SubGhzReadRAWCallback)(SubGhzCustomEvent event, void* context);
 | |
| 
 | |
| typedef enum {
 | |
|     SubGhzReadRAWStatusStart,
 | |
|     SubGhzReadRAWStatusIDLE,
 | |
|     SubGhzReadRAWStatusREC,
 | |
|     SubGhzReadRAWStatusTX,
 | |
|     SubGhzReadRAWStatusTXRepeat,
 | |
| 
 | |
|     SubGhzReadRAWStatusLoadKeyIDLE,
 | |
|     SubGhzReadRAWStatusLoadKeyTX,
 | |
|     SubGhzReadRAWStatusLoadKeyTXRepeat,
 | |
|     SubGhzReadRAWStatusSaveKey,
 | |
| } SubGhzReadRAWStatus;
 | |
| 
 | |
| void subghz_read_raw_set_callback(
 | |
|     SubGhzReadRAW* subghz_read_raw,
 | |
|     SubGhzReadRAWCallback callback,
 | |
|     void* context);
 | |
| 
 | |
| SubGhzReadRAW* subghz_read_raw_alloc();
 | |
| 
 | |
| void subghz_read_raw_free(SubGhzReadRAW* subghz_static);
 | |
| 
 | |
| void subghz_read_raw_add_data_statusbar(
 | |
|     SubGhzReadRAW* instance,
 | |
|     const char* frequency_str,
 | |
|     const char* preset_str);
 | |
| 
 | |
| void subghz_read_raw_set_radio_device_type(
 | |
|     SubGhzReadRAW* instance,
 | |
|     SubGhzRadioDeviceType device_type);
 | |
| 
 | |
| void subghz_read_raw_update_sample_write(SubGhzReadRAW* instance, size_t sample);
 | |
| 
 | |
| void subghz_read_raw_stop_send(SubGhzReadRAW* instance);
 | |
| 
 | |
| void subghz_read_raw_update_sin(SubGhzReadRAW* instance);
 | |
| 
 | |
| void subghz_read_raw_add_data_rssi(SubGhzReadRAW* instance, float rssi, bool trace);
 | |
| 
 | |
| void subghz_read_raw_set_status(
 | |
|     SubGhzReadRAW* instance,
 | |
|     SubGhzReadRAWStatus status,
 | |
|     const char* file_name,
 | |
|     float raw_threshold_rssi);
 | |
| 
 | |
| View* subghz_read_raw_get_view(SubGhzReadRAW* subghz_static);
 |