Example of a Serial bootloader for the K64F platform

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 extern void bootloader(void);
00004 
00005 int main() 
00006 {   
00007     bootloader();
00008     while(1);
00009 }
00010