/*
Wokwi Custom UART Chip example
See https://link.wokwi.com/custom-chips-alpha for more info about custom chips
*/
void setup() {
Serial.begin(115200);
Serial1.begin(115200); // Serial1 is connected to the custom chip
Serial.println("Data received from UART chip:");
}
void loop() {
Serial1.print("123456789");
delay(500);
while (Serial1.available()) {
Serial.print((char)Serial1.read());
}
delay(500);
}