sdkconfig.usb: no such file or directory #19450
|
Sorry if wrong category lib/micropython is a submodule pointed at this repo so i through someone was changed at your side |
Replies: 1 comment 1 reply
|
This comes from the custom board config in The MicroPython submodule is pinned to 1.27.0 ( The T-Deck config still contains this in boards/sdkconfig.usbRemove that line from the The permanent fix belongs in |
This comes from the custom board config in
lvgl_micropython, not from a missing submodule checkout.The MicroPython submodule is pinned to 1.27.0 (
78ff170). Before that release, MicroPython commit4f193132removedports/esp32/boards/sdkconfig.usbwhile switching away fromesp_tinyusb. The upstream ESP32-S2/S3 board configs removed the same entry at that point.The T-Deck config still contains this in
display_configs/LilyGo-TDeck/mpconfigboard.cmake:boards/sdkconfig.usbRemove that line from the
SDKCONFIG_DEFAULTSlist. The board header already enables USB CDC withMICROPY_HW_USB_CDC (1), and current MicroPython provides the default USB VID/PID and descriptor values fromports/esp32/mpcon…