I use am335x custom board.
The baud rate of uart4 is 9600,but I need the uart4 work in the baud rate of 115200.
I need to revise which file to make uart4 can work in 115200 baud rates.
thz u
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I use am335x custom board.
The baud rate of uart4 is 9600,but I need the uart4 work in the baud rate of 115200.
I need to revise which file to make uart4 can work in 115200 baud rates.
thz u
Hi,
What software are you using?
In linux, you typically estabilish serial connection using a terminal emulator software (minicom, microcom, picocom). These applications support setting the baudrate.
Best regards,
Miroslav
The TI-Android-ICS-4.0.3 is used in am335x board.
The linux-kernel is 3.2.
But the mincom can not be used in the board.
I need to configured /dev/ttyO4 in the am335x board.
Yes, minicom is too large for an embedded application.
The "microcom" application is part of the "busybox" package, which should be included in your root file system.
Here is how to use it:
root@am335x-evm:~# microcom
BusyBox v1.20.2 (2013-06-25 16:43:45 CDT) multi-call binary.
Usage: microcom [-d DELAY] [-t TIMEOUT] [-s SPEED] [-X] TTY
Here is an example: microcom -s 115200 /dev/ttyO4
Best regards,
Miroslav
Is the microcom linux version or android version?
Can the linux version of microcom be used in the am335x board?
microcom is part of the busybox package, which has been pre-compiled for the AM335x so you should be able to use it under both Linux and Android running on the am335x processor.
Best regards,
Miroslav
The busybox package is missing.
Attached is the busybox binary: 4336.busybox.zip
Push it to your device and use it like this:
busybox microcom -s 115200 /dev/ttyO4
Best regards,
Miroslav