communication for safety project
Dependencies: mbed
Diff: main.cpp
- Revision:
- 0:8fcca12e22fe
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Tue Nov 21 18:59:54 2017 +0000 @@ -0,0 +1,19 @@ +#include "mbed.h" +Serial pc(USBTX, USBRX); +Serial uart(p28, p27); + +int count = 50; + +int main() { + pc.printf("%d",count); + while (1) { + + char str[125]=""; + sprintf(str, "%d", count); + if(uart.writeable()) + { + uart.printf("%s\n",str); + } + + } +} \ No newline at end of file