aboutsummaryrefslogtreecommitdiff
path: root/LUFA/ManPages/SoftwareBootloaderJump.txt
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-05-21 08:01:41 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-05-21 08:01:41 +0000
commitc9c794e24b27d6f2203116c4ff6ee3fdfa62a5e1 (patch)
tree370c30583667ee11dfe15b4c4de9f74bbf592ff7 /LUFA/ManPages/SoftwareBootloaderJump.txt
parentacbdfcd1fe35e75d824c3662b1ea4f36bb517cd0 (diff)
Oops - when adding a sequence header to the SDP response, the size value needs to be cleared, not the buffer pointer.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1271 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/ManPages/SoftwareBootloaderJump.txt')
-rw-r--r--LUFA/ManPages/SoftwareBootloaderJump.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/LUFA/ManPages/SoftwareBootloaderJump.txt b/LUFA/ManPages/SoftwareBootloaderJump.txt
index 1b284e4c..ca8d8ee7 100644
--- a/LUFA/ManPages/SoftwareBootloaderJump.txt
+++ b/LUFA/ManPages/SoftwareBootloaderJump.txt
@@ -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);
*