safety project slave
Dependencies: mbed
Revision 0:3da7ec42bd73, committed 2017-11-21
- Comitter:
- Asimtaj
- Date:
- Tue Nov 21 19:00:52 2017 +0000
- Commit message:
- communication for slave device
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 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Tue Nov 21 19:00:52 2017 +0000 @@ -0,0 +1,15 @@ +#include "mbed.h" +Serial pc(USBTX, USBRX); +Serial uart(p28, p27); +int main() { + while(1) { + //wait(2); + if(uart.readable()) { + char message[125]; + uart.scanf("%s",message); + //message[strlen(message)] = '\n'; + pc.printf("%s\n\r", message); + } + } +} + \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Tue Nov 21 19:00:52 2017 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/e7ca05fa8600 \ No newline at end of file