Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
1190652c
Commit
1190652c
authored
Sep 06, 2009
by
Dean Camera
Browse files
Fixed DFU and CDC class bootloaders on the AT90USBXXX2 series USB AVRs.
parent
0486f12e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Bootloaders/CDC/BootloaderCDC.c
View file @
1190652c
...
...
@@ -116,15 +116,6 @@ void ResetHardware(void)
boot_rww_enable
();
}
/** Event handler for the USB_Disconnect event. This indicates that the bootloader should exit and the user
* application started.
*/
void
EVENT_USB_Device_Disconnect
(
void
)
{
/* Upon disconnection, run user application */
RunBootloader
=
false
;
}
/** Event handler for the USB_ConfigurationChanged event. This configures the device's endpoints ready
* to relay data to and from the attached USB host.
*/
...
...
Bootloaders/CDC/BootloaderCDC.h
View file @
1190652c
...
...
@@ -118,7 +118,6 @@
void
SetupHardware
(
void
);
void
ResetHardware
(
void
);
void
EVENT_USB_Device_Disconnect
(
void
);
void
EVENT_USB_Device_ConfigurationChanged
(
void
);
void
EVENT_USB_Device_UnhandledControlRequest
(
void
);
...
...
Bootloaders/DFU/BootloaderDFU.c
View file @
1190652c
...
...
@@ -141,15 +141,6 @@ void ResetHardware(void)
MCUCR
=
0
;
}
/** Event handler for the USB_Disconnect event. This indicates that the bootloader should exit and the user
* application started.
*/
void
EVENT_USB_Device_Disconnect
(
void
)
{
/* Upon disconnection, run user application */
RunBootloader
=
false
;
}
/** Event handler for the USB_UnhandledControlRequest event. This is used to catch standard and class specific
* control requests that are not handled internally by the USB library (including the DFU commands, which are
* all issued via the control endpoint), so that they can be handled appropriately for the application.
...
...
Bootloaders/DFU/BootloaderDFU.h
View file @
1190652c
...
...
@@ -191,7 +191,6 @@
void
SetupHardware
(
void
);
void
ResetHardware
(
void
);
void
EVENT_USB_Device_Disconnect
(
void
);
void
EVENT_USB_Device_UnhandledControlRequest
(
void
);
#if defined(INCLUDE_FROM_BOOTLOADER_C)
...
...
LUFA/ManPages/ChangeLog.txt
View file @
1190652c
...
...
@@ -60,6 +60,7 @@
* - CDC based demos and project now work under 64 bit versions of Windows (thanks to Ronny Hanson, Thomas Bleeker)
* - Re-add in flip, flip-ee, dfu and dfu-ee targets to project makefiles (thanks to Opendous Inc.)
* - Fix allowable F_CPU values comment in project makefiles
* - Fixed DFU and CDC class bootloaders on the AT90USBXXX2 series USB AVRs
*
*
* \section Sec_ChangeLog090810 Version 090810
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment