Search found 12 matches

by asargent
Tue Feb 04, 2025 11:22 pm
Forum: ESP-IDF
Topic: Getting linker error when trying to build with custom eFuse table.
Replies: 4
Views: 829

Re: Getting linker error when trying to build with custom eFuse table.

By shuffling around the location of things so that I could build the table in the same component that I was using it, I was able to make it work. Obvious now that I figured it out ;)
by asargent
Tue Feb 04, 2025 7:47 pm
Forum: ESP-IDF
Topic: Getting linker error when trying to build with custom eFuse table.
Replies: 4
Views: 829

Re: Getting linker error when trying to build with custom eFuse table.

The CMakeLists.txt under main is this:

idf_component_register(SRCS "main.c"
"esp_efuse_custom_table.c"
INCLUDE_DIRS "." "include"
REQUIRES nvs_flash mqtt bt esp_wifi driver mainApp master efuse)
by asargent
Tue Feb 04, 2025 4:57 pm
Forum: ESP-IDF
Topic: Getting linker error when trying to build with custom eFuse table.
Replies: 4
Views: 829

Re: Getting linker error when trying to build with custom eFuse table.

Here are additional files I was unable to upload in original post
by asargent
Tue Feb 04, 2025 4:56 pm
Forum: ESP-IDF
Topic: Getting linker error when trying to build with custom eFuse table.
Replies: 4
Views: 829

Getting linker error when trying to build with custom eFuse table.

Getting linker error when trying to build with custom eFuse table. The table source files generate and the compiler does not complain about the efuse field variable. The make file has been updated to include the table .c file. What am I missing?
by asargent
Fri Oct 25, 2024 3:25 pm
Forum: ESP-IDF
Topic: Access to PSRAM on ESP32 3 causes asserts
Replies: 10
Views: 2952

Re: Access to PSRAM on ESP32 3 causes asserts

Found issue. There was a typo in GPIO config that was initializing GPIO_33 inadvertently. All is working now!!!! For those looking for solution to similar issue. CHECK ALL THE GPIO for the PSRAM!!!
by asargent
Wed Oct 23, 2024 1:48 pm
Forum: ESP-IDF
Topic: Access to PSRAM on ESP32 3 causes asserts
Replies: 10
Views: 2952

Re: Access to PSRAM on ESP32 3 causes asserts

Thank you for cleaning up my long config post with the codebox. Apologies for not doing that. I just tried both 40 and 80 speeds for flash and PSRAM with no change. I have tried on a second board as well with the same results. I am wondering if I have some configuration wrong? The boot shows: I (278...
by asargent
Wed Oct 23, 2024 1:21 pm
Forum: ESP-IDF
Topic: Access to PSRAM on ESP32 3 causes asserts
Replies: 10
Views: 2952

Re: Access to PSRAM on ESP32 3 causes asserts

This is on an ESP32-S3 N8R8 Dev Kit (YD-ESP32-23 2022-V1.3) with ESP32-S3-WROOM-1.
by asargent
Tue Oct 22, 2024 4:51 pm
Forum: ESP-IDF
Topic: Access to PSRAM on ESP32 3 causes asserts
Replies: 10
Views: 2952

Re: Access to PSRAM on ESP32 3 causes asserts

It appears on further testing that the panics are happening upon led_strip_refresh as well as ESP_LOGx calls after the PSRAM buffer is read or written. Seems like any serial communications after PSRAM access causes the issue? (BTW, tried both SPI2_HOST and SPI3_HOST for the SPI display with the same...
by asargent
Tue Oct 22, 2024 12:36 pm
Forum: ESP-IDF
Topic: Access to PSRAM on ESP32 3 causes asserts
Replies: 10
Views: 2952

Re: Access to PSRAM on ESP32 3 causes asserts

And the second part as well as the sdkconfig.defaults at the end: # Partition API Configuration # # end of Partition API Configuration # # PHY # CONFIG_ESP_PHY_ENABLED=y CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y # CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set CONFIG_ESP_PHY_MAX_WIFI_TX_POWER=...
by asargent
Tue Oct 22, 2024 12:34 pm
Forum: ESP-IDF
Topic: Access to PSRAM on ESP32 3 causes asserts
Replies: 10
Views: 2952

Re: Access to PSRAM on ESP32 3 causes asserts

The sdkconfig configuration is as follows (first half since the BB won't let me attach it as a file and won't let me put whole thing): # # Automatically generated file. DO NOT EDIT. # Espressif IoT Development Framework (ESP-IDF) 5.4.0 Project Configuration # CONFIG_SOC_MPU_MIN_REGION_SIZE=0x2000000...