cancel
Showing results for 
Search instead for 
Did you mean: 

how enable more uarts on stm32mp157d-dk1 CA7

Softcity
Associate II

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 ?

1 REPLY 1
ngoctoan150699
Associate III

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