Programming the UART1 peripheral in STM32F1 controller for bi-directional communication. Echo characters received from UART and transmit time elapsed since boot every 5 seconds.
The controller has 3 USART peropherals with varying functionality. The peripheral registers can be accessed as half word (16 bit) as well as words (32 bit).
This project uses USART1 with pinc PA9 and PA10 for demonstration.
Connect the board with host through USB to TTL converter (FTDI board in our case). The connections are described as follows.
Pin on Blue Pill | Pin on FTDI |
---|---|
PA9 | Rx |
PA10 | Tx |
Gnd | Gnd |
src
directory contains all source files for the projectinclude
directory contains all header files for the project
STM32F103C8TX_FLASH.ld
- linker script for generating elf file.src/main.c
- entry point of application and main code body.src/uart.c
- Contains definition of non-inline functions for uart.src/timer.c
- Contains definition of non-inline functions for SysTick timer.src/startup_stm32f103c8tx.s
- assembly startup script for blue pill board.include/uart.h
- Contains definitions of inline functions and declaration of all functions for uart.include/uart.h
- Contains definitions of inline functions and declarations of all functions for SysTick timer.system_stm32f1xx.c
- clock configuration and system initialization functions.STM32F103.svd
- contains the description of the system contained in Arm Cortex-M processor-based microcontrollers, in particular, the memory mapped registers of peripherals.
The initialisation function accomplishes following tasks
- Enables clock signal for USART1 peripheral as well as GPIO Port A, both are connected with APB2 bus.
RCC->APB2ENR |= RCC_APB2ENR_USART1EN | RCC_APB2ENR_IOPAEN;
- Reset mode and configuration for PA9 and PA10.
GPIOA->CRH &= ~(GPIO_CRH_MODE10 | GPIO_CRH_MODE9 | GPIO_CRH_CNF10 | GPIO_CRH_CNF9);
- Set appropriate mode and configuration for PA9 and PA10.
- PA9 as push-pull output at 50MHz speed.
- PA10 as floating input.
GPIOA->CRH |= GPIO_CRH_MODE9_0 | GPIO_CRH_MODE9_1 | GPIO_CRH_CNF9_1;
GPIOA->CRH |= GPIO_CRH_CNF10_0;
- Calculate and set baud rate values in register.
uint32_t baud = (uint32_t)(SystemCoreClock / baudrate);
USART1->BRR = baud;
- Enable transmitter, receiver, receiver interrupt and USART1 clock.
USART1->CR1 = USART_CR1_TE | USART_CR1_RE | USART_CR1_RXNEIE | USART_CR1_UE;
- Enable interrupt for USART1
NVIC_EnableIRQ(USART1_IRQn);
USART1_puts()
- prints a string to USART1.USART1_putc()
- waits for the transmit data register (TDR
) to be empty and loads new character in it.USART1_IRQHandler()
- Interrupt service routine for USART1 related interrupts. IfRXNE
is set i.e. receiver not empty interrupt then it echoes the character back to usart.
The application prints time elapsed since boot in interval of 5 seconds. Configure serial onitor on host for 9600 baudrate to be able to read and write to blue pill using uart. The expected output is displayed in the Output section.
-
make
Make utility is required for configuring and building this project. You can install make on linux by running command:# for debian/ubuntu sudo apt install build-essential # for macos brew install make
-
gcc-arm-none-eabi toolchain
ARM cross-platform toolchain is required to build applications for arm mcus. Toolchain can be installed by running following command:sudo apt install gcc-arm-none-eabi
- For mac, visit ARM Downloads page to install arm embedded toolchain.
-
openocd
It is an Open On Circuit Debugging tool used to flash and debug arm micro controllers. You can install openocd on linux by running command:# for debian/ubuntu sudo apt install openocd -y # for macos brew install openocd
-
Cortex Debug extension
This extension for VSCode is helpful for debugging the application on Blue Pill. The contents of registers as well as memory are visible in the context menu. Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.ext install marus25.cortex-debug
Running the project is super easy. Just clone, build, and flash.
-
Using https
git clone git@github.com:csrohit/bluepill-uart.git cd bluepill-uart/baremetal
-
Using ssh
git clone git@github.com:csrohit/bluepill-uart.git cd bluepill-uart/baremetal
All the configuration required for building this project is given below.
-
Build output directory In
Makefile
, output directory can be configured using variableBUILD_DIR
. -
Build type In
Makefile
, build type can be configured using variableDEBUG
. Possible values areDebug
andRelease
.
Run following command in terminal to generate flashable binaries for blue pill board. Build files will be written to Build Output Directory as configured.
make all
- Connect STlink to PC and blue pill board using swd headers.
- Put blue pill board in programming mode.
- Run following to flash board with binary.
make flash
The following output should be available on serial monitor.
Click in Run and Debug
option in VsCode sidebar. Then launch Cortex Debug
target.
Happy debugging....