* SubGhz: add protocol DataRAW (binarization of data quantized by the minimum correlated duration) * SubGhz: fix name history * SubGhz: add encoder Data_RAW protocol * SubGhz: decreasing the size of the LevelDuration structure * SubGhz: history, added check that there is free RAM * SubGhz: checking for free memory, support to pass without gap * SubGhz: add running average to average the result, auto cut noise at the end of a burst * SubGhz: support for repeating sequences * SubGhz: fix secplus_v2 decoder * SubGhz: bin_RAW fix add history * SubGhz: add debug * SubGhz: debug refactoring * FURI_LOG: add FURI_LOG_RAW_x formatted string output like printf * SubGhz: fix new FURI_LOG metod * FURI_LOG: fix unit test * SubGhz: add enable/disable BinRAW protocol decoding * SubGhz: fix PVS * SubGhz: forcibly turn off the speaker when exiting SubGhz * SubGhz: adaptive adjustment to the noise level Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <stdbool.h>
 | 
						|
#include <stdint.h>
 | 
						|
#include <stddef.h>
 | 
						|
 | 
						|
#include <lib/flipper_format/flipper_format.h>
 | 
						|
#include <furi.h>
 | 
						|
#include <furi_hal.h>
 | 
						|
#include "../types.h"
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
typedef struct SubGhzBlockGeneric SubGhzBlockGeneric;
 | 
						|
 | 
						|
struct SubGhzBlockGeneric {
 | 
						|
    const char* protocol_name;
 | 
						|
    uint64_t data;
 | 
						|
    uint32_t serial;
 | 
						|
    uint16_t data_count_bit;
 | 
						|
    uint8_t btn;
 | 
						|
    uint32_t cnt;
 | 
						|
};
 | 
						|
 | 
						|
/**
 | 
						|
 * Get name preset.
 | 
						|
 * @param preset_name name preset
 | 
						|
 * @param preset_str Output name preset
 | 
						|
 */
 | 
						|
void subghz_block_generic_get_preset_name(const char* preset_name, FuriString* preset_str);
 | 
						|
 | 
						|
/**
 | 
						|
 * Serialize data SubGhzBlockGeneric.
 | 
						|
 * @param instance Pointer to a SubGhzBlockGeneric instance
 | 
						|
 * @param flipper_format Pointer to a FlipperFormat instance
 | 
						|
 * @param preset The modulation on which the signal was received, SubGhzRadioPreset
 | 
						|
 * @return true On success
 | 
						|
 */
 | 
						|
bool subghz_block_generic_serialize(
 | 
						|
    SubGhzBlockGeneric* instance,
 | 
						|
    FlipperFormat* flipper_format,
 | 
						|
    SubGhzRadioPreset* preset);
 | 
						|
 | 
						|
/**
 | 
						|
 * Deserialize data SubGhzBlockGeneric.
 | 
						|
 * @param instance Pointer to a SubGhzBlockGeneric instance
 | 
						|
 * @param flipper_format Pointer to a FlipperFormat instance
 | 
						|
 * @return true On success
 | 
						|
 */
 | 
						|
bool subghz_block_generic_deserialize(SubGhzBlockGeneric* instance, FlipperFormat* flipper_format);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif |