Search found 2067 matches

by ESP_igrr
Mon Jul 24, 2023 10:53 pm
Forum: IDEs for ESP-IDF
Topic: debugging esp32-s3-DevKitC-1 in eclipse not working
Replies: 1
Views: 3301

Re: debugging esp32-s3-DevKitC-1 in eclipse not working

Hi Patrick, The actual error is here: Error: esp_usb_jtag: could not find or open device! Basically, OpenOCD is unable to find the device with VID 0x303a and PID 0x1001 in the system. Please check Device Manager and see if you have "USB JTAG/Serial Debug Unit" device with this VID and PID. If you do...
by ESP_igrr
Mon Jul 24, 2023 10:47 pm
Forum: ESP-IDF
Topic: version.txt file format ?
Replies: 8
Views: 2872

Re: version.txt file format ?

ESP32-S3 image header ===================== Image version: 1 This is just a version of the application image format . It is not related to the version of your application. It doesn't change when you make a new version of the application. It would only change if Espressif decided to modify the forma...
by ESP_igrr
Mon Jul 24, 2023 9:06 pm
Forum: ESP-IDF
Topic: version.txt file format ?
Replies: 8
Views: 2872

Re: version.txt file format ?

Sorry, still can't understand what is the "image version" you are mentioning. Could you explain what is the difference between "app version" and "image version"? (As far as esp-idf is concerned, there is only "app version". Hence I am confused about the term "image version".) Regarding automation: I...
by ESP_igrr
Mon Jul 24, 2023 3:47 pm
Forum: ESP-BOX
Topic: component manager sync problem with usb host
Replies: 1
Views: 23995

Re: component manager sync problem with usb host

Perhaps you are trying to build the project for one of the chips which this component doesn't support? Could you check the value of CONFIG_IDF_TARGET you have in your sdkconfig file?
by ESP_igrr
Mon Jul 24, 2023 3:42 pm
Forum: Hardware
Topic: esp32-s3-wroom-1u-n8r8 factory settings of eFuses
Replies: 3
Views: 893

Re: esp32-s3-wroom-1u-n8r8 factory settings of eFuses

Hi Jonathan2892,

These two modules will have the same eFuse settings (other than different unique IDs). They only differ in flash size, which will get detected at run time.
by ESP_igrr
Mon Jul 24, 2023 3:40 pm
Forum: General Discussion
Topic: ESP32-S3 partition 0 invalid magic number
Replies: 2
Views: 750

Re: ESP32-S3 partition 0 invalid magic number

Just something to check: there seems to be an inconsistency in partition table offset in these two commands: 5. espsecure.exe encrypt_flash_data --aes_xts --keyfile key.bin --address 0x80000 --output partitions-encrypted.bin partitions.bin 6. esptool.exe --chip esp32s3 --baud 921600 --before default...
by ESP_igrr
Mon Jul 24, 2023 3:32 pm
Forum: ESP-IDF
Topic: Cmake issues
Replies: 4
Views: 739

Re: Cmake issues

I don't have the rest of the project to check if this works, but it should be something along these lines: idf_component_register( SRCS "main.cpp" "widgets/tux_panel.c" "images/dev_bg.c" # Status icons like BLE "fonts/font_fa_14.c" # Weather icons like clouds etc "fonts/font_fa_weather_42.c" # Motot...
by ESP_igrr
Mon Jul 24, 2023 2:21 pm
Forum: ESP-IDF
Topic: Cmake issues
Replies: 4
Views: 739

Re: Cmake issues

If CMakeLists.txt in ui subdirectory is declaring a library (using "add_library(your-library-name)"), then you can use "target_link_libraries(your-library-name PRIVATE idf::main)" to add a dependency of "ui" on "main". Note that cyclic dependencies may require setting LINK_INTERFACE_MULTIPLICITY pro...
by ESP_igrr
Mon Jul 24, 2023 10:56 am
Forum: ESP-IDF
Topic: ESP32-C3 CoreMark Results
Replies: 2
Views: 868

Re: ESP32-C3 CoreMark Results

Hi. We are trying to measure coremark on esp32-c3. We have got score of 386 with -O3 which significantly less than the one marked in the datasheet (407.22). Does anyone know which parameters are selected in menuconfig in the datasheet benchmark? Is there a github repo with the settings of the datas...
by ESP_igrr
Mon Jul 24, 2023 8:08 am
Forum: ESP-IDF
Topic: Panic when writing flash and UART interrupt - both IRAM_ATTR and DRAM_ATTR used
Replies: 4
Views: 987

Re: Panic when writing flash and UART interrupt - both IRAM_ATTR and DRAM_ATTR used

Hi Mike, when the system panics, there should be a register dump and backtrace printed (see the docs for more information). IDF monitor will decode the addresses in the backtrace, converting them into function names and line numbers. You can use this information to find the function which is not in ...