Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed EthernetInterface mbed-rtos
Fork of FOTA_K64F by
main.cpp
- Committer:
- Sissors
- Date:
- 2015-03-11
- Revision:
- 1:782a3ddc329e
- Parent:
- 0:9396d3376435
- Child:
- 2:8c44f28c122c
File content as of revision 1:782a3ddc329e:
#include "mbed.h" DigitalOut led1(LED1); extern void bootloader(void); void func1(void) { led1 = !led1; } int main() { bootloader(); while(1); }