cancel
Showing results for 
Search instead for 
Did you mean: 

Need bit details about STM32H743VG. 1. Does it has the external memory ? 2. It has five SPIs . Does these SPI pins available on the expansion interface ? 3. Does these SPI can operate on QUAD mode ?

Gpras.1
Associate II
 
15 REPLIES 15
Gpras.1
Associate II

Thanks for quick response. We need two SPI devices for our prototyping. I can find all pins related to SPI_A (MISO,MOSI,CLK,CS) in the schematic. But not able to locate the SPI_B_CS in the schematic (specifically in the CN7 connector ). Is the SPI_B_CS is name differently ?(SPI_B_NSS ?)

Thanks for quick response. We need two SPI devices for our prototyping. I can find all pins related to SPI_A (MISO,MOSI,CLK,CS) in the schematic. But not able to locate the SPI_B_CS in the schematic (specifically in the CN7 connector ). Is the SPI_B_CS is name differently ?(SPI_B_NSS ?)

You'd perhaps look at the Data Sheet and identify the pin designations, ie PB7, specific SPI or GPIO functionality and relate that to header pin(s)

CS, NCS, SS and NSS can be used somewhat interchangeably and loosely. The awkwardness of the SPI peripheral generally has people using a GPIO to drive a chip select pin low or high

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

Thank you. I am thinking to buy NUCLEO-H753ZI board for our POC developement. Can you please provide the details from where I can down load supporting software for IAR tool chain (like drivers for peripherals and examples using those drivers ). Do we have FreeRTOS ported to this platform ?? If yes, where can I find the example for it ?

All the examples provided by ST will be downloaded by CubeIDE or CubeMX along with the MCU support package. You can also get them from the same package on github.

FreeRTOS examples are included, see here.

The FreeRTOS port itself is here.

STM32H743 is almost same as H753, almost all code for Nucleo H743 will work as is on the 753.

Projects for IAR are in subdirectories named "EWARM".

(Note: CubeMX lets you select the version of EWARM before generating the code. The example projects were made for some older version, the IDE will prompt for upgrade).

The CubeH7 package has example IAR based projects, and also update/patches

STM32Cube_FW_H7_V1.8.0\Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32H74x-75x_Support_V1.6.zip

STM32Cube_FW_H7_V1.8.0\Middlewares\Third_Party\FreeRTOS

STM32Cube_FW_H7_V1.8.0\Projects\NUCLEO-H743ZI\Applications\FreeRTOS\FreeRTOS_ThreadCreation\EWARM\Project.ewp

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..