Test
Fork of Nucleo-mbed-os-example-blinky by
Diff: main.cpp
- Revision:
- 3:a6caeb32839c
- Parent:
- 2:07a218c4cb20
- Child:
- 4:634ee710cadb
--- a/main.cpp Wed Aug 17 18:10:55 2016 +0000
+++ b/main.cpp Sun Aug 21 19:25:29 2016 +0000
@@ -1,10 +1,14 @@
#include "mbed.h"
+#include "FATFileSystem.h"
+
PwmOut led(LED1);
int main()
{
+ FATFileSystem *f;
+
while (true) {
led = led + 0.05f;
wait(0.1);
Helmut Tschemernjak
