Serial Monitor plugin issue
Running a raspberry pi pico with a debug probe. I am running the following program:
```
#include <stdio.h>
#include "pico/stdlib.h"
int main() {
stdio_init_all();
printf("Hello, world!\n");
return 0;
}
```
If I run minicom I see the `Hello, world!` output just fine (and correctly formatted). In the serial monitor window when I first run it I see:
`00 48 65 6c 6c 6f 2c 20`
The next time I run it I see:
`00 48 65 6c 6c 6f 2c 20 77 6f 72 6c 64 21 0d 0a 00 48 65 6c 6c 6f 2c 20 77 6f 72 6c 64 21 0d 0a | .Hello, world!...Hello, world!..`
I've tried changing the line end and flushing output in the script but the output seems to be the same. Was wondering if anyone knows what the issue could be. I can use minicom for now but would be nice to get the monitor working within clion.
Please sign in to leave a comment.