-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
esp-idf-monitor does not support escape characters (IDFGH-13646) #17
Comments
Hi @Smity, You mentioned that you are running VS Code, so I assume you are using the integrated terminal. Please verify that you get the same issue in the regular Windows Powershell or Command line. You can run the monitor with the following command:
Do you mean the physical interfaces -> USB ports? If you change the port you also need to make sure you updated the following setting in the menuconfig to match your interface: ESP32-S3 devkits usually have two USB ports, one marked UART and the other one marked USB, can you please check which one are you using? Can you please check that this works for you using other serial monitoring applications such as Putty as mentioned in the console output? |
Thanks for your response.
I mean the menuconfig setting. My devkit indeed has two physical USB ports — one that connects directly to the D+ and D- pins, and one that connects to UART0 through an on-board UART-USB chip — and I've been making sure to use the one that correctly matches my menuconfig settings. The console also doesn't work if I invoke the same command that VSCode uses in a plain PowerShell window: PuTTY works if I'm using UART0 and my board's built-in UART-USB chip, but it only recognizes escape characters after I reset the board (I have to connect the board to my computer, then open a PuTTY terminal (the console will connect, but escape characters will be disabled), then press the RST button on my dev board to reconnect and enable escape characters). If I try PuTTY with the USB_JTAG or USB_CDC configuration, resetting the dev board disconnects the USB and ends the PuTTY session. I expect that if I disabled the call to Since I made this bug report I have seen the console work correctly in |
That is expected behavior, ESP will test the console on boot (as you later mentioned with the I am not sure what might be the issue that you are running into. We have tested this on multiple Windows computers (all Windows 11) and it works without any issues even in the VS Code terminal. It seems like an issue with your environment/console. The interactive console uses VT100 escape characters and the only thing that the monitor does regarding this is to send those characters as soon as it gets them from the chip. Here are a couple of suggestions to try:
|
Same behaviour on CMD; legacy mode is off. Apparently, VT100 escape sequences are not enabled by default on Windows 10 (they are on Windows 11, though), and it seems they have to be enabled separately for each terminal instance. I couldn't find any global setting that would permanently enable them. I even tried adding a registry key, but to no effect. https://stackoverflow.com/questions/16081639/how-to-use-vt100-code-in-windows |
@Smity, so did it start to work for you when you enabled VT100 escape sequences? |
Hi @Smity, I have an update regarding this issue. |
Checklist
How often does this bug occurs?
always
Expected behavior
Documentation states that esp-idf-monitor should support escape characters.
Actual behavior (suspected bug)
Using IDF 5.2.2 in VSCode. Flashing "Basic Console Example" (
esp_console_repl
) to an ESP32S3. I haven't made any changes to the example code, except for trying each of the USB_JTAG, USB_CDC, and UART interfaces. Each one reads and writes console just fine, but they all report "Your terminal application does not support escape sequences.".Error logs or terminal output
The text was updated successfully, but these errors were encountered: