Loading Application Files via UART (uClinux)
This note explains how to load files such as binary applications from Linux running on the target via UART. This is a useful procedure for those targets that do not provide an Ethernet link and have the serial console as the only communication channel.
On the host, activate the Cortex-M cross-development environment:
-bash-3.2$ . ./ACTIVATE.sh
-bash-3.2$Create a simple "Hello, world" C application:
[host] $ cd /tmp
[host] $ vi test.c
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("Hello, STM32H7-SOM\n");
return 0;
}Build the application for the Cortex-M target:
[host] $ ${CROSS_COMPILE_APPS}gcc -o test test.cIf you have no uuencode installed in your system, then install it:
[host] $ sudo apt-get install sharutilsEncode the application binary into an ASCII-only presentation so that the file can be transmitted over a serial line:
[host] $ uuencode test < test > test.encodedThe uudecode application on the target (in order to convert the ASCII-only file back into the application binary) is provided with busybox by default in the rootfs project.
On the host, make sure that the serial port you use for the target console is configured for 115200 bps:
[host] $ stty -F /dev/ttyUSB0 115200 raw -echo -echoe -echoctl -echokIf you have no picocom installed in your system, the install it:
[host] $ sudo apt-get install picocomStart the target console:
[host] $ picocom -b 115200 /dev/ttyUSB0From the target, run the following to read a file from the serial console:
~ # cat > /test.encoded < /dev/ttySTM2On the host, exit the target console (Ctrl-A and then Ctrl-X in picocom).
On the host, send the encoded ASCII file to the serial port used for the target console:
[host] $ cat /tmp/test.encoded > /dev/ttyUSB0When the transfer command finishes, enter the target console again:
[host] $ picocom -b 115200 /dev/ttyUSB0Type Ctrl-C to interrupt the cat command:
^C
/ #Run uudecode to convert the ASCII file back to the binary file:
~ # uudecode /test.encoded -o /testChange mode to allow running the application binary:
~ # chmod a+x /testFinally, run the application:
~ # /test
Hello, STM32H7-SOM
~ #