Search found 9043 matches

by ESP_Sprite
Sat Dec 09, 2023 4:24 am
Forum: ESP-IDF
Topic: Large ELF file when building example. Expected?
Replies: 2
Views: 3253

Re: Large ELF file when building example. Expected?

The ELF file contains all the results from the compilation process - not only the code but also debug symbols, filenames and lots of other stuff that is not needed for execution. You want to look at the generated .bin file - that is what actually gets flashed to the ESP.
by ESP_Sprite
Sat Dec 09, 2023 4:20 am
Forum: General Discussion
Topic: Is it possible to deactivade PSRAM on ESP-PICO-V3-02 ?
Replies: 3
Views: 7452

Re: Is it possible to deactivade PSRAM on ESP-PICO-V3-02 ?

I'd see it the other way around: if the pins are output the ESP32 can control what is on them and make sure it never activates the PSRAM.
by ESP_Sprite
Fri Dec 08, 2023 5:29 am
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 128142

Re: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

CCooper1971 wrote:
Thu Dec 07, 2023 4:30 pm
Not sure how to do that specifically.
You probably want https://github.com/me-no-dev/EspExceptionDecoder .
by ESP_Sprite
Fri Dec 08, 2023 5:21 am
Forum: ESP-IDF
Topic: ESP32s3 Disable JTAG/Serial RTS Reset
Replies: 2
Views: 1753

Re: ESP32s3 Disable JTAG/Serial RTS Reset

Sorry, no. Later versions of the USB-serial-JTAG peripheral (the one in the C6 and iirc H2) have a function that can do that, but the S3 doesn't.
by ESP_Sprite
Fri Dec 08, 2023 5:18 am
Forum: ESP-IDF
Topic: ESP32-S3: multi devices with usb host library
Replies: 13
Views: 12555

Re: ESP32-S3: multi devices with usb host library

Or you can read the USB specification docs; it's an open specification so no need to reverse-engineer.
by ESP_Sprite
Fri Dec 08, 2023 5:12 am
Forum: General Discussion
Topic: Is it possible to deactivade PSRAM on ESP-PICO-V3-02 ?
Replies: 3
Views: 7452

Re: Is it possible to deactivade PSRAM on ESP-PICO-V3-02 ?

Kinda, with care? Those pins are used for the CS and CLK of the internal PSRAM. If you make CS low and pulse CLK, it'll sample any values that happen to be on the data pin (which is shared with flash, so you can control it) and interpret that as a command. That command can make the PSRAM output data...
by ESP_Sprite
Thu Dec 07, 2023 8:35 am
Forum: Hardware
Topic: ESP32-C3-MINI-1
Replies: 6
Views: 19011

Re: ESP32-C3-MINI-1

rodrik5000 wrote:
Thu Dec 07, 2023 1:55 am
Hi, Thank you for the reply, I need 1k-2K pcs. minimum every month, At command firmware downloaded. Thank you
As I said, please contact sales@espressif.com for this.
by ESP_Sprite
Thu Dec 07, 2023 8:32 am
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 128142

Re: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

Okay. Can you decode that backtrace?