Hello guys,
I have been trying to connect my MSP432R Launchpad with another device that requires 57600 bps on Serial1 and after hours trying to find an error in my code I decided to test the Serial1 port.
Thus I uploaded the following test code and connected RX to TX (P3.2 <-> P3.3) :
void setup() {
Serial.begin(115200);
Serial1.begin(115200);
Serial.println("Starting...");
}
void loop() {
Serial1.write('A');
if (Serial1.available()) {
int inByte = Serial1.read();
Serial.write(inByte);
}
delay(1000);
}
So far everything works as expected.
Then I tr