mbed support for STM32F103C8T6 (Blue Pill) boards

Committer:
faydrus
Date:
Mon Sep 24 13:24:55 2018 +0000
Revision:
13:5921e108936c
Initial LED checkin

Who changed what in which revision?

UserRevisionLine numberNew contents of line
faydrus 13:5921e108936c 1 #include "mbed.h"
faydrus 13:5921e108936c 2
faydrus 13:5921e108936c 3 // Our main event loop. Used in lieu of a real RTOS.
faydrus 13:5921e108936c 4 extern void eventLEDs(void);
faydrus 13:5921e108936c 5 void eventLoop(void) {
faydrus 13:5921e108936c 6 while(true) {
faydrus 13:5921e108936c 7 eventLEDs();
faydrus 13:5921e108936c 8 }
faydrus 13:5921e108936c 9 }