Skip to main content
Associate
September 12, 2025
Solved

No of uart channels

  • September 12, 2025
  • 2 replies
  • 333 views

How many uart channels are available on STM32H573I-DK Discovery kit.

I am Looking for atleast two channels..

Thanks in advance...

Best answer by STTwo-32

Hello @Rao and welcome to the ST Community 

You can use the UART3 on the arduino connector pins:

STTwo32_1-1757657052803.png

Also, you can use the UART7 available on both ST Mod+ and Pmod connectors. More details are available on the UM3143.

Best Regards.

STTwo-32

2 replies

STTwo-32
STTwo-32Best answer
Technical Moderator
September 12, 2025

Hello @Rao and welcome to the ST Community 

You can use the UART3 on the arduino connector pins:

STTwo32_1-1757657052803.png

Also, you can use the UART7 available on both ST Mod+ and Pmod connectors. More details are available on the UM3143.

Best Regards.

STTwo-32

Visitor II
March 17, 2026

The hardware is an STM32H573I-DK, and the development environment is Zephyr.

SDK version is 0.17.4, and Zephyr version is 4.3.99.

Example usage: uart\echo_bot

When modifying the settings to use UART7, UART7 completely stops responding. Replacing it with USART3 restores normal functionality.

When using UART7, is it necessary to enable other pins to switch between the two? It shares pins with SPI5.


It has been determined that pin conversion is required. SB2, SB5, SB6, and SB8 can now correspond to the functions of UART7, whereas they originally corresponded to SPI5.

RaoAuthor
Associate
September 12, 2025

Thanks for your immediate response....