Search found 8 matches

by VinayDand
Tue Oct 21, 2025 10:27 am
Forum: ESP-IDF
Topic: Does PSRAM setup affect Chip Startup Time optimization
Replies: 2
Views: 622

Re: Does PSRAM setup affect Chip Startup Time optimization

CONFIG_SPIRAM_FETCH_INSTRUCTIONS=y
->
If enabled, instructions in flash will be moved into PSRAM on startup.
Copying all application code from flash to PSRAM is bound to take a while.
That makes sense.
Thanks for the clarification.
by VinayDand
Sun Oct 19, 2025 3:00 pm
Forum: ESP-IDF
Topic: Does PSRAM setup affect Chip Startup Time optimization
Replies: 2
Views: 622

Does PSRAM setup affect Chip Startup Time optimization

Referring to
https://docs.espressif.com/projects/esp-techpedia/en/latest/esp-friends/advanced-development/performance/reduce-boot-time.html

On our ESP-32-S3R8 board running @ 240 MHz CPU clock.
We can achieve a reduced boot time of around 40mS.

But as soon as we enable PSRAM in sdkconfig,
boot ...
by VinayDand
Fri Apr 11, 2025 10:44 am
Forum: General Discussion
Topic: What is ""Release mode" in ESP-IDF context
Replies: 1
Views: 66

What is ""Release mode" in ESP-IDF context

Going through documentation for ESP32, in security topic, came across the sentence:

"For production use, flash encryption should be enabled in the "Release" mode only."

I would like to know what is meant by "Release" mode.
Is it meant as oppose to debug mode?
But ESP-IDF does not have separate ...
by VinayDand
Fri Dec 20, 2024 8:09 am
Forum: ESP-IDF
Topic: NVS access issue when app size >8MB and PSRAM enabled
Replies: 6
Views: 4879

Re: NVS access issue when app size >8MB and PSRAM enabled

Thanks for the suggestions and verifying our code at your end (@ESP_rrtandler).

We finally nailed down the issue at our end.
We were using ESP-IDF version 5.0.1
After upgrading to version ESP-IDF 5.3.1 it works.
We get the NVS access correctly even with app > 14MB and PSRAM enabled

We will ...
by VinayDand
Sat Nov 23, 2024 9:02 am
Forum: ESP-IDF
Topic: NVS access issue when app size >8MB and PSRAM enabled
Replies: 6
Views: 4879

NVS access issue when app size >8MB and PSRAM enabled

In the project ESP32-S3R8 with 8MB of PSRAM and external 16MB of Flash is used.

We use custom partition table to have a small NVS partition and a large App partition (15Mb) and no OTA partition .

Project works when App size is less than 8MB and PSRAM is enabled. No error in accessing the NVS ...
by VinayDand
Sun Oct 08, 2023 2:28 pm
Forum: Hardware
Topic: factory firmware for ESP32-S3-LCD-EV-Board
Replies: 1
Views: 1875

Re: factory firmware for ESP32-S3-LCD-EV-Board

Found the bin file on espressif github space

under
\esp-dev-kits\esp32-s3-lcd-ev-board\factory\bin

using this I can reflash the esp32-se-lcd-ev-board again back to factory dispatched condition
by VinayDand
Thu Oct 05, 2023 5:49 am
Forum: Hardware
Topic: factory firmware for ESP32-S3-LCD-EV-Board
Replies: 1
Views: 1875

factory firmware for ESP32-S3-LCD-EV-Board

Hello,

We have got the ESP32-S3-LCD-EV-Board with 480 x 480 TFT sub board 2.
Where to get the factory installed demo programs for reflashing them.

Could not locate them on Espressif Github site.

Any pointer will be appreciated.

Best Regards,
Vinay
by VinayDand
Fri Jun 24, 2022 7:14 am
Forum: ESP-IDF
Topic: Parameter to pass for ADC reference routing to GPIO
Replies: 0
Views: 1629

Parameter to pass for ADC reference routing to GPIO

Hello,

On ESP32 module,
following code fails

esp_err_t status = adc_vref_to_gpio(ADC_UNIT_2, ADC2_CHANNEL_9);
if (status == ESP_OK) {
printf("v_ref routed to GPIO\n");
} else {
printf("failed to route v_ref\n");
}

But if we replace
adc_vref_to_gpio (ADC_UNIT_2, ADC2_CHANNEL_9) function ...

Go to advanced search