Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
042d3288
Commit
042d3288
authored
Aug 05, 2009
by
Dean Camera
Browse files
Fix incorrect Event call name in USBInterrupt.c.
parent
c5038f1b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Demos/Device/ClassDriver/Mouse/Mouse.c
View file @
042d3288
...
@@ -118,7 +118,7 @@ void EVENT_USB_Device_ConfigurationChanged(void)
...
@@ -118,7 +118,7 @@ void EVENT_USB_Device_ConfigurationChanged(void)
}
}
/** Event handler for the library USB Unhandled Control Request event. */
/** Event handler for the library USB Unhandled Control Request event. */
void
EVENT_USB_Device_
Device_
UnhandledControlRequest
(
void
)
void
EVENT_USB_Device_UnhandledControlRequest
(
void
)
{
{
HID_Device_ProcessControlRequest
(
&
Mouse_HID_Interface
);
HID_Device_ProcessControlRequest
(
&
Mouse_HID_Interface
);
}
}
...
...
Demos/Device/ClassDriver/Mouse/Mouse.h
View file @
042d3288
...
@@ -80,10 +80,10 @@
...
@@ -80,10 +80,10 @@
/* Function Prototypes: */
/* Function Prototypes: */
void
SetupHardware
(
void
);
void
SetupHardware
(
void
);
void
EVENT_USB_Device_
Device_
Connect
(
void
);
void
EVENT_USB_Device_Connect
(
void
);
void
EVENT_USB_Device_
Device_
Disconnect
(
void
);
void
EVENT_USB_Device_Disconnect
(
void
);
void
EVENT_USB_Device_
Device_
ConfigurationChanged
(
void
);
void
EVENT_USB_Device_ConfigurationChanged
(
void
);
void
EVENT_USB_Device_
Device_
UnhandledControlRequest
(
void
);
void
EVENT_USB_Device_UnhandledControlRequest
(
void
);
bool
CALLBACK_HID_Device_CreateHIDReport
(
USB_ClassInfo_HID_Device_t
*
const
HIDInterfaceInfo
,
uint8_t
*
const
ReportID
,
bool
CALLBACK_HID_Device_CreateHIDReport
(
USB_ClassInfo_HID_Device_t
*
const
HIDInterfaceInfo
,
uint8_t
*
const
ReportID
,
void
*
ReportData
,
uint16_t
*
ReportSize
);
void
*
ReportData
,
uint16_t
*
ReportSize
);
...
...
LUFA/Drivers/USB/HighLevel/USBInterrupt.c
View file @
042d3288
...
@@ -209,7 +209,7 @@ ISR(USB_GEN_vect, ISR_BLOCK)
...
@@ -209,7 +209,7 @@ ISR(USB_GEN_vect, ISR_BLOCK)
USB_INT_Clear
(
USB_INT_IDTI
);
USB_INT_Clear
(
USB_INT_IDTI
);
if
(
USB_DeviceState
!=
DEVICE_STATE_Unattached
)
if
(
USB_DeviceState
!=
DEVICE_STATE_Unattached
)
EVENT_USB_Disconnect
();
EVENT_USB_
Device_
Disconnect
();
if
(
USB_HostState
!=
HOST_STATE_Unattached
)
if
(
USB_HostState
!=
HOST_STATE_Unattached
)
EVENT_USB_Host_DeviceUnattached
();
EVENT_USB_Host_DeviceUnattached
();
...
...
LUFA/ManPages/FutureChanges.txt
View file @
042d3288
...
@@ -12,6 +12,9 @@
...
@@ -12,6 +12,9 @@
* or post your suggestion as an enhancement request to the project bug tracker.
* or post your suggestion as an enhancement request to the project bug tracker.
*
*
* <b>Targeted for This Release:</b>
* <b>Targeted for This Release:</b>
* - N/A
*
* <b>Targeted for Future Releases:</b>
* - Host Mode Class Drivers
* - Host Mode Class Drivers
* -# Make new host class drivers
* -# Make new host class drivers
* -# Document new host class drivers
* -# Document new host class drivers
...
@@ -19,8 +22,6 @@
...
@@ -19,8 +22,6 @@
* -# Re-enable Host mode Class driver builds after completion
* -# Re-enable Host mode Class driver builds after completion
* -# Update Host mode Class Driver demo .txt files
* -# Update Host mode Class Driver demo .txt files
* - Add standardized descriptor names to device and host class driver structures
* - Add standardized descriptor names to device and host class driver structures
*
* <b>Targeted for Future Releases:</b>
* - Remake AVRStudio project files
* - Remake AVRStudio project files
* - Add detailed overviews of how each demo works
* - Add detailed overviews of how each demo works
* - Master LUFA include file rather than per-module includes
* - Master LUFA include file rather than per-module includes
...
...
Write
Preview
Supports
Markdown
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