Fixed reversed signature byte ordering in the CDC bootloader (thanks to Johannes Raschke).

This commit is contained in:
Dean Camera 2009-05-02 05:49:15 +00:00
parent f05224ec46
commit 13935a31b9
4 changed files with 7 additions and 6 deletions

View file

@ -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')
{