]> git.tnoah.ca Git - lora-radio.git/commitdiff
Cleanup
authorMark Qvist <mark@unsigned.io>
Wed, 15 Jan 2025 13:03:35 +0000 (14:03 +0100)
committerMark Qvist <mark@unsigned.io>
Wed, 15 Jan 2025 13:03:35 +0000 (14:03 +0100)
Device.h

index 40e2c86f91fa19275fa36552e4f501196417447c..e2a1d068db480a7f77efcc53529f4e9f5be0a222 100644 (file)
--- a/Device.h
+++ b/Device.h
@@ -147,9 +147,6 @@ uint32_t retrieve_application_size() {
     uint8_t bytes[4];
     memcpy(bytes, (const void*)IMG_SIZE_START, 4);
     uint32_t fw_len = bytes[0] | bytes[1] << 8 | bytes[2] << 16 | bytes[3] << 24;
-    Serial.println("FIRMWARE LEN:");
-    Serial.print(fw_len);
-    Serial.flush();
     return fw_len;
 }