Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-STM32F103C8T6 mbed
main.cpp
- Committer:
- RuslanUrya
- Date:
- 2018-03-24
- Revision:
- 4:3b4e57fa9d48
- Parent:
- 3:4586c9e72974
- Child:
- 5:9ffde68319d1
File content as of revision 4:3b4e57fa9d48:
#include "mbed.h"
#include "stm32f103c8t6.h"
DigitalOut myled(LED1);
int main() {
confSysClock();
for(;;){
myled= !myled;
wait(0.5);
}
}