M arm04/picocom.sh => arm04/picocom.sh +1 -1
@@ 1,2 1,2 @@
#!/usr/bin/env bash
-picocom "$1" --stopbits 1 --databits 8 --parity e --baud 9600 --echo
+picocom "$1" --stopbits 1 --databits 8 --parity e --baud 9600 --echo --omap crlf
M arm04/src/main.c => arm04/src/main.c +1 -1
@@ 146,7 146,7 @@ void main()
// Application
while (1) {
- if (usart_receive(&uart, buffer, sizeof(buffer) / sizeof(buffer[0]), '\r') == 0) {
+ if (usart_receive(&uart, buffer, sizeof(buffer) / sizeof(buffer[0]), '\n') == 0) {
continue;
}