BLACKPILL custom target.
BLACKPILL custom target
Board pinout
When equipped with STM32F401CCU6:
When equipped with STM32F411CEU6:
Advantages of the BLACKPILL custom target over the NUCLEO_F401RE/ NUCLEO_F411RE
- The onboard external 25 MHz crystal is used as system clock source rather than the less precise internal 16 MHz RC oscillator.
- The onboard LED works as LED1 in programs.
- The onboard KEY on STM32F411CEU6 boards works as USER_BUTTON pin in programs.
- You can use the USB peripheral in your programs and connect the board to the PC over the onboard USB connector. An example of using the USB peripheral as USBSerial (12 Mbit/s) is available here.
Building programs for the BLACKPILL custom target in Mbed Studio
- Connect an STM32 ST-Link programmer to your BLACKPILL board and PC (see below for more details).
- Create a new program in the Mbed Studio IDE.
- Right-click on the program's root folder and in the popup window select
Add library...
- Copy&paste the text https://os.mbed.com/users/hudakz/code/BLACKPILL_Custom_Target into the
Git or os.mbed.com URL
edit box and click on theNext
button.
- Open the drop-list and select
default
asBranch or tag
and click on theFinish
button.
- Open the
BLACKPILL_Custom_Target
folder and according to you board drag&drop theTARGET_BLACKPILL_F401CC
or theTARGET_BLACKPILL_F411CE
folder and thecustom_targets.json
file one by one to the root folder of your program.
- Delete the
BLACKPILL_Custom_Target
folder from your project. (Right-click and select delete).
- Open the
Target
drop-list and click on the button with a "chip" icon on it (Manage custom targets) .
- Open the
USB device
drop-list and select your STM32 ST-Link programmer.
- Open the
Build target
drop-list and according to your board selectBLACKPILL_F401CC
orBLACKPILL_F411CE
.
- Click on the
Save All
button.
- Build your program (click on hammer button).
For more info visit
Import programBlackpill_Hello
Using low cost Blackpill (STM32F411CEU6) boards with mbed.
TARGET_BLACKPILL_F401CC/cmsis_nvic.h
- Committer:
- hudakz
- Date:
- 2022-03-19
- Revision:
- 7:3a74f7149fa4
File content as of revision 7:3a74f7149fa4:
/* mbed Microcontroller Library * SPDX-License-Identifier: BSD-3-Clause ****************************************************************************** * @attention * * <h2><center>© Copyright (c) 2016-2020 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * ****************************************************************************** */ #ifndef MBED_CMSIS_NVIC_H #define MBED_CMSIS_NVIC_H #if !defined(MBED_ROM_START) #define MBED_ROM_START 0x8000000 #endif #if !defined(MBED_ROM_SIZE) #define MBED_ROM_SIZE 0x40000 // 256 KB #endif #if !defined(MBED_RAM_START) #define MBED_RAM_START 0x20000000 #endif #if !defined(MBED_RAM_SIZE) #define MBED_RAM_SIZE 0x10000 // 64 KB #endif #define NVIC_NUM_VECTORS 102 #define NVIC_RAM_VECTOR_ADDRESS MBED_RAM_START #endif