mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-05-04 23:12:57 +00:00
Fixed reversed signature byte ordering in the CDC bootloader (thanks to Johannes Raschke).
This commit is contained in:
@@ -424,9 +424,9 @@ TASK(CDC_Task)
|
||||
}
|
||||
else if (Command == 's')
|
||||
{
|
||||
WriteNextResponseByte(SIGNATURE_0);
|
||||
WriteNextResponseByte(SIGNATURE_1);
|
||||
WriteNextResponseByte(SIGNATURE_2);
|
||||
WriteNextResponseByte(SIGNATURE_1);
|
||||
WriteNextResponseByte(SIGNATURE_0);
|
||||
}
|
||||
else if (Command == 'b')
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user