Skip to content
Snippets Groups Projects
Commit 0111fb51 authored by Dean Camera's avatar Dean Camera
Browse files

Oops - fix internal serial number extraction routine for the AVR8 architecture.

parent ea361a0d
No related branches found
No related tags found
No related merge requests found
......@@ -203,7 +203,7 @@
{
uint8_t SigReadAddress = 0x0E;
for (uint8_t SerialCharNum = 0; SerialCharNum < (INTERNAL_SERIAL_LENGTH_BYTES * 2); SerialCharNum++)
for (uint8_t SerialCharNum = 0; SerialCharNum < (INTERNAL_SERIAL_LENGTH_BITS / 4); SerialCharNum++)
{
uint8_t SerialByte = boot_signature_byte_get(SigReadAddress);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment