Dror Gluska

Results 6 comments of Dror Gluska

The J/K tip worked but when searching in menus its not very effective which forced me to find the solution. Unmark this checkbox and restart the terminals in vscode settings:...

You can change the SD card pins in [sdmount.c](https://github.com/drorgl/esp32-tinyemu/blob/ee5e2443c256fcb71a2cb3ae4393ff3e1e040d98/lib/sdmount/sd_mount.c). The display on ESP32 is UART you can find it in [uartconsole.h](https://github.com/drorgl/esp32-tinyemu/blob/ee5e2443c256fcb71a2cb3ae4393ff3e1e040d98/lib/uartconsole/uartconsole.h) based. You'll need to use a line writer with...

The text output is handled in uartconsole.h on ESP32. The USB interface non existant on ESP32, only ESP32-S2 and up. unless you mean the USB-UART which is connected to the...

You're trying to build a native executable (i.e. Windows/Linux/Mac), build the esp32 env. ```bash pio run -e esp32 -t upload ```

I've also experienced non-ideal performance with lwip. Except for the amount of malloc/free it seems also that many transfers are not used to actually transfer data. most likely the way...

Hi @mantriyogesh , 1. it was necessary, otherwise the ESP would send garbage, but the code has changed since so perhaps its not needed anymore. 2. The code for handling...