Describe the bug
If I connect my Arduino Nano Every for the first time to the PC via USB, the Serial Output in Serial-Studio is shown as unreadable gibberish. If I use another program ( CoolTermWin inmy case) to establish the Serial connection, it works correctly and subsequently, it also works in Serial Studio.
Minimal Example on Arduino Nano Every
void setup() {
Serial.begin(115200);
while (!Serial);
}
void loop() {
Serial.println("/*1,2,3*/");
delay(50);
}