Skip to main content
LKan.1
Associate
September 27, 2021
Solved

Is DCMI DMA on STM32H743 request 74 or 75?

  • September 27, 2021
  • 2 replies
  • 1125 views

according to https://www.st.com/resource/en/application_note/dm00373474-digital-camera-interface-dcmi-on-stm32-mcus-stmicroelectronics.pdf sec 4.4.3, it says request 74. But according to the reference manual https://www.st.com/resource/en/reference_manual/dm00314099-stm32h742-stm32h743-753-and-stm32h750-value-line-advanced-arm-based-32-bit-mcus-stmicroelectronics.pdf Table 121, it says request 75.

Thanks

This topic has been closed for replies.
Best answer by Imen.D

Hello @LKan.1​ ,

The correct value for the DMA request MUX input for DCMI is 75.

I raised the request internally to correct the AN5020.

When your question is answered, please close this topic by choosing Select as Best. This will help other users find that answer faster.

Imen

2 replies

Tesla DeLorean
Guru
September 28, 2021

How hard would it be to just see which one works?

Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..
Tesla DeLorean
Guru
September 28, 2021

Not very in my estimation, I'd go with the RM, odds of that are way better than 50/50

STM32Cube_FW_H7_V1.8.0\Drivers\STM32H7xx_HAL_Driver\Inc\stm32h7xx_hal_dma.h

#define DMA_REQUEST_I2C3_TX     74U /*!< DMAMUX1 I2C3 TX request  */

#if defined (PSSI)

#define DMA_REQUEST_DCMI_PSSI    75U /*!< DMAMUX1 DCMI/PSSI request  */

#define DMA_REQUEST_DCMI       DMA_REQUEST_DCMI_PSSI /* Legacy define */

#else

#define DMA_REQUEST_DCMI       75U /*!< DMAMUX1 DCMI request     */

#endif /* PSSI */

#define DMA_REQUEST_CRYP_IN     76U /*!< DMAMUX1 CRYP IN request  */

#define DMA_REQUEST_CRYP_OUT     77U /*!< DMAMUX1 CRYP OUT request */

Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..
Imen.DBest answer
Technical Moderator
September 28, 2021

Hello @LKan.1​ ,

The correct value for the DMA request MUX input for DCMI is 75.

I raised the request internally to correct the AN5020.

When your question is answered, please close this topic by choosing Select as Best. This will help other users find that answer faster.

Imen

In order to give better visibility on the answered topics, please click on 'Best answer' on the reply which solved your issue or answered your question. Thanks