Skip to main content
JYu.3
Associate II
July 3, 2019
Question

Loader_Src.c and Dev_Inf.c for STM32H753I?

  • July 3, 2019
  • 2 replies
  • 922 views

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

This topic has been closed for replies.

2 replies

Tesla DeLorean
Guru
July 3, 2019

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 VenmoUp vote any posts that you find helpful, it shows what's working..
Tesla DeLorean
Guru
July 3, 2019

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 VenmoUp vote any posts that you find helpful, it shows what's working..
JYu.3
JYu.3Author
Associate II
July 3, 2019

Thank you!

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