Oops - when adding a sequence header to the SDP response, the size value needs to be cleared, not the buffer pointer.

This commit is contained in:
Dean Camera 2010-05-21 08:01:41 +00:00
parent 92bebc457f
commit 58a0ee67a3
3 changed files with 11 additions and 4 deletions

View file

@ -44,8 +44,13 @@
*
* void Jump_To_Bootloader(void)
* {
* // If USB is used, detatch from the bus and wait 2 seconds for the host to register it
* // If USB is used, detatch from the bus
* USB_ShutDown();
*
* // Disable all interrupts
* cli();
*
* // Wait two seconds for the USB detatchment to register on the host
* for (uint8_t i = 0; i < 128; i++)
* _delay_ms(16);
*