Bluepill STM32F103C8 support for Mbed OS 6
Bluepill board support for Mbed OS 6
Warning
It does not work with the Mbed Online Compiler.
This is an example of configuration for the Bluepill board for Mbed OS 6.
It shows how to create a custom board support based on Mbed OS and how to compile a simple Blinky application.
Note this project makes use of the full Mbed OS with RTOS included. It's possible to make changes in the configuration to support the Baremetal profile and reduce memory requirements - see this.
Example application
This repository includes blinky.cpp as an example application to demonstrate how to use the Bluepill custom board support. It's expected to work out of the box using both Mbed CLI and Mbed Studio.
Note this test application can be ignored using the MBED_BLINKY_EXAMPLE macro in mbed_app.json, so you can add your own files and application on top of this project.
You can follow these steps to import and compile with Mbed CLI:
mbed import https://os.mbed.com/users/hudakz/code/mbed-os-bluepill mbed compile -t GCC_ARM -m bluepill
Bluepill and Mbed OS version support
| Bluepill | Mbed OS (hash) | Status |
|---|---|---|
| preview | 6.2.0 (#a2ada74770 ) | Compiles and runs ok |
Updating Mbed OS
Note not every version of Mbed OS is being tested, therefore update at your own risk. Unless strictly required, you should stick to versions of Mbed OS that are known to work ok.
If you do want to udpate Mbed OS, then follow these steps:
cd mbed-os mbed update <mbed-os hash / tag>
Testing
This application has been tested on the Bluepill board and runs ok: it blinks and LED and sends a message over the serial port (115200 bauds - see mbed_app.json).
However, it's recomended to run regression tests based on the Greentea framework whether possible (more details to be added).
Programming with STLink programming utility
The Bluepill board doesn't have a programming interface on board. However, it's easy to connect an external adapter such as the STLink/V2 and get it working in minutes.
Use the STM32 ST-Link utility to program the binary into the device.

Wire the Bluepill to the STLink and serial adapter as follow:
| Bluepill | STLink (20-pin JTAG) | Serial adapter |
|---|---|---|
| SDWIO (CN4) | 7 | - |
| SWCLK (CN4) | 9 | - |
| RESET | 15 | - |
| GND | 4 | GND |
| TX (PA_2) | - | RX |
| RX (PA_3) | - | TX |
ST-LINK/V2 JTAG pintout

This is the pinout of the Bluepill board:

Additional example programs
Bare metal on Bluepill
Bare metal with EventQueue on Bluepill
Warning
The examples above are not meant to be compiled with the online compiler. Follow these steps to import and compile them with Mbed CLI:
mbed import Program's_URL mbed compile -t GCC_ARM -m bluepill
Known issues
- Please check the issues reported.
TARGET_BLUEPILL/device/us_ticker_data.h@0:2577a4fb6e72, 2020-05-13 (annotated)
- Committer:
- hudakz
- Date:
- Wed May 13 12:25:39 2020 +0000
- Revision:
- 0:2577a4fb6e72
Bluepill STM32F103C8 support for Mbed OS 6
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| hudakz | 0:2577a4fb6e72 | 1 | /* mbed Microcontroller Library |
| hudakz | 0:2577a4fb6e72 | 2 | * Copyright (c) 2006-2018 ARM Limited |
| hudakz | 0:2577a4fb6e72 | 3 | * |
| hudakz | 0:2577a4fb6e72 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| hudakz | 0:2577a4fb6e72 | 5 | * you may not use this file except in compliance with the License. |
| hudakz | 0:2577a4fb6e72 | 6 | * You may obtain a copy of the License at |
| hudakz | 0:2577a4fb6e72 | 7 | * |
| hudakz | 0:2577a4fb6e72 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| hudakz | 0:2577a4fb6e72 | 9 | * |
| hudakz | 0:2577a4fb6e72 | 10 | * Unless required by applicable law or agreed to in writing, software |
| hudakz | 0:2577a4fb6e72 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| hudakz | 0:2577a4fb6e72 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| hudakz | 0:2577a4fb6e72 | 13 | * See the License for the specific language governing permissions and |
| hudakz | 0:2577a4fb6e72 | 14 | * limitations under the License. |
| hudakz | 0:2577a4fb6e72 | 15 | */ |
| hudakz | 0:2577a4fb6e72 | 16 | #ifndef __US_TICKER_DATA_H |
| hudakz | 0:2577a4fb6e72 | 17 | #define __US_TICKER_DATA_H |
| hudakz | 0:2577a4fb6e72 | 18 | |
| hudakz | 0:2577a4fb6e72 | 19 | #ifdef __cplusplus |
| hudakz | 0:2577a4fb6e72 | 20 | extern "C" { |
| hudakz | 0:2577a4fb6e72 | 21 | #endif |
| hudakz | 0:2577a4fb6e72 | 22 | |
| hudakz | 0:2577a4fb6e72 | 23 | #include "stm32f1xx.h" |
| hudakz | 0:2577a4fb6e72 | 24 | #include "stm32f1xx_ll_tim.h" |
| hudakz | 0:2577a4fb6e72 | 25 | #include "cmsis_nvic.h" |
| hudakz | 0:2577a4fb6e72 | 26 | |
| hudakz | 0:2577a4fb6e72 | 27 | #define TIM_MST TIM4 |
| hudakz | 0:2577a4fb6e72 | 28 | #define TIM_MST_IRQ TIM4_IRQn |
| hudakz | 0:2577a4fb6e72 | 29 | #define TIM_MST_RCC __HAL_RCC_TIM4_CLK_ENABLE() |
| hudakz | 0:2577a4fb6e72 | 30 | #define TIM_MST_DBGMCU_FREEZE __HAL_DBGMCU_FREEZE_TIM4() |
| hudakz | 0:2577a4fb6e72 | 31 | |
| hudakz | 0:2577a4fb6e72 | 32 | #define TIM_MST_RESET_ON __HAL_RCC_TIM4_FORCE_RESET() |
| hudakz | 0:2577a4fb6e72 | 33 | #define TIM_MST_RESET_OFF __HAL_RCC_TIM4_RELEASE_RESET() |
| hudakz | 0:2577a4fb6e72 | 34 | |
| hudakz | 0:2577a4fb6e72 | 35 | #define TIM_MST_BIT_WIDTH 16 // 16 or 32 |
| hudakz | 0:2577a4fb6e72 | 36 | |
| hudakz | 0:2577a4fb6e72 | 37 | #define TIM_MST_PCLK 1 // Select the peripheral clock number (1 or 2) |
| hudakz | 0:2577a4fb6e72 | 38 | |
| hudakz | 0:2577a4fb6e72 | 39 | |
| hudakz | 0:2577a4fb6e72 | 40 | #ifdef __cplusplus |
| hudakz | 0:2577a4fb6e72 | 41 | } |
| hudakz | 0:2577a4fb6e72 | 42 | #endif |
| hudakz | 0:2577a4fb6e72 | 43 | |
| hudakz | 0:2577a4fb6e72 | 44 | #endif // __US_TICKER_DATA_H |
| hudakz | 0:2577a4fb6e72 | 45 |