From b3588e46c781628fb45d9f82b1b5d47004ceabd5 Mon Sep 17 00:00:00 2001 From: r3df0xx Date: Sat, 9 Apr 2022 05:09:31 +0300 Subject: [PATCH] fix? fix? --- lib/subghz/protocols/keeloq_common.c | 2 +- lib/subghz/protocols/keeloq_common.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/subghz/protocols/keeloq_common.c b/lib/subghz/protocols/keeloq_common.c index 479a9ddb5..3df383f54 100644 --- a/lib/subghz/protocols/keeloq_common.c +++ b/lib/subghz/protocols/keeloq_common.c @@ -86,7 +86,7 @@ inline uint64_t /** Faac SLH (Spa) Learning * @param seed - seed number (32bit) * @param key - mfkey (64bit) - * @return man_learning for this fix number (64bit) + * @return man_learning for this seed number (64bit) */ inline uint64_t diff --git a/lib/subghz/protocols/keeloq_common.h b/lib/subghz/protocols/keeloq_common.h index 726f8bc89..af2b99248 100644 --- a/lib/subghz/protocols/keeloq_common.h +++ b/lib/subghz/protocols/keeloq_common.h @@ -73,4 +73,4 @@ uint64_t subghz_protocol_keeloq_common_magic_xor_type1_learning(uint32_t data, u * @param key - mfkey (64bit) * @return man_learning for this fix number (64bit) */ -uint64_t subghz_protocol_keeloq_common_faac_learning(uint32_t seed, const uint32_t key); +uint64_t subghz_protocol_keeloq_common_faac_learning(const uint32_t seed, const uint32_t key);