Faac SLH add manually

This commit is contained in:
r3df0xx
2022-04-19 00:32:25 +03:00
parent 4f544faf44
commit f2ec0a652a
9 changed files with 264 additions and 24 deletions

View File

@@ -86,6 +86,16 @@ typedef struct {
uint8_t seed[4];
} SeedData;
typedef struct {
uint8_t fix_len;
uint8_t fix[4];
} FixData;
typedef struct {
uint8_t cnt_len;
uint8_t cnt[2];
} CntData;
struct SubGhzTxRx {
SubGhzWorker* worker;
@@ -95,6 +105,8 @@ struct SubGhzTxRx {
SubGhzProtocolDecoderBase* decoder_result;
FlipperFormat* fff_data;
SeedData* seed_data;
FixData* fix_data;
CntData* cnt_data;
uint32_t frequency;
FuriHalSubGhzPreset preset;