.
Dependencies: mbed EthernetInterface mbed-rtos
Fork of Bootloader_K64F by
main.cpp@4:8d109a566486, 2015-03-13 (annotated)
- Committer:
- Sissors
- Date:
- Fri Mar 13 21:30:48 2015 +0000
- Revision:
- 4:8d109a566486
- Parent:
- 2:8c44f28c122c
- Child:
- 7:4ab0430d06e3
K64F version which sets the NMI handler
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Sissors | 0:9396d3376435 | 1 | #include "mbed.h" |
Sissors | 0:9396d3376435 | 2 | |
Sissors | 1:782a3ddc329e | 3 | extern void bootloader(void); |
Sissors | 1:782a3ddc329e | 4 | |
Sissors | 1:782a3ddc329e | 5 | int main() |
Sissors | 1:782a3ddc329e | 6 | { |
Sissors | 1:782a3ddc329e | 7 | bootloader(); |
Sissors | 1:782a3ddc329e | 8 | while(1); |
Sissors | 1:782a3ddc329e | 9 | } |
Sissors | 1:782a3ddc329e | 10 |