Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/hic_hal/nxp/lpc55xx/usbd_LPC55xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ uint32_t USBD_ReadEP(uint32_t EPNum, uint8_t *pData, uint32_t size)
s_read_ctrl_out_next = 0;
if (USBHSD->DEVCMDSTAT & USBHSD_DEVCMDSTAT_SETUP_MASK) {
// A setup packet is still pending so trigger another interrupt
USBHSD->INTSETSTAT |= USBHSD_INTSETSTAT_EP_SET_INT(0);
USBHSD->INTSETSTAT |= USBHSD_INTSETSTAT_EP_SET_INT(1 << 0);
}
}
}
Expand Down