From 281aab33b8594d421c9e8e85604a14e5ce3ed3e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20M=C3=BCller?= Date: Fri, 12 Apr 2024 03:21:52 +0200 Subject: [PATCH] [fixup] Extract hexDump function --- src/util.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/util.h b/src/util.h index c7bd54e..586d0ec 100644 --- a/src/util.h +++ b/src/util.h @@ -312,13 +312,5 @@ void sendTextToSign( Serial1.print(toSend); Serial.println("Text sent to device: " + toSend); - Serial.print("Hex dump: "); - for (size_t i = 0; i < toSend.length(); ++i) { - auto hexChar = String(toSend[i], HEX); - if (hexChar.length() == 1) { - hexChar = '0' + hexChar; - } - Serial.print(hexChar + ' '); - } - Serial.println(); + Serial.println("Hex dump: " + hexDump(toSend)); }