Search found 4 matches

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

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 partiti...
by VinayDand
Sun Oct 08, 2023 2:28 pm
Forum: Hardware
Topic: factory firmware for ESP32-S3-LCD-EV-Board
Replies: 1
Views: 1427

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: 1427

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: 1319

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 with deprecat...