Skip to content

Commit

Permalink
Merge pull request #398 from Willy-JL/fix-pocsag-overlap
Browse files Browse the repository at this point in the history
Fix POCSAG pager RIC: text repetition and overlap
  • Loading branch information
xMasterX committed Mar 25, 2023
2 parents 22406f8 + 474897d commit 74e928e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/external/pocsag_pager/protocols/pocsag.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ static bool pocsag_decode_message_word(SubGhzProtocolDecoderPocsag* instance, ui
// Function called when current message got decoded, but other messages might follow
static void pocsag_message_done(SubGhzProtocolDecoderPocsag* instance) {
// append the message to the long-term storage string
furi_string_cat_printf(
furi_string_printf(
instance->generic.result_ric, "\e#RIC: %" PRIu32 "\e# | ", instance->ric);
furi_string_cat_str(instance->generic.result_ric, func_msg[instance->func]);
if(instance->func != POCSAG_FUNC_ALERT1) {
Expand Down

0 comments on commit 74e928e

Please sign in to comment.