Hello
On the BeagleBone Black I'm using UART4 for my application.
When I check the UART4 TxD output with the Oscilloscope I'm getting confusing results. Maybe I'm sending the data over UART wrongly, hopefully somebody can help me.
At the beginning I do: stty -F /dev/ttyO4 raw
afterwards I expect the logic to be standard. With 1 HIGH and 0 LOW
But when I do it on BBB for 1 (HIGH) i get
root@beaglebone:~# echo 1 > /dev/ttyO4

root@beaglebone:~# echo 0 > /dev/ttyO4
root@beaglebone:~# echo 110 > /dev/ttyO4
root@beaglebone:~# echo 010 > /dev/ttyO4
root@beaglebone:~# echo 11111111 > /dev/ttyO4
Is it possible to have a normal digital logic as the output of UART? If yes, how to do so.