I'm trying to change the baud rate on the serial transfer higher and there is no reason for this not to work with a barebones program.
void setup() {
Serial.begin(14400);
}
void loop() {
Serial.println("Test");
}
This sketch:
void setup() {
Serial.begin(14400);
}
void loop() {
Serial.println("Test");
delay (100);
}
On my Uno, produces this output, once I change the baud rate in the Serial Monitor:
Test
Test
Test
Test
Test
Test
Test
Test
Test
Test
Test
I have an Arduino Uno and tried this originally with no answer or solution and thought it was a hardware problem.
What do you mean?
Where did you buy the Uno? What operating system are you using?
I should warn you that, without any gap between transmissions, the auto-detect of the baud rate in the USB interface might be defeated.