Skip to main content
Associate II
February 23, 2024
Question

how enable more uarts on stm32mp157d-dk1 CA7

  • February 23, 2024
  • 1 reply
  • 878 views

Hello,

I want to enable more uarts on stm32mp157d-dk1 CA7 , the goal is send/receive data over uart using python3-pyserial library
Screenshot from 2024-02-23 08-35-54.png

 

Any idea ?

This topic has been closed for replies.

1 reply

Associate II
April 6, 2024

Have you been able to use these commands yet?

Commands used with UART: echo "{text_to_send}" > /dev/ttySTM1 (Send data) stty -F /dev/ttySTM1 {selected_baud}(Select baud rate) stty -onlcr -echo -F /dev/ttySTM1 (Receive data)

example: echo "hello" > /dev/ttySTM1