Fix DEBUG_SEC_LANG

This commit is contained in:
Alex Voinea 2022-02-06 00:23:40 +01:00
parent e1ebc82654
commit e358cb2b78
2 changed files with 3 additions and 3 deletions

View file

@ -1242,9 +1242,9 @@ void setup()
printf_P(_n("_SEC_LANG_TABLE checksum = %04x\n"), sum);
sum = (sum >> 8) | ((sum & 0xff) << 8); //swap bytes
if (sum == header.checksum)
puts_P(_n("Checksum OK"), sum);
printf_P(_n("Checksum OK\n"), sum);
else
puts_P(_n("Checksum NG"), sum);
printf_P(_n("Checksum NG\n"), sum);
}
else
puts_P(_n("lang_get_header failed!"));