 a8981d317a
			
		
	
	
		a8981d317a
		
			
		
	
	
	
	
		
			
			* [FL-1811] FuriHal: move core2 startup to hal init stage, prevent working with flash controller till core2 startup finish. #704 * SubGhz: fix GO0 low on last hop transmission, decreased DutyCycle in tests * SubGhz: test_static fix max 5 sec in transmission mode, DutyCycle <23% * [FL-1815] SubGhz: prohibiting transmission if it is not within the permitted range for the given region * SubGhz: fix F7 furi-hal-subghz * SubGhz: fix logic working tests * SubGhz: fix princeton encoder for test * SubGhz: add log princeton encoder * [FL-1856] Subghz: fix output a double error if the file cannot be opened * [FL-1851] SubGhz: add deleting Stored Signals in SubGHz App * SubGhz: add rename file SubGhz app * SubGhz: update stats message in princeton * SubGhz: correct spelling * SubGhz: fix FM config, add hardware signal processing less than 16 μs, add added filter for processing short signals * SubGhz: add Scher-Khan MAGICAR Dinamic protocol * SubGhz: sync fury targets Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			134 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			134 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "subghz.h"
 | |
| #include "views/subghz_receiver.h"
 | |
| #include "views/subghz_transmitter.h"
 | |
| 
 | |
| #include "views/subghz_test_static.h"
 | |
| #include "views/subghz_test_carrier.h"
 | |
| #include "views/subghz_test_packet.h"
 | |
| 
 | |
| #include <furi.h>
 | |
| #include <furi-hal.h>
 | |
| #include <gui/gui.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 <lib/subghz/subghz_worker.h>
 | |
| 
 | |
| #include <lib/subghz/subghz_parser.h>
 | |
| #include <lib/subghz/protocols/subghz_protocol_common.h>
 | |
| #include "subghz_history.h"
 | |
| 
 | |
| #include <gui/modules/variable-item-list.h>
 | |
| 
 | |
| #define SUBGHZ_TEXT_STORE_SIZE 40
 | |
| 
 | |
| #define NOTIFICATION_STARTING_STATE 0u
 | |
| #define NOTIFICATION_IDLE_STATE 1u
 | |
| #define NOTIFICATION_TX_STATE 2u
 | |
| #define NOTIFICATION_RX_STATE 3u
 | |
| 
 | |
| extern const char* const subghz_frequencies_text[];
 | |
| extern const uint32_t subghz_frequencies[];
 | |
| extern const uint32_t subghz_hopper_frequencies[];
 | |
| extern const uint32_t subghz_frequencies_count;
 | |
| extern const uint32_t subghz_hopper_frequencies_count;
 | |
| extern const uint32_t subghz_frequencies_433_92;
 | |
| 
 | |
| /** SubGhzTxRx state */
 | |
| typedef enum {
 | |
|     SubGhzTxRxStateIdle,
 | |
|     SubGhzTxRxStateRx,
 | |
|     SubGhzTxRxStateTx,
 | |
|     SubGhzTxRxStateSleep,
 | |
| } SubGhzTxRxState;
 | |
| 
 | |
| /** SubGhzHopperState state */
 | |
| typedef enum {
 | |
|     SubGhzHopperStateOFF,
 | |
|     SubGhzHopperStateRunnig,
 | |
|     SubGhzHopperStatePause,
 | |
|     SubGhzHopperStateRSSITimeOut,
 | |
| } SubGhzHopperState;
 | |
| 
 | |
| struct SubGhzTxRx {
 | |
|     SubGhzWorker* worker;
 | |
|     SubGhzParser* parser;
 | |
|     SubGhzProtocolCommon* protocol_result;
 | |
|     SubGhzProtocolCommonEncoder* encoder;
 | |
|     uint32_t frequency;
 | |
|     FuriHalSubGhzPreset preset;
 | |
|     SubGhzHistory* history;
 | |
|     uint16_t idx_menu_chosen;
 | |
|     SubGhzTxRxState txrx_state;
 | |
|     //bool hopper_runing;
 | |
|     SubGhzHopperState hopper_state;
 | |
|     uint8_t hopper_timeout;
 | |
|     uint8_t hopper_idx_frequency;
 | |
| };
 | |
| 
 | |
| typedef struct SubGhzTxRx SubGhzTxRx;
 | |
| 
 | |
| struct SubGhz {
 | |
|     Gui* gui;
 | |
|     NotificationApp* notifications;
 | |
| 
 | |
|     SubGhzTxRx* txrx;
 | |
| 
 | |
|     SceneManager* scene_manager;
 | |
|     ViewDispatcher* view_dispatcher;
 | |
| 
 | |
|     Submenu* submenu;
 | |
|     Popup* popup;
 | |
|     TextInput* text_input;
 | |
|     Widget* widget;
 | |
|     char file_name[SUBGHZ_TEXT_STORE_SIZE + 1];
 | |
|     char file_name_tmp[SUBGHZ_TEXT_STORE_SIZE + 1];
 | |
|     uint8_t state_notifications;
 | |
| 
 | |
|     SubghzReceiver* subghz_receiver;
 | |
|     SubghzTransmitter* subghz_transmitter;
 | |
|     VariableItemList* variable_item_list;
 | |
| 
 | |
|     SubghzTestStatic* subghz_test_static;
 | |
|     SubghzTestCarrier* subghz_test_carrier;
 | |
|     SubghzTestPacket* subghz_test_packet;
 | |
|     string_t error_str;
 | |
| };
 | |
| 
 | |
| typedef enum {
 | |
|     SubGhzViewMenu,
 | |
| 
 | |
|     SubGhzViewReceiver,
 | |
|     SubGhzViewPopup,
 | |
|     SubGhzViewTextInput,
 | |
|     SubGhzViewWidget,
 | |
|     SubGhzViewTransmitter,
 | |
|     SubGhzViewVariableItemList,
 | |
|     SubGhzViewStatic,
 | |
|     SubGhzViewTestCarrier,
 | |
|     SubGhzViewTestPacket,
 | |
| } SubGhzView;
 | |
| 
 | |
| void subghz_begin(SubGhz* subghz, FuriHalSubGhzPreset preset);
 | |
| uint32_t subghz_rx(SubGhz* subghz, uint32_t frequency);
 | |
| void subghz_rx_end(SubGhz* subghz);
 | |
| void subghz_sleep(SubGhz* subghz);
 | |
| bool subghz_tx_start(SubGhz* subghz);
 | |
| void subghz_tx_stop(SubGhz* subghz);
 | |
| bool subghz_key_load(SubGhz* subghz, const char* file_path);
 | |
| bool subghz_save_protocol_to_file(SubGhz* subghz, const char* dev_name);
 | |
| bool subghz_load_protocol_from_file(SubGhz* subghz);
 | |
| bool subghz_delete_file(SubGhz* subghz);
 | |
| void subghz_file_name_clear(SubGhz* subghz);
 | |
| uint32_t subghz_random_serial(void);
 | |
| void subghz_hopper_update(SubGhz* subghz);
 |