void setup() {
Serial.begin(115200);
Serial1.begin(115200); // Serial1 is connected to the custom chip
Serial.println("Data received from UART chip:");
}
void loop() {
while (Serial1.available()) {
Serial.print((char)Serial1.read());
//Serial.print(".");
}
}