mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
rename hid report_buf to epin_buf
add epout_buf and use it for SET_REPORT request buffer
This commit is contained in:
parent
2050778763
commit
c8b9293d68
@ -38,11 +38,6 @@
|
|||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
// MACRO CONSTANT TYPEDEF
|
// MACRO CONSTANT TYPEDEF
|
||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
|
|
||||||
#ifndef CFG_TUD_HID_BUFSIZE
|
|
||||||
#define CFG_TUD_HID_BUFSIZE 16
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
uint8_t itf_num;
|
uint8_t itf_num;
|
||||||
@ -53,7 +48,9 @@ typedef struct
|
|||||||
uint8_t idle_rate; // up to application to handle idle rate
|
uint8_t idle_rate; // up to application to handle idle rate
|
||||||
uint16_t reprot_desc_len;
|
uint16_t reprot_desc_len;
|
||||||
|
|
||||||
CFG_TUSB_MEM_ALIGN uint8_t report_buf[CFG_TUD_HID_BUFSIZE];
|
CFG_TUSB_MEM_ALIGN uint8_t epin_buf[CFG_TUD_HID_BUFSIZE];
|
||||||
|
CFG_TUSB_MEM_ALIGN uint8_t epout_buf[CFG_TUD_HID_BUFSIZE];
|
||||||
|
|
||||||
}hidd_interface_t;
|
}hidd_interface_t;
|
||||||
|
|
||||||
CFG_TUSB_MEM_SECTION static hidd_interface_t _hidd_itf[CFG_TUD_HID];
|
CFG_TUSB_MEM_SECTION static hidd_interface_t _hidd_itf[CFG_TUD_HID];
|
||||||
@ -89,14 +86,15 @@ bool tud_hid_report(uint8_t report_id, void const* report, uint8_t len)
|
|||||||
// If report id = 0, skip ID field
|
// If report id = 0, skip ID field
|
||||||
if (report_id)
|
if (report_id)
|
||||||
{
|
{
|
||||||
p_hid->report_buf[0] = report_id;
|
p_hid->epin_buf[0] = report_id;
|
||||||
memcpy(p_hid->report_buf+1, report, len);
|
memcpy(p_hid->epin_buf+1, report, len);
|
||||||
|
len++;
|
||||||
}else
|
}else
|
||||||
{
|
{
|
||||||
memcpy(p_hid->report_buf, report, len);
|
memcpy(p_hid->epin_buf, report, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
return dcd_edpt_xfer(TUD_OPT_RHPORT, p_hid->ep_in, p_hid->report_buf, len + (report_id ? 1 : 0) );
|
return dcd_edpt_xfer(TUD_OPT_RHPORT, p_hid->ep_in, p_hid->epin_buf, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool tud_hid_boot_mode(void)
|
bool tud_hid_boot_mode(void)
|
||||||
@ -217,15 +215,15 @@ bool hidd_control_request(uint8_t rhport, tusb_control_request_t const * p_reque
|
|||||||
uint8_t const report_type = tu_u16_high(p_request->wValue);
|
uint8_t const report_type = tu_u16_high(p_request->wValue);
|
||||||
uint8_t const report_id = tu_u16_low(p_request->wValue);
|
uint8_t const report_id = tu_u16_low(p_request->wValue);
|
||||||
|
|
||||||
uint16_t xferlen = tud_hid_get_report_cb(report_id, (hid_report_type_t) report_type, p_hid->report_buf, p_request->wLength);
|
uint16_t xferlen = tud_hid_get_report_cb(report_id, (hid_report_type_t) report_type, p_hid->epin_buf, p_request->wLength);
|
||||||
TU_ASSERT( xferlen > 0 );
|
TU_ASSERT( xferlen > 0 );
|
||||||
|
|
||||||
usbd_control_xfer(rhport, p_request, p_hid->report_buf, xferlen);
|
usbd_control_xfer(rhport, p_request, p_hid->epin_buf, xferlen);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case HID_REQ_CONTROL_SET_REPORT:
|
case HID_REQ_CONTROL_SET_REPORT:
|
||||||
usbd_control_xfer(rhport, p_request, p_hid->report_buf, p_request->wLength);
|
usbd_control_xfer(rhport, p_request, p_hid->epout_buf, p_request->wLength);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case HID_REQ_CONTROL_SET_IDLE:
|
case HID_REQ_CONTROL_SET_IDLE:
|
||||||
@ -284,7 +282,7 @@ bool hidd_control_request_complete(uint8_t rhport, tusb_control_request_t const
|
|||||||
uint8_t const report_type = tu_u16_high(p_request->wValue);
|
uint8_t const report_type = tu_u16_high(p_request->wValue);
|
||||||
uint8_t const report_id = tu_u16_low(p_request->wValue);
|
uint8_t const report_id = tu_u16_low(p_request->wValue);
|
||||||
|
|
||||||
tud_hid_set_report_cb(report_id, (hid_report_type_t) report_type, p_hid->report_buf, p_request->wLength);
|
tud_hid_set_report_cb(report_id, (hid_report_type_t) report_type, p_hid->epout_buf, p_request->wLength);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -39,6 +39,10 @@
|
|||||||
// Class Driver Default Configure & Validation
|
// Class Driver Default Configure & Validation
|
||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
|
|
||||||
|
#ifndef CFG_TUD_HID_BUFSIZE
|
||||||
|
#define CFG_TUD_HID_BUFSIZE 16
|
||||||
|
#endif
|
||||||
|
|
||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
// Application API
|
// Application API
|
||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
|
Loading…
x
Reference in New Issue
Block a user