 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>
		
			
				
	
	
		
			110 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "helpers/subghz_types.h"
 | |
| #include "helpers/subghz_error_type.h"
 | |
| #include <lib/subghz/types.h>
 | |
| #include "subghz.h"
 | |
| #include "views/receiver.h"
 | |
| #include "views/transmitter.h"
 | |
| #include "views/subghz_frequency_analyzer.h"
 | |
| #include "views/subghz_read_raw.h"
 | |
| 
 | |
| #include "views/subghz_test_static.h"
 | |
| #include "views/subghz_test_carrier.h"
 | |
| #include "views/subghz_test_packet.h"
 | |
| 
 | |
| #include <gui/gui.h>
 | |
| #include <assets_icons.h>
 | |
| #include <dialogs/dialogs.h>
 | |
| #include <gui/scene_manager.h>
 | |
| #include <notification/notification_messages.h>
 | |
| #include <gui/view_dispatcher.h>
 | |
| #include <gui/modules/submenu.h>
 | |
| #include <gui/modules/popup.h>
 | |
| #include <gui/modules/text_input.h>
 | |
| #include <gui/modules/widget.h>
 | |
| 
 | |
| #include <subghz/scenes/subghz_scene.h>
 | |
| 
 | |
| #include "subghz_history.h"
 | |
| 
 | |
| #include <gui/modules/variable_item_list.h>
 | |
| #include <lib/toolbox/path.h>
 | |
| 
 | |
| #include "rpc/rpc_app.h"
 | |
| 
 | |
| #include "helpers/subghz_threshold_rssi.h"
 | |
| 
 | |
| #include "helpers/subghz_txrx.h"
 | |
| 
 | |
| #define SUBGHZ_MAX_LEN_NAME 64
 | |
| 
 | |
| struct SubGhz {
 | |
|     Gui* gui;
 | |
|     NotificationApp* notifications;
 | |
| 
 | |
|     SubGhzTxRx* txrx;
 | |
| 
 | |
|     SceneManager* scene_manager;
 | |
|     ViewDispatcher* view_dispatcher;
 | |
| 
 | |
|     Submenu* submenu;
 | |
|     Popup* popup;
 | |
|     TextInput* text_input;
 | |
|     Widget* widget;
 | |
|     DialogsApp* dialogs;
 | |
|     FuriString* file_path;
 | |
|     FuriString* file_path_tmp;
 | |
|     char file_name_tmp[SUBGHZ_MAX_LEN_NAME];
 | |
|     SubGhzNotificationState state_notifications;
 | |
| 
 | |
|     SubGhzViewReceiver* subghz_receiver;
 | |
|     SubGhzViewTransmitter* subghz_transmitter;
 | |
|     VariableItemList* variable_item_list;
 | |
| 
 | |
|     SubGhzFrequencyAnalyzer* subghz_frequency_analyzer;
 | |
|     SubGhzReadRAW* subghz_read_raw;
 | |
|     SubGhzTestStatic* subghz_test_static;
 | |
|     SubGhzTestCarrier* subghz_test_carrier;
 | |
|     SubGhzTestPacket* subghz_test_packet;
 | |
| 
 | |
|     SubGhzProtocolFlag filter;
 | |
|     FuriString* error_str;
 | |
|     SubGhzLock lock;
 | |
|     SubGhzThresholdRssi* threshold_rssi;
 | |
|     SubGhzRxKeyState rx_key_state;
 | |
|     SubGhzHistory* history;
 | |
|     uint16_t idx_menu_chosen;
 | |
|     SubGhzLoadTypeFile load_type_file;
 | |
|     void* rpc_ctx;
 | |
| };
 | |
| 
 | |
| void subghz_set_default_preset(SubGhz* subghz);
 | |
| void subghz_blink_start(SubGhz* subghz);
 | |
| void subghz_blink_stop(SubGhz* subghz);
 | |
| 
 | |
| bool subghz_tx_start(SubGhz* subghz, FlipperFormat* flipper_format);
 | |
| void subghz_dialog_message_show_only_rx(SubGhz* subghz);
 | |
| 
 | |
| bool subghz_key_load(SubGhz* subghz, const char* file_path, bool show_dialog);
 | |
| bool subghz_get_next_name_file(SubGhz* subghz, uint8_t max_len);
 | |
| bool subghz_save_protocol_to_file(
 | |
|     SubGhz* subghz,
 | |
|     FlipperFormat* flipper_format,
 | |
|     const char* dev_file_name);
 | |
| void subghz_save_to_file(void* context);
 | |
| bool subghz_load_protocol_from_file(SubGhz* subghz);
 | |
| bool subghz_rename_file(SubGhz* subghz);
 | |
| bool subghz_file_available(SubGhz* subghz);
 | |
| bool subghz_delete_file(SubGhz* subghz);
 | |
| void subghz_file_name_clear(SubGhz* subghz);
 | |
| bool subghz_path_is_file(FuriString* path);
 | |
| SubGhzLoadTypeFile subghz_get_load_type_file(SubGhz* subghz);
 | |
| 
 | |
| void subghz_lock(SubGhz* subghz);
 | |
| void subghz_unlock(SubGhz* subghz);
 | |
| bool subghz_is_locked(SubGhz* subghz);
 | |
| 
 | |
| void subghz_rx_key_state_set(SubGhz* subghz, SubGhzRxKeyState state);
 | |
| SubGhzRxKeyState subghz_rx_key_state_get(SubGhz* subghz);
 |