96 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
#include "subghz_types.h"
 | 
						|
#include "subghz_txrx.h"
 | 
						|
 | 
						|
/**
 | 
						|
 * Generate data for protocol
 | 
						|
 * 
 | 
						|
 * @param instance Pointer to a SubGhzTxRx
 | 
						|
 * @param preset_name Name of preset
 | 
						|
 * @param frequency Frequency in Hz
 | 
						|
 * @param protocol_name Name of protocol
 | 
						|
 * @param key Key
 | 
						|
 * @param bit Bit
 | 
						|
 * @return bool True if success
 | 
						|
 */
 | 
						|
bool subghz_txrx_gen_data_protocol(
 | 
						|
    void* context,
 | 
						|
    const char* preset_name,
 | 
						|
    uint32_t frequency,
 | 
						|
    const char* protocol_name,
 | 
						|
    uint64_t key,
 | 
						|
    uint32_t bit);
 | 
						|
 | 
						|
/**
 | 
						|
 * Generate data for protocol and te
 | 
						|
 * 
 | 
						|
 * @param instance Pointer to a SubGhzTxRx
 | 
						|
 * @param preset_name Name of preset
 | 
						|
 * @param frequency Frequency in Hz
 | 
						|
 * @param protocol_name Name of protocol
 | 
						|
 * @param key Key
 | 
						|
 * @param bit Bit
 | 
						|
 * @param te Te
 | 
						|
 * @return bool True if success
 | 
						|
 */
 | 
						|
bool subghz_txrx_gen_data_protocol_and_te(
 | 
						|
    SubGhzTxRx* instance,
 | 
						|
    const char* preset_name,
 | 
						|
    uint32_t frequency,
 | 
						|
    const char* protocol_name,
 | 
						|
    uint64_t key,
 | 
						|
    uint32_t bit,
 | 
						|
    uint32_t te);
 | 
						|
 | 
						|
/**
 | 
						|
 * Generate data Keeloq protocol
 | 
						|
 * 
 | 
						|
 * @param instance Pointer to a SubGhzTxRx
 | 
						|
 * @param name_preset Name of preset
 | 
						|
 * @param frequency Frequency in Hz
 | 
						|
 * @param name_sysmem Name of Keeloq sysmem
 | 
						|
 * @param serial Serial number
 | 
						|
 * @param btn Button
 | 
						|
 * @param cnt Counter
 | 
						|
 * @return bool True if success
 | 
						|
 */
 | 
						|
bool subghz_txrx_gen_keeloq_protocol(
 | 
						|
    SubGhzTxRx* instance,
 | 
						|
    const char* name_preset,
 | 
						|
    uint32_t frequency,
 | 
						|
    const char* name_sysmem,
 | 
						|
    uint32_t serial,
 | 
						|
    uint8_t btn,
 | 
						|
    uint16_t cnt);
 | 
						|
 | 
						|
/**
 | 
						|
 * Generate data SecPlus v2 protocol
 | 
						|
 * 
 | 
						|
 * @param instance Pointer to a SubGhzTxRx
 | 
						|
 * @param name_preset Name of preset
 | 
						|
 * @param frequency Frequency in Hz
 | 
						|
 * @param serial Serial number
 | 
						|
 * @param btn Button
 | 
						|
 * @param cnt Counter
 | 
						|
 * @return bool True if success
 | 
						|
 */
 | 
						|
bool subghz_txrx_gen_secplus_v2_protocol(
 | 
						|
    SubGhzTxRx* instance,
 | 
						|
    const char* name_preset,
 | 
						|
    uint32_t frequency,
 | 
						|
    uint32_t serial,
 | 
						|
    uint8_t btn,
 | 
						|
    uint32_t cnt);
 | 
						|
 | 
						|
/**
 | 
						|
 * Generate data SecPlus v1 protocol
 | 
						|
 * 
 | 
						|
 * @param instance Pointer to a SubGhzTxRx
 | 
						|
 * @param name_preset Name of preset
 | 
						|
 * @param frequency Frequency in Hz
 | 
						|
 * @return bool True if success
 | 
						|
 */
 | 
						|
bool subghz_txrx_gen_secplus_v1_protocol(
 | 
						|
    SubGhzTxRx* instance,
 | 
						|
    const char* name_preset,
 | 
						|
    uint32_t frequency); |