2022-10-24 12:49 PM
I wanted to use STM32CubeIDE with the NUCLEO-H753ZI and to my surprise there are no examples in the list to pick from. I there a !:1 compatible board? I was able to make my own example but would like to see some ST demo solutions.
Solved! Go to Solution.
2022-10-25 08:25 AM
Using Keil here
https://www.st.com/en/evaluation-tools/nucleo-h753zi.html
MB1364B you'd want to use the USE_NUCLEO_H743ZI2 define, as it's the new board design, not the legacy one.
You might need to port HASH/CRYP examples from the EVAL board ones
STM32Cube_FW_H7_V1.9.1\Projects\STM32H743I-EVAL\Examples\CRYP\CRYP_AESCCM_IT\readme.txt
2022-10-24 01:09 PM
Same as H743
2022-10-24 01:12 PM
All examples for Nucleo-H743ZI work on Nucleo-H753.
New Ethernet examples are here.
2022-10-25 05:52 AM
not sure why but selecting these do not work. They compile and run and deploy to the board but do nothing. Also when I try to bring up the device board layout tool, nothing is shown, do I need to do an extra step, like tell it the chip I have?
if I first put in the board, then try to set the chip, it marks the board text box red.
2022-10-25 05:59 AM
Figure out which PCB version you have the H743ZI and H743ZI2 have different board layout and a handful of pin changes.
Does your board have an ST-LINK/V3 or V2?
Same IC except H753ZI has CRYP and HASH, there should be a few examples of those in CubeH7 repository.
2022-10-25 06:07 AM
I have the Nucleo-h753zi
it also says NUH753Zi$AT1
I do see ST-LINK V3 On the board yes.
There are 90 samples for ht743zi but none seem to work or show a device view.
2022-10-25 07:41 AM
maybe its just how I set this up?
I run the new project wizard
I find and select my IC
I find and select my board
Now on the example repo I see it has no idea what I just selected So I pic the board ht743zi since there are no examples for H753ZI and it loads my new project. From here I normally can click the device config tool and my IC shows up, but in this case it does not. Also when I run a project that activates the LEDs nothing flashes
but this works
I run the new project wizard
I find and select my IC
I find and select my board
make a blank project.
Here the device config tool shows my IC and if I write code to activate LEDS they work,
2022-10-25 08:25 AM
Using Keil here
https://www.st.com/en/evaluation-tools/nucleo-h753zi.html
MB1364B you'd want to use the USE_NUCLEO_H743ZI2 define, as it's the new board design, not the legacy one.
You might need to port HASH/CRYP examples from the EVAL board ones
STM32Cube_FW_H7_V1.9.1\Projects\STM32H743I-EVAL\Examples\CRYP\CRYP_AESCCM_IT\readme.txt
2022-10-25 08:37 AM
cube makes me miss KEIL... Will check out the links.
its using
#define USE_STM32H7XX_NUCLEO_144_MB1364
2022-10-25 08:45 AM
changed to USE_NUCLEO_H743ZI2
that got it