fix samd usb hid typo

This commit is contained in:
hathach 2018-08-01 08:40:04 +07:00
parent bf033123a7
commit 533d8dda96
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ typedef struct {
} usb_hid_device_obj_t; } usb_hid_device_obj_t;
usb_hid_device_obj_t usb_hid_devices[USB_HID_NUM_DEVICES]; extern usb_hid_device_obj_t usb_hid_devices[USB_HID_NUM_DEVICES];
void usb_hid_init(void); void usb_hid_init(void);
void usb_hid_reset(void); void usb_hid_reset(void);

View File

@ -35,7 +35,7 @@
#include "genhdr/autogen_usb_descriptor.h" #include "genhdr/autogen_usb_descriptor.h"
// Buffers are report size + 1 to include the Report ID prefix byte if needed. // Buffers are report size + 1 to include the Report ID prefix byte if needed.
#ifdef USB_HID_REPORT_LENGTH_KEYBOARD #ifdef USB_HID_REPORT_ID_KEYBOARD
static uint8_t keyboard_report_buffer[USB_HID_REPORT_LENGTH_KEYBOARD + 1]; static uint8_t keyboard_report_buffer[USB_HID_REPORT_LENGTH_KEYBOARD + 1];
#endif #endif
#ifdef USB_HID_REPORT_ID_MOUSE #ifdef USB_HID_REPORT_ID_MOUSE
@ -55,7 +55,7 @@ static uint8_t digitizer_report_buffer[USB_HID_REPORT_LENGTH_DIGITIZER + 1];
#endif #endif
usb_hid_device_obj_t usb_hid_devices[USB_HID_NUM_DEVICES] = { usb_hid_device_obj_t usb_hid_devices[USB_HID_NUM_DEVICES] = {
#ifdef USB_HID_REPORT_LENGTH_KEYBOARD #ifdef USB_HID_REPORT_ID_KEYBOARD
{ {
.base = { .type = &usb_hid_device_type }, .base = { .type = &usb_hid_device_type },
.report_buffer = keyboard_report_buffer, .report_buffer = keyboard_report_buffer,