3164184bbc
* SubGhz: protocols library refactoring * SubGhz: new architecture and refactoring * SubGhz: simplify protocol structure, remove unused types * SubGhz: rename Subghz to SubGhz * SubGhz: add environment concept Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com> Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
17 lines
273 B
C
17 lines
273 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#include <lib/toolbox/level_duration.h>
|
|
|
|
typedef struct {
|
|
bool is_runing;
|
|
size_t repeat;
|
|
size_t front;
|
|
size_t size_upload;
|
|
LevelDuration* upload;
|
|
|
|
} SubGhzProtocolBlockEncoder;
|