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-12
- Revision:
- 2:8c44f28c122c
- Parent:
- 1:782a3ddc329e
- Child:
- 4:8d109a566486
File content as of revision 2:8c44f28c122c:
#include "mbed.h" Serial pc(USBTX, USBRX); DigitalOut led1(LED1); extern void bootloader(void); void func1(void) { led1 = !led1; } int main() { printf("BDH = %d, BDL = %d\r\n", UART0->BDH, UART0->BDL); bootloader(); while(1); }