cancel
Showing results for 
Search instead for 
Did you mean: 

Loader_Src.c and Dev_Inf.c for STM32H753I?

JYu.3
Associate II

Does someone know where I can find the files of Loader_Src.c and Dev_Inf.c for STM32H753I-Eval?

I'm going to use them to develop customized loader for external memory. However the /ExternalLoader directory mentioned by ST-LINK Utility Software Description does not have the folder for STM32H753I, there are several folders for different family members of ST MCU. I checked inside files of Src.c and Dev_Inf.c in other folders, they should not be suitable for STM32H753I-Eval since they have different #include "xxxxx.h". Below shows an example

#include "stm32f10x.h"

#include "stm32_eval_spi_flash.h"

#include "stm3210e_eval.h"

Thanks,

James

3 REPLIES 3

Yeah, you're likely to need to use the BSP files and build within the QSPI example directories of the EVAL board

Not sure ST has released the sources for the assorted memory devices on the EVAL board. Lot of witchcraft and magic involved because the HAL model isn't a good fit. Built a couple of my own loaders.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
JYu.3
Associate II

Thank you!

I'm trying the way you recommended to see.....

STM32Cube_FW_H7_V1.4.0\Projects\STM32H743I-EVAL\Examples\QSPI

STM32Cube_FW_H7_V1.4.0\Projects\STM32H743I-EVAL\Examples\FMC\FMC_NOR

STM32Cube_FW_H7_V1.4.0\Drivers\BSP\STM32H743I_EVAL\stm32h743i_eval_qspi.c

STM32Cube_FW_H7_V1.4.0\Drivers\BSP\STM32H743I_EVAL\stm32h743i_eval_nor.c

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