This program hasn't been modified yet it breaks my FRDMK64 board

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "FreescaleIAP.h"
00003 
00004 extern void bootloader();
00005 
00006 int main()
00007 {
00008     SIM->SCGC6 |= SIM_SCGC6_FTF_MASK;
00009         
00010     while (true) {
00011         bootloader();
00012     }
00013 }