From 19cdc7764bf3b68dfcd838f376b4f22059e904ec Mon Sep 17 00:00:00 2001 From: r3df0xx Date: Tue, 12 Apr 2022 14:57:53 +0300 Subject: [PATCH] Update subghz_i.h --- applications/subghz/subghz_i.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/applications/subghz/subghz_i.h b/applications/subghz/subghz_i.h index 5d2596b13..c895c2c3f 100644 --- a/applications/subghz/subghz_i.h +++ b/applications/subghz/subghz_i.h @@ -88,6 +88,11 @@ typedef enum { SubGhzLoadKeyStateOnlyRx, } SubGhzLoadKeyState; +typedef struct { + uint8_t seed_len; + uint8_t seed[4]; +} SeedData; + struct SubGhzTxRx { SubGhzWorker* worker; @@ -96,6 +101,7 @@ struct SubGhzTxRx { SubGhzTransmitter* transmitter; SubGhzProtocolDecoderBase* decoder_result; FlipperFormat* fff_data; + SeedData* seed_data; uint32_t frequency; FuriHalSubGhzPreset preset;