2025-02-18 5:26 AM
Hi,
I try build loaders for STM32H533RE using its nucleo board but it fails to read any thing using the cube programmer. i tried with nucleo H753 and it worked. i see that u already did loader for the H5 so would u please explain how or maybe update your tutorial to include the H5 instead leaving us here in the dark!
Regards
M.Salem
2025-02-24 2:32 AM
Hello @msalem88,
How to add your SPI flash into the STM32CubeProgrammer’s external loader Part 1 has been tested with NUCLEO-G070RB and External SPI memory (W25Q64).
In your example you used W25Q32. For that, I advise you to check the memory parameter settings in Dev_Inf.c file.
Thank you.
Kaouthar
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2025-02-24 9:53 AM - last edited on 2025-02-25 10:49 AM by Tesla DeLorean
@KDJEM.1 i used W25Q32 with Nucleo H753 and it worked, I could read and write through cube programmer
Now I wanted to use it with Nucleo H533 but its not working. I have no idea why you want me to check memory parameters since it worked fine for H753. I changed the address in the linker to 0x20000004 as you mentioned in the tutorial.
Better share your linker for any H5 together with the other files. Check your repository for the external loaders. You have nothing for any H5!!!!!!
2025-02-25 9:35 AM
@Tesla DeLorean can u help here since i see you have experience in external loaders
2025-02-25 10:47 AM
This is what I use for mine, I'm using GNU/GCC w/MAKE, and not using CubeMX nor Interrupts, etc.
The H5's use a basis of 0x20003004, so not 0x24000004 of H7, or 0x20000004 of others.
https://github.com/cturvey/stm32extldr/blob/main/ExternalLoader_H5.ld
If you give me your H53x pin designations I'll compile a W25Q32 build
Will live here : https://github.com/cturvey/stm32extldr/tree/main/h5_w25q32
2025-02-25 1:23 PM
STM32H533RETX.
SPI3_MISO -> PB0
SPI3_SCK -> PB1
SPI3_MOSI-> PC12
FLASH_CS -> PA0
Thanks
2025-02-25 1:42 PM
Pity that does use OCTOSPI in D0/D1 configuration.
I'm probably not looking to code a SPI solution.