Basic configs for getting started #466
-
I am a newbie to arduino environment and I'm using a Neo 6m GPS module for an Arduino-based robotics project. I generated a new avr-hal template project and programmed code to listen to serial port and console the bytes received but at my VSCode, the console is configured for a different baudrate meanwhile I need 9600 baudrate to conceive signals in a meaningful way. Right now I'm stuck using Arduino IDE to read consoles for serial port 0 and 1 (RX and TX serial ports) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If I understand your problem correctly, the solution is to change the baudrate in [target.'cfg(target_arch = "avr")']
runner = "ravedude uno -cb 57600"
# ^- change the baudrate here |
Beta Was this translation helpful? Give feedback.
If I understand your problem correctly, the solution is to change the baudrate in
.cargo/config.toml
: