From bb4a45e850df98bd282218e40ec43798c8643283 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 21 May 2023 18:26:46 +0200 Subject: [PATCH] [Pager] Fixed long prints --- src/protocols/Pager/Pager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocols/Pager/Pager.cpp b/src/protocols/Pager/Pager.cpp index 006f5e81..fafade1f 100644 --- a/src/protocols/Pager/Pager.cpp +++ b/src/protocols/Pager/Pager.cpp @@ -498,7 +498,7 @@ uint32_t PagerClient::read() { codeWord = ~codeWord; } - RADIOLIB_VERBOSE_PRINTLN("R\t%X", codeWord); + RADIOLIB_VERBOSE_PRINTLN("R\t%lX", codeWord); // TODO BCH error correction here return(codeWord); }