STM32H725IGK6 variant
Posted: Thu Sep 12, 2024 8:05 pm
Hi all,
I'm currently working on a project based on the STM32H725IGK6.
I chose this MCU since the UFBGA 176+25 package is convenient for me and I need the large number of IO, the processor speed is also a big plus.
I followed the Variant creation guideline without success. At first I took the blame personally, that it was not working due to a mistake I may have made but the more I look into it, the more I think the Core library may be missing something.
I have an LED on the board, using STM32cubeIDE I can easily make the LED blinks.
I can't do the same through Arduino.
I cannot find why, so instead I tried something.
The STM32H723 and STM32H725 have pretty much the same architecture, the main difference that I found is the absence of the SMPS module on the STM32H723 (which I'm not using so not an issue). They also seems to share the same registry addresses (I haven't looked at all of them thought).
When I'm creating a STM32H723 variant and use it to compile the code, the LED blinks on the STM32H725 board.
Is it a known issue for the STM32H725 family? I do see that none are officially supported on the Github page.
Worse case I'll simply create a variant_generic file with the STM32H725 pinout and the remaining from a STM32H723 variant folder.
Maybe I didn't do the variant correctly but even then, if I copy the LDscript from the STM32H723 to the STM32H725 variant, the STM32H725 variant does not make the LED blink but If I use the generated LDscript I made for the STM32H725 in the STM32H723 variant, it works. I also compared line by line and both LDscripts are identical
Same with the generic_clock file (I kept the #if defined of the STM32H725), I used the one I generated for the STM32H725 in the STM32H723 variant and it was working but not the other way arround.
I'm I missing something?
I'm currently working on a project based on the STM32H725IGK6.
I chose this MCU since the UFBGA 176+25 package is convenient for me and I need the large number of IO, the processor speed is also a big plus.
I followed the Variant creation guideline without success. At first I took the blame personally, that it was not working due to a mistake I may have made but the more I look into it, the more I think the Core library may be missing something.
I have an LED on the board, using STM32cubeIDE I can easily make the LED blinks.
I can't do the same through Arduino.
I cannot find why, so instead I tried something.
The STM32H723 and STM32H725 have pretty much the same architecture, the main difference that I found is the absence of the SMPS module on the STM32H723 (which I'm not using so not an issue). They also seems to share the same registry addresses (I haven't looked at all of them thought).
When I'm creating a STM32H723 variant and use it to compile the code, the LED blinks on the STM32H725 board.
Is it a known issue for the STM32H725 family? I do see that none are officially supported on the Github page.
Worse case I'll simply create a variant_generic file with the STM32H725 pinout and the remaining from a STM32H723 variant folder.
Maybe I didn't do the variant correctly but even then, if I copy the LDscript from the STM32H723 to the STM32H725 variant, the STM32H725 variant does not make the LED blink but If I use the generated LDscript I made for the STM32H725 in the STM32H723 variant, it works. I also compared line by line and both LDscripts are identical
Same with the generic_clock file (I kept the #if defined of the STM32H725), I used the one I generated for the STM32H725 in the STM32H723 variant and it was working but not the other way arround.
I'm I missing something?