Add new HID_Device_MillisecondElapsed() function to the HID device Class driver, to move the burden of managing the Idle period of each instance to the library and not the user application.
This commit is contained in:
parent
7227e133a9
commit
7df6b9563c
9 changed files with 21 additions and 26 deletions
|
@ -121,8 +121,7 @@ void EVENT_USB_UnhandledControlPacket(void)
|
|||
/** ISR to keep track of each millisecond interrupt, for determining the HID class idle period remaining when set. */
|
||||
ISR(TIMER0_COMPA_vect, ISR_BLOCK)
|
||||
{
|
||||
if (Keyboard_HID_Interface.State.IdleMSRemaining)
|
||||
Keyboard_HID_Interface.State.IdleMSRemaining--;
|
||||
HID_Device_MillisecondElapsed(&Keyboard_HID_Interface);
|
||||
}
|
||||
|
||||
/** HID class driver callback function for the creation of HID reports to the host.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue