CLion + PlatformIO Serial Monitor

Hi @adigitek. Does the problem occur even if you upload this simple sketch to the UNO R4 WiFi board?:

void setup() {
  Serial.begin(9600);
}

void loop() {
  Serial.println("hello");
  delay(1000);
}