summaryrefslogtreecommitdiff
path: root/tinyusb/device/dcd_lpc43xx.c
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-11-18 17:29:12 +0700
committerhathach <[email protected]>2013-11-18 17:29:12 +0700
commit94854f805aa8c80ffe77d8cef3ecfd45a3a9f253 (patch)
tree7b253dc397879317fd53c76e013888e9b6955b08 /tinyusb/device/dcd_lpc43xx.c
parentb104d21e7112614e18f1e789fa2dd22ca09f9e4d (diff)
get lpc17xx running through enumeration (with control data < 64)
Diffstat (limited to 'tinyusb/device/dcd_lpc43xx.c')
-rw-r--r--tinyusb/device/dcd_lpc43xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/device/dcd_lpc43xx.c b/tinyusb/device/dcd_lpc43xx.c
index 1d400d2af..fe55273c4 100644
--- a/tinyusb/device/dcd_lpc43xx.c
+++ b/tinyusb/device/dcd_lpc43xx.c
@@ -339,7 +339,7 @@ static inline uint8_t qtd_find_free(uint8_t coreid)
//--------------------------------------------------------------------+
void dcd_pipe_control_stall(uint8_t coreid)
{
- LPC_USB[coreid]->ENDPTCTRL0 |= (ENDPTCTRL_MASK_STALL << 16); // stall Control IN
+ LPC_USB[coreid]->ENDPTCTRL0 |= (ENDPTCTRL_MASK_STALL << 16); // stall Control IN TODO stall control OUT as well
}
// control transfer does not need to use qtd find function