~ruther/uni-mam-arm

cb36fc01903b6fbb0047ee76d83d387e88553157 — Rutherther 3 months ago 3789894
feat(arm04): switch from \r to \n
2 files changed, 2 insertions(+), 2 deletions(-)

M arm04/picocom.sh
M arm04/src/main.c
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;
    }


Do not follow this link