Blink LED and printf test with Nucleo-F103RB
This is a mbed board image.
Hello World message was printed in Terminals.
Revision 0:777d783a9104, committed 2015-05-12
- Comitter:
- kzl108
- Date:
- Tue May 12 03:25:02 2015 +0000
- Commit message:
- Blink LED and Printf from Nucleo-F103RB
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
diff -r 000000000000 -r 777d783a9104 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Tue May 12 03:25:02 2015 +0000 @@ -0,0 +1,13 @@ +#include "mbed.h" + +DigitalOut myled(LED1); + +int main() { + while(1) { + printf("Hello World from Nucleo-F103RB!\n"); + myled = 1; // LED is ON + wait(0.2); // 200 ms + myled = 0; // LED is OFF + wait(1.0); // 1 sec + } +}
diff -r 000000000000 -r 777d783a9104 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Tue May 12 03:25:02 2015 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/8ab26030e058 \ No newline at end of file