diff --git a/os/hal/ports/STM32/LLD/OCTOSPIv1/hal_wspi_lld.c b/os/hal/ports/STM32/LLD/OCTOSPIv1/hal_wspi_lld.c index a6d261bdf..dc196abff 100644 --- a/os/hal/ports/STM32/LLD/OCTOSPIv1/hal_wspi_lld.c +++ b/os/hal/ports/STM32/LLD/OCTOSPIv1/hal_wspi_lld.c @@ -315,9 +315,6 @@ void wspi_lld_command(WSPIDriver *wspip, const wspi_command_t *cmdp) { if ((cmdp->cfg & WSPI_CFG_ADDR_MODE_MASK) != WSPI_CFG_ADDR_MODE_NONE) { wspip->ospi->AR = cmdp->addr; } - - /* Waiting for the previous operation to complete.*/ - wspi_lld_sync(wspip); } /** diff --git a/os/hal/ports/STM32/LLD/QUADSPIv1/hal_wspi_lld.c b/os/hal/ports/STM32/LLD/QUADSPIv1/hal_wspi_lld.c index 915135ccf..a819c4d27 100644 --- a/os/hal/ports/STM32/LLD/QUADSPIv1/hal_wspi_lld.c +++ b/os/hal/ports/STM32/LLD/QUADSPIv1/hal_wspi_lld.c @@ -260,9 +260,6 @@ void wspi_lld_command(WSPIDriver *wspip, const wspi_command_t *cmdp) { if ((cmdp->cfg & WSPI_CFG_ADDR_MODE_MASK) != WSPI_CFG_ADDR_MODE_NONE) { wspip->qspi->AR = cmdp->addr; } - - /* Waiting for the previous operation to complete.*/ - wspi_lld_sync(wspip); } /** diff --git a/os/hal/ports/STM32/LLD/QUADSPIv2/hal_wspi_lld.c b/os/hal/ports/STM32/LLD/QUADSPIv2/hal_wspi_lld.c index 7f9cb1aea..a50dc6911 100644 --- a/os/hal/ports/STM32/LLD/QUADSPIv2/hal_wspi_lld.c +++ b/os/hal/ports/STM32/LLD/QUADSPIv2/hal_wspi_lld.c @@ -204,9 +204,6 @@ void wspi_lld_command(WSPIDriver *wspip, const wspi_command_t *cmdp) { if ((cmdp->cfg & WSPI_CFG_ADDR_MODE_MASK) != WSPI_CFG_ADDR_MODE_NONE) { wspip->qspi->AR = cmdp->addr; } - - /* Waiting for the previous operation to complete.*/ - wspi_lld_sync(wspip); } /**