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

This commit is contained in:
Dean Camera 2011-03-14 00:24:14 +00:00
parent ea361a0d30
commit 0111fb515d
1 changed files with 1 additions and 1 deletions

View File

@ -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);