mbed support for STM32F103C8T6 (Blue Pill) boards

Dependents:   STM32F103C8T6_nRF24L01P_Hello_World Serial_over_Ethernet STM32F103C8T6_LoRaWAN-lmic-app STM32F103C8T6_WebUSBDFU ... more

Demo program and additional info:

Import programSTM32F103C8T6_Hello

Using low cost Bluepill (STM32F103C8T6) boards with mbed.

Files at this revision

API Documentation at this revision

Comitter:
hudakz
Date:
Tue Jul 05 18:51:36 2016 +0000
Parent:
2:534793444c60
Child:
4:306609fe9dc8
Commit message:
Updated

Changed in this revision

SysClockConf.cpp Show annotated file Show diff for this revision Revisions of this file
SysClockConf.h Show annotated file Show diff for this revision Revisions of this file
--- a/SysClockConf.cpp	Tue Jul 05 18:19:01 2016 +0000
+++ b/SysClockConf.cpp	Tue Jul 05 18:51:36 2016 +0000
@@ -56,7 +56,7 @@
     return true;
 }
 
-bool configSysClock(int freq) {
+bool confSysClock(int freq) {
     HAL_RCC_DeInit();
     if (!HSE_SystemClock_Config(freq)) {
         return false;
--- a/SysClockConf.h	Tue Jul 05 18:19:01 2016 +0000
+++ b/SysClockConf.h	Tue Jul 05 18:51:36 2016 +0000
@@ -1,2 +1,2 @@
 #pragma once
-bool configSysClock(int freq = 36 /*MHz*/);
+bool confSysClock(int freq = 36 /*MHz*/);