You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried with the arduino code as below:
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.write(0x0C);Serial.write(0x0D);Serial.write(0x0E);
delay(500);
}
The other serial monitor can see the correct thing, but the serial monitor of VSCode can't print 0x0D, it just 'eat' it, and output 0c 0e 0c 0e......
VS Code version: Code 1.97.2 (e54c774, 2025-02-12T23:20:35.343Z)
OS version: Windows_NT x64 10.0.19045
Modes:
The text was updated successfully, but these errors were encountered:
Thanks for creating this issue! It looks like you may be using an old version of VS Code, the latest stable release is 1.98.1. Please try upgrading to the latest version and checking whether this issue remains.
Type: Bug
I tried with the arduino code as below:
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.write(0x0C);Serial.write(0x0D);Serial.write(0x0E);
delay(500);
}
The other serial monitor can see the correct thing, but the serial monitor of VSCode can't print 0x0D, it just 'eat' it, and output 0c 0e 0c 0e......
VS Code version: Code 1.97.2 (e54c774, 2025-02-12T23:20:35.343Z)
OS version: Windows_NT x64 10.0.19045
Modes:
The text was updated successfully, but these errors were encountered: