projects
/
pub
/
USBasp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
c5038f1
)
Fix incorrect Event call name in USBInterrupt.c.
author
Dean Camera
<dean@fourwalledcubicle.com>
Wed, 5 Aug 2009 07:18:08 +0000
(07:18 +0000)
committer
Dean Camera
<dean@fourwalledcubicle.com>
Wed, 5 Aug 2009 07:18:08 +0000
(07:18 +0000)
Demos/Device/ClassDriver/Mouse/Mouse.c
patch
|
blob
|
blame
|
history
Demos/Device/ClassDriver/Mouse/Mouse.h
patch
|
blob
|
blame
|
history
LUFA/Drivers/USB/HighLevel/USBInterrupt.c
patch
|
blob
|
blame
|
history
LUFA/ManPages/FutureChanges.txt
patch
|
blob
|
blame
|
history
diff --git
a/Demos/Device/ClassDriver/Mouse/Mouse.c
b/Demos/Device/ClassDriver/Mouse/Mouse.c
index
d261013
..
32f8ca6
100644
(file)
--- a/
Demos/Device/ClassDriver/Mouse/Mouse.c
+++ b/
Demos/Device/ClassDriver/Mouse/Mouse.c
@@
-118,7
+118,7
@@
void EVENT_USB_Device_ConfigurationChanged(void)
}
\r
\r
/** Event handler for the library USB Unhandled Control Request event. */
\r
}
\r
\r
/** Event handler for the library USB Unhandled Control Request event. */
\r
-void EVENT_USB_Device_
Device_
UnhandledControlRequest(void)
\r
+void EVENT_USB_Device_UnhandledControlRequest(void)
\r
{
\r
HID_Device_ProcessControlRequest(&Mouse_HID_Interface);
\r
}
\r
{
\r
HID_Device_ProcessControlRequest(&Mouse_HID_Interface);
\r
}
\r
diff --git
a/Demos/Device/ClassDriver/Mouse/Mouse.h
b/Demos/Device/ClassDriver/Mouse/Mouse.h
index
709077f
..
05b73c0
100644
(file)
--- a/
Demos/Device/ClassDriver/Mouse/Mouse.h
+++ b/
Demos/Device/ClassDriver/Mouse/Mouse.h
@@
-80,10
+80,10
@@
/* Function Prototypes: */
\r
void SetupHardware(void);
\r
\r
/* Function Prototypes: */
\r
void SetupHardware(void);
\r
\r
- void EVENT_USB_Device_
Device_
Connect(void);
\r
- void EVENT_USB_Device_D
evice_D
isconnect(void);
\r
- void EVENT_USB_Device_
Device_
ConfigurationChanged(void);
\r
- void EVENT_USB_Device_
Device_
UnhandledControlRequest(void);
\r
+ void EVENT_USB_Device_Connect(void);
\r
+ void EVENT_USB_Device_Disconnect(void);
\r
+ void EVENT_USB_Device_ConfigurationChanged(void);
\r
+ void EVENT_USB_Device_UnhandledControlRequest(void);
\r
\r
bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, uint8_t* const ReportID,
\r
void* ReportData, uint16_t* ReportSize);
\r
\r
bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, uint8_t* const ReportID,
\r
void* ReportData, uint16_t* ReportSize);
\r
diff --git
a/LUFA/Drivers/USB/HighLevel/USBInterrupt.c
b/LUFA/Drivers/USB/HighLevel/USBInterrupt.c
index
56e54f2
..
a039dff
100644
(file)
--- a/
LUFA/Drivers/USB/HighLevel/USBInterrupt.c
+++ b/
LUFA/Drivers/USB/HighLevel/USBInterrupt.c
@@
-209,7
+209,7
@@
ISR(USB_GEN_vect, ISR_BLOCK)
USB_INT_Clear(USB_INT_IDTI);
\r
\r
if (USB_DeviceState != DEVICE_STATE_Unattached)
\r
USB_INT_Clear(USB_INT_IDTI);
\r
\r
if (USB_DeviceState != DEVICE_STATE_Unattached)
\r
- EVENT_USB_Disconnect();
\r
+ EVENT_USB_D
evice_D
isconnect();
\r
\r
if (USB_HostState != HOST_STATE_Unattached)
\r
EVENT_USB_Host_DeviceUnattached();
\r
\r
if (USB_HostState != HOST_STATE_Unattached)
\r
EVENT_USB_Host_DeviceUnattached();
\r
diff --git
a/LUFA/ManPages/FutureChanges.txt
b/LUFA/ManPages/FutureChanges.txt
index
6d052a7
..
7a26a5b
100644
(file)
--- a/
LUFA/ManPages/FutureChanges.txt
+++ b/
LUFA/ManPages/FutureChanges.txt
@@
-12,6
+12,9
@@
* or post your suggestion as an enhancement request to the project bug tracker.
\r
*
\r
* <b>Targeted for This Release:</b>
\r
* or post your suggestion as an enhancement request to the project bug tracker.
\r
*
\r
* <b>Targeted for This Release:</b>
\r
+ * - N/A
\r
+ *
\r
+ * <b>Targeted for Future Releases:</b>
\r
* - Host Mode Class Drivers
\r
* -# Make new host class drivers
\r
* -# Document new host class drivers
\r
* - Host Mode Class Drivers
\r
* -# Make new host class drivers
\r
* -# Document new host class drivers
\r
@@
-19,8
+22,6
@@
* -# Re-enable Host mode Class driver builds after completion
\r
* -# Update Host mode Class Driver demo .txt files
\r
* - Add standardized descriptor names to device and host class driver structures
\r
* -# Re-enable Host mode Class driver builds after completion
\r
* -# Update Host mode Class Driver demo .txt files
\r
* - Add standardized descriptor names to device and host class driver structures
\r
- *
\r
- * <b>Targeted for Future Releases:</b>
\r
* - Remake AVRStudio project files
\r
* - Add detailed overviews of how each demo works
\r
* - Master LUFA include file rather than per-module includes
\r
* - Remake AVRStudio project files
\r
* - Add detailed overviews of how each demo works
\r
* - Master LUFA include file rather than per-module includes
\r