選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
123456789101112131415 |
- /*
- * usb_hid.h
- */
-
- #ifndef __USB_HID_H__
- #define __USB_HID_H__
-
- struct usb_hid_mouse {
- int32_t delta_x;
- int32_t delta_y;
- };
-
- void hid_task(void);
-
- #endif // __USB_HID_H__
|