I have burned a new 328 with an Arduino bootloader and successfully uploaded the blink sketch.
The problem is with the serial communication: if I upload the below sketch:
/*
* Hello World!
*
* This is the Hello World! for Arduino.
* It shows how to send data to the computer
*/
void setup() // run once, when the sketch starts
{
Serial.begin(9600); // set up Serial library at 9600 bps
Serial.println("Hello world!"); // prints hello with ending line break
}
void loop() // run over and over again
{
// do nothing!
}
I get this on the terminal:
˜~þž
ž`f˜˜€
setup for 9600 baud, but if I take it down to 4800 I get the proper string.
Do you know what can be the issue?
Thanks