Connecting Serial Console to the STM32F429 Discovery |
Running Linux (uClinux) on the STM32F429 requires a serial console. U-Boot and Linux make use of the serial console to print messages and provide an interactive user interface. You won't be able to do much unless you have access to the serial console. Both U-Boot and Linux are configured to use USART1 for the serial console on the STM32F429 Discovery. On the latest revision of the board (STM32F429-DISC1), USART1 is available on the ST-LINK connector. Make sure that CN4 jumpers are not installed. On the STM32F429-DISCO, USART1 interface is available at UART levels on the extension headers. In order to connect the serial console to a PC, you must convert the UART interface either to an RS-232 interface or to a USB interface. This requires connecting an external device ("dongle") to the STM32F429 Discovery. There are various such devices available on the market. One specific device we have been using (among others) is the WaveShare FT232 USB UART board: On the STM32F429 Discovery side, the connections to a converter board, such as the above USB UART board, must be as follows:
There are various serial communication tools available for Linux, the most popular perhaps being kermit. kermit is a very powerful tool that can be run in interactive mode or controlled by a script. There is abandunt documentation on kermit avialable in the Internet, if you require details. One possibility is to define on the host a shell script similar to the one below: $ vi console-stm32f429.script Change the file mode to make the script an executable file: $ chmod +x console-stm32f429.script Then run the script whenever you need to get access to the console: $ ./console-stm32f429.script To exit kermit, type Ctrl-\ and then q. |