mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
rollback
This commit is contained in:
@@ -393,15 +393,6 @@ void subghz_protocol_decoder_faac_slh_feed(void* context, bool level, uint32_t d
|
||||
}
|
||||
}
|
||||
|
||||
void subghz_protocol_faac_slh_set_seed_to_decoder(void* context, uint32_t seed) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolDecoderFaacSLH* instance = context;
|
||||
instance->generic.seed = seed;
|
||||
subghz_protocol_faac_slh_check_remote_controller(
|
||||
&instance->generic, instance->keystore, &instance->manufacture_name);
|
||||
FURI_LOG_I(TAG, "SEED (to_decoder): %8X\n", instance->generic.seed);
|
||||
}
|
||||
|
||||
/**
|
||||
* Analysis of received data
|
||||
* @param instance Pointer to a SubGhzBlockGeneric* instance
|
||||
@@ -410,7 +401,6 @@ static void subghz_protocol_faac_slh_check_remote_controller
|
||||
(SubGhzBlockGeneric* instance,
|
||||
SubGhzKeystore* keystore,
|
||||
const char** manufacture_name) {
|
||||
|
||||
FURI_LOG_I(TAG, "SEED (decrypt init): %8X\n", instance->seed);
|
||||
uint32_t code_fix = instance->data >> 32;
|
||||
uint32_t code_hop = instance->data & 0xFFFFFFFF;
|
||||
|
||||
@@ -48,13 +48,6 @@ bool subghz_protocol_faac_slh_create_data(
|
||||
uint32_t frequency,
|
||||
FuriHalSubGhzPreset preset);
|
||||
|
||||
/**
|
||||
* Transfering seed value from Encoder to Decoder
|
||||
* @param context - Pointer to a SubGhzProtocolDecoderFaacSLH instance
|
||||
* @param seed Seed value, 32 bit
|
||||
*/
|
||||
void subghz_protocol_faac_slh_set_seed_to_decoder(void* context, uint32_t seed);
|
||||
|
||||
/**
|
||||
* Deserialize and generating an upload to send.
|
||||
* @param context Pointer to a SubGhzProtocolEncoderFaacSLH instance
|
||||
|
||||
Reference in New Issue
Block a user