.

Dependencies:   mbed EthernetInterface mbed-rtos

Fork of Bootloader_K64F by Erik -

main.cpp

Committer:
Sissors
Date:
2016-04-23
Revision:
8:00cefe0d59ed
Parent:
7:4ab0430d06e3
Child:
9:56ed3a56ecc3

File content as of revision 8:00cefe0d59ed:

#include "mbed.h"
#include "bootloader.h"

int main() 
{
    
    printf("\r\nTestrun!\r\n");   
    printf("Press any key to continue\r\n");
    getchar();
    printf("Starting bootloader\r\n");
    wait(1);
    write_flash();
    while(1);
}