Test
Fork of Nucleo-mbed-os-example-blinky by
Revision 3:a6caeb32839c, committed 2016-08-21
- Comitter:
- Helmut64
- Date:
- Sun Aug 21 19:25:29 2016 +0000
- Parent:
- 2:07a218c4cb20
- Child:
- 4:634ee710cadb
- Commit message:
- Backup
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- 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
