Hi,
Im working on a CH552 project using ch55xduino IDE with a Development Board: “CH552 Core Board by WeActStudio”
I trying to write a simple text “Hello,World" to an cpu port (31) TXD.
But can not get the code working, can any give me hand with the code
Has anybody used Serial0.println or Serial1.println
USBSerial_print(“Hello,World”); works perfect !
Code:
void setup() { Serial1.begin(9600); while (!Serial1); }
void loop() { Serial1.println("Hello,World"); delay(1000); }