2019-07-03 01:24 PM
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
2019-07-03 01:51 PM
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.
2019-07-03 03:36 PM
Thank you!
I'm trying the way you recommended to see.....
2019-07-03 04:37 PM
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