mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-01 00:39:12 +00:00
4ce41a3e6f
* SubGhz: changing the operation of the capture timer, and the logic of the work of parsers * Add toolbox lib. Move levels to toolbox. Subghz switch to levels. * Subghz: update worker signatures * SubGhz: pluggable level duration implementations. * SubGhz : test drawing pictures in Gui * SubGhz: Added a callback with the parser structure as argument * SubGhz: copy protocol data to model * SubGhz: refactoing code * SubGhz: cleanup and format sources * SubGhz: remove comments Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com> Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
#pragma once
|
|
|
|
#include "subghz_protocol_common.h"
|
|
|
|
typedef struct SubGhzProtocolNiceFlo SubGhzProtocolNiceFlo;
|
|
|
|
/** Allocate SubGhzProtocolNiceFlo
|
|
*
|
|
* @return SubGhzProtocolNiceFlo*
|
|
*/
|
|
SubGhzProtocolNiceFlo* subghz_protocol_nice_flo_alloc();
|
|
|
|
/** Free SubGhzProtocolNiceFlo
|
|
*
|
|
* @param instance
|
|
*/
|
|
void subghz_protocol_nice_flo_free(SubGhzProtocolNiceFlo* instance);
|
|
|
|
/** Sends the key on the air
|
|
*
|
|
* @param instance - SubGhzProtocolNiceFlo instance
|
|
* @param key - key send
|
|
* @param bit - count bit key
|
|
* @param repeat - repeat send key
|
|
*/
|
|
void subghz_protocol_nice_flo_send_key(SubGhzProtocolNiceFlo* instance, uint64_t key, uint8_t bit, uint8_t repeat);
|
|
|
|
/** Reset internal state
|
|
* @param instance - SubGhzProtocolNiceFlo instance
|
|
*/
|
|
void subghz_protocol_nice_flo_reset(SubGhzProtocolNiceFlo* instance);
|
|
|
|
/** Parse accepted duration
|
|
*
|
|
* @param instance - SubGhzProtocolNiceFlo instance
|
|
* @param data - LevelDuration level_duration
|
|
*/
|
|
void subghz_protocol_nice_flo_parse(SubGhzProtocolNiceFlo* instance, bool level, uint32_t duration);;
|