From 6734659e0d536aba0e3468aa6be348d132a0a701 Mon Sep 17 00:00:00 2001 From: Max Lapan Date: Sat, 26 Nov 2022 16:33:17 +0100 Subject: [PATCH] Drop logging --- lib/subghz/protocols/pocsag.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/subghz/protocols/pocsag.c b/lib/subghz/protocols/pocsag.c index e39117914..756acfcd4 100644 --- a/lib/subghz/protocols/pocsag.c +++ b/lib/subghz/protocols/pocsag.c @@ -236,7 +236,6 @@ void subghz_protocol_decoder_pocsag_feed(void* context, bool level, uint32_t dur // handle codewords if (instance->decoder.decode_count_bit == POCSAG_CW_BITS) { codeword = (uint32_t)(instance->decoder.decode_data & POCSAG_CW_MASK); - FURI_LOG_I(TAG, "cw: %" PRIx32, codeword); switch (codeword) { case POCSAG_IDLE_CODE_WORD: instance->codeword_idx++; @@ -260,7 +259,6 @@ void subghz_protocol_decoder_pocsag_feed(void* context, bool level, uint32_t dur case PocsagDecoderStepMessage: if (instance->decoder.decode_count_bit == POCSAG_CW_BITS) { codeword = (uint32_t)(instance->decoder.decode_data & POCSAG_CW_MASK); - FURI_LOG_I(TAG, "mw: %" PRIx32, codeword); switch (codeword) { case POCSAG_IDLE_CODE_WORD: // Idle during the message stops the message