cancel
Showing results for 
Search instead for 
Did you mean: 

Where is the function "HAL_MDMA_Start ()"? (STM32Cube_FW_H7_V1.8.0)

JVERN.18
Associate III

I don't know where the "HAL_MDMA_Start (" function is located.

In "stm32h7xx_hal_mdma.c" we find references to "HAL_MDMA_Start (", but not the code. On the other hand there is the code of "HAL_MDMA_Start_IT (".

I am using STM32CubeMX / IDE to generate the build files (STM32Cube_FW_H7_V1.8.0). The processor is an STM32H745ZITx

Best regards

Jean-Louis

3 REPLIES 3

https://github.com/STMicroelectronics/stm32h7xx_hal_driver/blob/master/Src/stm32h7xx_hal_mdma.c#L1073

Tips, buy me a coffee, or three.. PayPal Venmo Up vote any posts that you find helpful, it shows what's working..
TDK
Guru

If you place your cursor within a call to HAL_MDMA_Start or any other function, you can hit F3 to jump to its definition (or right click -> Open Declaration), as long as the IDE can find it.

If you feel a post has answered your question, please click "Accept as Solution".
JVERN.18
Associate III

Thank you,

I don't know why, but I didn't have the function in the file (maybe an unhappy Ctrl-X

)... After reinstalling the package, I have the function in the right place!