italicmew

Results 10 comments of italicmew

Running the same thing on a normal esp-32 seems to work fine with exactly same setup. ESP32 flash logs ```log cargo espflash flash --monitor [2024-03-25T23:32:46Z INFO ] Detected 2 serial...

Hey @SergioGasquez, thanks for the quick reply! 1 - In the attempt mentioned above, I pressed Ctrl + R, waited briefly, manually reset the board using the RESET button, and...

@Vollbrecht Are you referring to [this esp usb doc](https://docs.espressif.com/projects/esp-idf/en/stable/esp32s2/api-guides/usb-otg-console.html), right? I was able to make the `esp-idf-template` work setting `CONFIG_ESP_CONSOLE_USB_CDC=y` in the `sdkconfig.defaults` file. ```terminal cargo espflash monitor -b no-reset...

After spending some time on this, I believe I've grasped the core of the issue. The USB-CDC initialization occurs in the bootloader if `CONFIG_ESP_CONSOLE_USB_CDC` is set, as seen [here](https://github.com/espressif/esp-idf/blob/be06a6f5ffe36f9554cfc91fe2036e0fc85fea60/components/bootloader_support/src/bootloader_console.c#L113). It's...

Alright, I've decided to take a more proactive approach and have connected a USB-Serial adapter to the UART0 pins. As expected, all the console logs that were meant to be...

@SergioGasquez Is there any special steps I need to take to compile the bootloader from esp-idf? https://github.com/esp-rs/espflash/tree/main/espflash/resources - you mentioned that it's compiled by hand

@Vollbrecht Yup, I'm using the `esp-idf-template` - I compiled and generated the bootloader.bin and instructed `espflash` to use it with `--bootloader path/to/esp-idf-template/../bootloader.bin`. But that failed, see my [previous](https://github.com/esp-rs/espflash/issues/621#issuecomment-2028771631) comment. Should...

Same result as before with this command: ``` cargo espflash flash -b no-reset --bootloader /Users/tiburcio/Documents/workspace/esp-idf-template/build/bootloader/bootloader.bin --no-stub -m dio -s 4mb -f 80mhz --partition-table /Users/tiburcio/Documents/workspace/esp-idf-template/build/partition_table/partition-table.bin ``` Output from UART0: ``` ESP-ROM:esp32s2-rc4-20191025...

I've been consistently using `--no-stub` in all my espflash flash commands, I'm aware of that issue with the stub. However, the challenge is the inability to access console output via...

Side note: Quick search on google shows a mixture of devBoards. Most of my results are boards without usb-serial converts. (search for esp32-s2)