FabGL icon indicating copy to clipboard operation
FabGL copied to clipboard

FabGL Serial/Network Terminal question

Open guidol70 opened this issue 3 years ago • 0 comments

When connecting with the FabGL serial Terminal (via serial) to a ESP32 which runs ESP32forth I get a messed up stairways output because of problem with CR&LF, which I didnt get on the FabGL Network Terminal when connected via Telnet.

On PC/puTTY this "problem" is handled with these options: puTTY_CRLF

On your URL in Example 1 (there in void loop) I did found such a handling as source:

      case 0x0D:       // CR  -> CR + LF
        Terminal.write("\r\n");
        break;

but in the serial terminal the void loop has only:

                  // the job is done using UART interrupts
                  vTaskDelete(NULL);

Is there any chance to get this conversion also in/enabled in this source?

Thanks for the information in advance ;)

guidol70 avatar Dec 11 '21 20:12 guidol70