git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@14276 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-04-24 05:11:42 +00:00
parent 7f2fc26966
commit c5db5025ef
2 changed files with 4 additions and 0 deletions

View File

@ -99,6 +99,8 @@ static void wspi_lld_serve_interrupt(WSPIDriver *wspip) {
transfer complete.*/
dmaStreamClearInterrupt(wspip->dma);
#if defined(STM32L471xx) || defined(STM32L475xx) || \
defined(STM32L476xx) || defined(STM32L486xx)
/* Handling of errata: Extra data written in the FIFO at the end of a
read transfer.*/
if (wspip->state == WSPI_RECEIVE) {
@ -106,6 +108,7 @@ static void wspi_lld_serve_interrupt(WSPIDriver *wspip) {
(void) wspip->qspi->DR;
}
}
#endif
}
/*===========================================================================*/

View File

@ -74,6 +74,7 @@
*****************************************************************************
*** 20.3.4 ***
- FIX: Fixed QUADSPI errata fix applied to all platforms (bug #1153).
- FIX: Fixed (again) LPUART1 support for STM32H7xx (bug #1113).
- FIX: Fixed wrong behavior in Serial-USB driver (bug #1151).
- FIX: Fixed L0x2 series DAC not allocated in registry (bug #1150).