Fixed reversed signature byte ordering in the CDC bootloader (thanks to Johannes Raschke).
This commit is contained in:
parent
f05224ec46
commit
13935a31b9
4 changed files with 7 additions and 6 deletions
|
@ -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')
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue