git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@14114 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-03-30 11:56:31 +00:00
parent 328bb9c1f5
commit aac09d3da8
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ static bool sdu_start_receive(SerialUSBDriver *sdup) {
}
/* Checking if there is already a transaction ongoing on the endpoint.*/
if (usbGetReceiveStatusI(sdup->config->usbp, sdup->config->bulk_in)) {
if (usbGetReceiveStatusI(sdup->config->usbp, sdup->config->bulk_out)) {
return true;
}

View File

@ -74,8 +74,8 @@
*****************************************************************************
*** 20.3.4 ***
- FIX: Fixed L0x2 series DAC not allocated in registry (bug #1150)
(backported to 19.1.5).
- FIX: Fixed wrong behavior in Serial-USB driver (bug #1151).
- FIX: Fixed L0x2 series DAC not allocated in registry (bug #1150).
- FIX: Fixed inconsistent naming of SAI DMAMUX defines for STM32H7 (bug #1149).
- FIX: Fixed TIM register layout difference for STM32G4 series (bug #1148).
- FIX: Fixed STM32 QUADSPI driver problem when used with DMAv2 (bug #1147).