説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

usb_hid.h 181B

123456789101112131415
  1. /*
  2. * usb_hid.h
  3. */
  4. #ifndef __USB_HID_H__
  5. #define __USB_HID_H__
  6. struct usb_hid_mouse {
  7. int32_t delta_x;
  8. int32_t delta_y;
  9. };
  10. void hid_task(void);
  11. #endif // __USB_HID_H__