Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Jan 15, 2025
1 parent 7e30648 commit 13266c9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Device.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 13266c9

Please sign in to comment.