コード例 #1
0
void
EVENT_USB_Device_StartOfFrame(void)
{
	HID_Device_MillisecondElapsed(&keyboardHIDIface);
	HID_Device_MillisecondElapsed(&genericHIDIface);
	HID_Device_MillisecondElapsed(&nkroHIDIface);
	HID_Device_MillisecondElapsed(&extrakeyHIDIface);

	expMSTick();
	macrosMSTick();
}
コード例 #2
0
/** Event handler for the USB device Start Of Frame event. */
void EVENT_USB_Device_StartOfFrame(void)
{
	HID_Device_MillisecondElapsed(&Keyboard_HID_Interface);
}
コード例 #3
0
ファイル: HidApp.c プロジェクト: TransistorLabs/glowproxy
/** Event handler for the USB device Start Of Frame event. */
void EVENT_USB_Device_StartOfFrame(void)
{
	HID_Device_MillisecondElapsed(&Generic_HID_Interface);
}
コード例 #4
0
/** Event handler for the USB device Start Of Frame event. */
void EVENT_USB_Device_StartOfFrame(void)
{
	HID_Device_MillisecondElapsed(&Joystick_HID_Interface);
}
コード例 #5
0
ファイル: HidSetup.c プロジェクト: dreiss/twi-keyboard
void EVENT_USB_Device_StartOfFrame(void) {
  HID_Device_MillisecondElapsed(&kbd_device);
}
コード例 #6
0
/**
 * @brief Event handler for the USB device Start Of Frame event
 * @return Nothing
 */
void EVENT_USB_Device_StartOfFrame(void)
{
	HID_Device_MillisecondElapsed(HID_Mouse_PTR);
}
コード例 #7
0
/** Event handler for the USB device Start Of Frame event. */
void EVENT_USB_Device_StartOfFrame(void)
{
	HID_Device_MillisecondElapsed(&MediaControl_HID_Interface);
}
コード例 #8
0
void EVENT_USB_Device_StartOfFrame(void) {
  //SerialDebug_printf("EVENT_USB_Device_StartOfFrame\r\n");
  HID_Device_MillisecondElapsed(&Joystick_HID_Interface);
}
コード例 #9
0
ファイル: AudioController.c プロジェクト: sgk/AudioController
void
EVENT_USB_Device_StartOfFrame(void) {
    HID_Device_MillisecondElapsed(&stateMachine);
}