Search found 2067 matches

by ESP_igrr
Mon Jul 24, 2023 6:20 am
Forum: ESP-BOX 中文讨论版
Topic: espbox lite使用squareline生成lvgl问题
Replies: 9
Views: 6816

Re: espbox lite使用squareline生成lvgl问题

You can also get the complete package from https://github.com/espressif/esp-bsp/re ... ine-latest — it is automatically updated for any new board.
by ESP_igrr
Sun Jul 23, 2023 6:53 pm
Forum: Hardware
Topic: Memory Structure of LX6 Processor and ESP32 Board
Replies: 14
Views: 3807

Re: Memory Structure of LX6 Processor and ESP32 Board

1. Is the Flash Memory (U3) of Fig-3 marked as **External Memory** in Fig-2? Yes, it is. 2. Is FreeRTOS firmware pre-installed in "Instruction ROM Memory" of Fig-1? Which core it is -- Core0 or Core1? It's not. FreeRTOS (plus every other part of the system: heap implementation, C library, periphera...
by ESP_igrr
Sun Jul 23, 2023 6:45 pm
Forum: ESP-IDF
Topic: version.txt file format ?
Replies: 8
Views: 3324

Re: version.txt file format ?

The ota update use image version i think, i didn't know there was app version and image version. How to "automate" image version ? I'm sorry, I can't understand this part. The line of code you are pointing to uses the "version" field of esp_app_desc_t structure. This field can be set in a variety o...
by ESP_igrr
Sat Jul 22, 2023 5:29 pm
Forum: ESP-IDF
Topic: Why does xQueueCreate doesn't use PSRAM?
Replies: 2
Views: 827

Re: Why does xQueueCreate doesn't use PSRAM?

It seems this change had been mentioned in the release notes of v5.1. To allocate a Freertos object in PSRAM, you have to first allocate memory for it with heap_caps_malloc(..., MALLOC_CAP_SPIRAM) and then use xQueueCreateStatic to initialize the object inside the allocated buffer. Here's an example...
by ESP_igrr
Sat Jul 22, 2023 12:28 pm
Forum: ESP-IDF
Topic: version.txt file format ?
Replies: 8
Views: 3324

Re: version.txt file format ?

Please try adding --version 2 after image_info command, then it should print the app metadata info (https://docs.espressif.com/projects/esp ... image-info)
by ESP_igrr
Fri Jul 21, 2023 8:03 pm
Forum: General Discussion
Topic: Command Line Interface for Programming EPS32
Replies: 2
Views: 1000

Re: Command Line Interface for Programming EPS32

Espflash (https://github.com/esp-rs/espflash) can also be built into a standalone binary.
by ESP_igrr
Wed Jul 19, 2023 6:09 am
Forum: Hardware
Topic: esp32s3 QR Register State Saving
Replies: 2
Views: 739

Re: esp32s3 QR Register State Saving

We perform lazy context switching, same as for the FPU: 1. When switching the tasks, the coprocessors (FPU and PIE) are disabled 2. If the new task never used FPU or PIE, there's nothing to do 3. If the new task does try to use FPU or PIE, this triggers a "coprocessor disabled" exception. The except...
by ESP_igrr
Wed Jul 19, 2023 6:01 am
Forum: ESP-IDF
Topic: Can't access core dump with flash encryption and custom partition table
Replies: 1
Views: 486

Re: Can't access core dump with flash encryption and custom partition table

I'm afraid in this case the host tool would be unable to decide the core dump, even if it used the correct partition table offset. Both the partition table and the core dump would be encrypted, and typically the encryption key is not known on the host side. If the scenario is to use core dumps in a ...
by ESP_igrr
Wed Jul 19, 2023 5:55 am
Forum: Documentation
Topic: App Image Format Documentation
Replies: 4
Views: 24489

Re: App Image Format Documentation

by ESP_igrr
Tue Jul 18, 2023 2:33 pm
Forum: ESP-IDF
Topic: Adding source folder to project
Replies: 5
Views: 1249

Re: Adding source folder to project

Try setting EXTRA_COMPONENT_DIRS to the parent folder of your component folder ("common"). (Or rather move "common" into a "mycomponents" folder and set the latter as a component dir.) I believe the intention is that an "EXTRA_COMPONENT_DIR", just like "components" in your project or the IDF, conta...