Skip to content

Commit

Permalink
stm32h7xx_hal driver partial update to v1.11.3
Browse files Browse the repository at this point in the history
Some changes applied on the stm32h7xx_hal_driver
v1.11.3 are reported here. Until the stm32CubeH7 module
is updated.

Signed-off-by: Francois Ramu <[email protected]>
  • Loading branch information
FRASTM committed Aug 9, 2024
1 parent f131715 commit b333248
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stm32cube/stm32h7xx/drivers/src/stm32h7xx_hal_ospi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1597,7 +1597,7 @@ HAL_StatusTypeDef HAL_OSPI_Receive_DMA(OSPI_HandleTypeDef *hospi, uint8_t *pData
}

/* Enable the transmit MDMA Channel */
if (HAL_MDMA_Start_IT(hospi->hmdma, (uint32_t)pData, (uint32_t)&hospi->Instance->DR, hospi->XferSize, 1) == \
if (HAL_MDMA_Start_IT(hospi->hmdma, (uint32_t)&hospi->Instance->DR, (uint32_t)pData, hospi->XferSize, 1) == \
HAL_OK)
{
/* Enable the transfer error interrupt */
Expand Down
2 changes: 1 addition & 1 deletion stm32cube/stm32h7xx/drivers/src/stm32h7xx_ll_delayblock.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* @{
*/

#if defined(HAL_SD_MODULE_ENABLED) || defined(HAL_QSPI_MODULE_ENABLED)
#if defined(HAL_SD_MODULE_ENABLED) || defined(HAL_QSPI_MODULE_ENABLED)|| defined(HAL_OSPI_MODULE_ENABLED)

/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
Expand Down

0 comments on commit b333248

Please sign in to comment.