Masahiko Yamazaki
/
Lab1-01_pc_communication_number_lite
Lab1-01_pc_communication_number_lite
Revision 0:0c8a8e7fbf76, committed 2021-08-10
- Comitter:
- heptasat2021
- Date:
- Tue Aug 10 01:51:25 2021 +0000
- Commit message:
- Lab1-01_pc_communication_number_lite
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 0c8a8e7fbf76 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Tue Aug 10 01:51:25 2021 +0000 @@ -0,0 +1,14 @@ +#include "mbed.h" +Serial pc(USBTX,USBRX,9600); +int main() +{ + int a; + float b,c; + a = 5; + b = 1.5; + c = a+b; + while (true) { + pc.printf("a=%d, b=%f, c=%f\r\n",a,b,c); + wait_ms(500); + } +} \ No newline at end of file
diff -r 000000000000 -r 0c8a8e7fbf76 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Tue Aug 10 01:51:25 2021 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400 \ No newline at end of file