diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-01-30 23:12:06 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-01-30 23:12:06 +0000 |
commit | 43b9d552bb0a32c5cd5f9fa72a8cb3c871ad5ef3 (patch) | |
tree | 3eec94c1a0d57fb84c0678d10f1012d234e532a7 /LUFA/ManPages | |
parent | 9051d3beb0c5c4ec1e33749d8f806f5492fbe742 (diff) | |
download | lufa-43b9d552bb0a32c5cd5f9fa72a8cb3c871ad5ef3.tar.gz lufa-43b9d552bb0a32c5cd5f9fa72a8cb3c871ad5ef3.tar.bz2 lufa-43b9d552bb0a32c5cd5f9fa72a8cb3c871ad5ef3.zip |
Renamed all driver termination *_ShutDown() functions to the more logical name *_Disable().
Diffstat (limited to 'LUFA/ManPages')
-rw-r--r-- | LUFA/ManPages/ChangeLog.txt | 1 | ||||
-rw-r--r-- | LUFA/ManPages/SoftwareBootloaderJump.txt | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt index 84f91c711..8cd894e3e 100644 --- a/LUFA/ManPages/ChangeLog.txt +++ b/LUFA/ManPages/ChangeLog.txt @@ -48,6 +48,7 @@ * value if no character is received (to remain consistent with the CDC class driver byte reception routines) * - Renamed the PRNT_Host_SendString(), CDC_Host_SendString() and CDC_Device_SendString() functions to *_SendData(), and * added new versions of the *_SendString() routines that expect a null terminated string instead + * - Renamed all driver termination *_ShutDown() functions to the more logical name *_Disable() * - Library Applications: * - Changed the XPLAINBridge software UART to use the regular timer CTC mode instead of the alternative CTC mode * via the Input Capture register, to reduce user confusion diff --git a/LUFA/ManPages/SoftwareBootloaderJump.txt b/LUFA/ManPages/SoftwareBootloaderJump.txt index 2591a8645..d0b41e1b6 100644 --- a/LUFA/ManPages/SoftwareBootloaderJump.txt +++ b/LUFA/ManPages/SoftwareBootloaderJump.txt @@ -44,8 +44,8 @@ * * void Jump_To_Bootloader(void) * { - * // If USB is used, detach from the bus - * USB_ShutDown(); + * // If USB is used, detach from the bus and reset it + * USB_Disable(); * * // Disable all interrupts * cli(); |