* 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>
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| #include "../subghz_i.h"
 | |
| #include <lib/subghz/devices/devices.h>
 | |
| #include <cli/cli.h>
 | |
| 
 | |
| typedef struct SubGhzChatWorker SubGhzChatWorker;
 | |
| 
 | |
| typedef enum {
 | |
|     SubGhzChatEventNoEvent,
 | |
|     SubGhzChatEventUserEntrance,
 | |
|     SubGhzChatEventUserExit,
 | |
|     SubGhzChatEventInputData,
 | |
|     SubGhzChatEventRXData,
 | |
|     SubGhzChatEventNewMessage,
 | |
| } SubGhzChatEventType;
 | |
| 
 | |
| typedef struct {
 | |
|     SubGhzChatEventType event;
 | |
|     char c;
 | |
| } SubGhzChatEvent;
 | |
| 
 | |
| SubGhzChatWorker* subghz_chat_worker_alloc(Cli* cli);
 | |
| void subghz_chat_worker_free(SubGhzChatWorker* instance);
 | |
| bool subghz_chat_worker_start(
 | |
|     SubGhzChatWorker* instance,
 | |
|     const SubGhzDevice* device,
 | |
|     uint32_t frequency);
 | |
| void subghz_chat_worker_stop(SubGhzChatWorker* instance);
 | |
| bool subghz_chat_worker_is_running(SubGhzChatWorker* instance);
 | |
| SubGhzChatEvent subghz_chat_worker_get_event_chat(SubGhzChatWorker* instance);
 | |
| void subghz_chat_worker_put_event_chat(SubGhzChatWorker* instance, SubGhzChatEvent* event);
 | |
| size_t subghz_chat_worker_available(SubGhzChatWorker* instance);
 | |
| size_t subghz_chat_worker_read(SubGhzChatWorker* instance, uint8_t* data, size_t size);
 | |
| bool subghz_chat_worker_write(SubGhzChatWorker* instance, uint8_t* data, size_t size);
 |