summaryrefslogtreecommitdiff
path: root/tinyusb/class
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-12-09 16:11:10 +0700
committerhathach <[email protected]>2013-12-09 16:11:10 +0700
commita40d20387dc7997de29f33aaff522e6bedd50ba1 (patch)
treea3240b95c581fac7156a7e89299e6f403fe82bb9 /tinyusb/class
parentb08ecda657f56302bf5f09103a1ef8843ae49690 (diff)
complete dcd 17xx control xfer with soft DMA
keyboard LED set report run ok with lpc17xx there is problem with cdc set line encoding
Diffstat (limited to 'tinyusb/class')
-rw-r--r--tinyusb/class/cdc_device.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tinyusb/class/cdc_device.c b/tinyusb/class/cdc_device.c
index 39619fbd5..b4e63d1fa 100644
--- a/tinyusb/class/cdc_device.c
+++ b/tinyusb/class/cdc_device.c
@@ -197,11 +197,10 @@ tusb_error_t cdcd_control_request_subtask(uint8_t coreid, tusb_control_request_t
case CDC_REQUEST_SET_LINE_CODING:
dcd_pipe_control_xfer(coreid, p_request->bmRequestType_bit.direction,
&cdcd_line_coding[coreid], min16_of(sizeof(cdc_line_coding_t), p_request->wLength), false );
- // TODO notify application on xfer complete
+ // TODO notify application on xfer completea
break;
case CDC_REQUEST_SET_CONTROL_LINE_STATE: // TODO extract DTE present
-// dcd_pipe_control_xfer(coreid, p_request->bmRequestType_bit.direction, NULL, 0);
break;