.

Dependencies:   mbed EthernetInterface mbed-rtos

Fork of Bootloader_K64F by Erik -

Revision:
7:4ab0430d06e3
Parent:
4:8d109a566486
Child:
8:00cefe0d59ed
--- a/main.cpp	Fri Mar 13 22:03:29 2015 +0000
+++ b/main.cpp	Sat Apr 23 15:10:04 2016 +0000
@@ -1,10 +1,13 @@
 #include "mbed.h"
-
-extern void bootloader(void);
+#include "bootloader.h"
 
 int main() 
-{   
-    bootloader();
+{
+    printf("\r\nThis is a test!\r\n");   
+
+    wait(2);
+    write_flash();
     while(1);
 }
- 
\ No newline at end of file
+ 
+