From 01719eceb17cb3c1c69f2bfd6719589095f5858e Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Sat, 1 Apr 2023 21:38:15 +0300 Subject: [PATCH] oh i forgot to remove logs --- lib/subghz/protocols/keeloq.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/subghz/protocols/keeloq.c b/lib/subghz/protocols/keeloq.c index d2120d879..759a524fe 100644 --- a/lib/subghz/protocols/keeloq.c +++ b/lib/subghz/protocols/keeloq.c @@ -812,13 +812,6 @@ static inline bool subghz_protocol_keeloq_check_decrypt( if((decrypt >> 28 == btn) && (((((uint16_t)(decrypt >> 16)) & 0xFF) == end_serial) || ((((uint16_t)(decrypt >> 16)) & 0xFF) == 0))) { instance->cnt = decrypt & 0x0000FFFF; - FURI_LOG_I( - "DED", - "btn: %d, decrypt: %lx, end_serial: %lx, serial: %lx", - btn, - decrypt, - end_serial, - instance->serial); return true; } return false;