Search found 33 matches
- Thu Jan 16, 2025 7:57 pm
- Forum: ESP-IDF
- Topic: Move libmain bss into external ram?
- Replies: 2
- Views: 1295
Re: Move libmain bss into external ram?
https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/external-ram.html#external-ram-config-bss
Additional data can be moved from the internal BSS segment to external RAM by applying the macro EXT_RAM_BSS_ATTR to any static declaration (which is not initialized to a non-zero ...
- Thu Jan 16, 2025 5:24 pm
- Forum: ESP-IDF
- Topic: Move libmain bss into external ram?
- Replies: 2
- Views: 1295
Move libmain bss into external ram?
So does anyone know how to move the bss segment of a component (in this case main) into external ram? I seem to need to use a linker fragment, but not sure what extra directives or steps are needed, because I'm unfamiliar with the linker fragment.
Per-archive contributions to ELF file:
Archive ...
Per-archive contributions to ELF file:
Archive ...
- Mon Jan 13, 2025 4:41 pm
- Forum: ESP-IDF
- Topic: CPU_FREQ_MAX always held by rtos0 / rtos1 power management locks? And other oddities.
- Replies: 2
- Views: 1133
CPU_FREQ_MAX always held by rtos0 / rtos1 power management locks? And other oddities.
Hello,
Just wondering if this is the normal behaviour. We're trying to do frequency scaling to save some power, but noticed right off the bat that rtos0 and rtos1 both hold a CPU_FREQ_MAX power management lock, in what appears to be anytime they exit their idle hook.
Wouldn't that imply they ...
Just wondering if this is the normal behaviour. We're trying to do frequency scaling to save some power, but noticed right off the bat that rtos0 and rtos1 both hold a CPU_FREQ_MAX power management lock, in what appears to be anytime they exit their idle hook.
Wouldn't that imply they ...
- Sun Jan 12, 2025 4:26 pm
- Forum: ESP-IDF
- Topic: IRAM0 segment data does not fit
- Replies: 2
- Views: 1197
Re: IRAM0 segment data does not fit
You can use some of static DRAM as IRAM instead, see:
https://docs.espressif.com/projects/esp ... 1-for-iram
https://docs.espressif.com/projects/esp ... 1-for-iram
- Thu Dec 26, 2024 7:03 am
- Forum: ESP-ADF 中文讨论版
- Topic: A2DP/BLE coex 情况下 连接BLE的时候会造成系统重启
- Replies: 4
- Views: 50313
Re: A2DP/BLE coex 情况下 连接BLE的时候会造成系统重启
Thanks for your reply, we are now on 5.1.5 but still see it. I've updated the ticket with a working crashing example.
https://github.com/espressif/esp-idf/issues/13605
It needs to work 100% of the time, crashing is not an option for us.
https://github.com/espressif/esp-idf/issues/13605
It needs to work 100% of the time, crashing is not an option for us.
- Mon Dec 23, 2024 5:43 am
- Forum: General Discussion
- Topic: What would you like to see in The Next Chip?
- Replies: 468
- Views: 1082964
Re: What would you like to see in The Next Chip?
We really have no upgrade path with Espressif today...
I hate to admit it, but I agree. They upgrade one thing and remove another. It's slowly been turning into a Hodgepodge of micros.
The P4 had the best shot at having everything until they removed the WiFi. :roll:
I say just throw it all ...
- Wed Dec 18, 2024 7:12 pm
- Forum: General Discussion
- Topic: What would you like to see in The Next Chip?
- Replies: 468
- Views: 1082964
Re: What would you like to see in The Next Chip?
The ESP32 Pico V3 - 02 has been perfect for us... For the iteration we would love to see the same, but with a spec bump across the board. The ESP32-V3 is already a fantastic chip, and esp-idf is top notch.
- Dual Core, 320 + Mhz
- At least 768K total SRAM
- Hard FPU
- WiFi 6/7 on 2.4/5/6 ...
- Fri Dec 13, 2024 5:06 am
- Forum: General Discussion
- Topic: What would you like to see in The Next Chip?
- Replies: 468
- Views: 1082964
Re: What would you like to see in The Next Chip?
A true successor to the ESP32, in my humble 2.5 cents (inflation!), from the perspective of an audio system, after having gone through a couple of prototypes with ESP32 and/or ESP32-S3:
Keep the APLL, it gives a cleaner MCLK than ESP32-S3 does. This helps with signal-to-noise ratio on DACs that ...
- Fri Dec 13, 2024 5:01 am
- Forum: General Discussion
- Topic: What would you like to see in The Next Chip?
- Replies: 468
- Views: 1082964
Re: What would you like to see in The Next Chip?
The ESP32 Pico V3 - 02 has been perfect for us... For the iteration we would love to see the same, but with a spec bump across the board. The ESP32-V3 is already a fantastic chip, and esp-idf is top notch.
- Dual Core, 320 + Mhz
- At least 768K total SRAM
- Hard FPU
- WiFi 6/7 on 2.4/5/6 Ghz ...
- Dual Core, 320 + Mhz
- At least 768K total SRAM
- Hard FPU
- WiFi 6/7 on 2.4/5/6 Ghz ...
- Sun Oct 20, 2024 5:54 pm
- Forum: ESP-IDF
- Topic: Interrupts in light sleep?
- Replies: 0
- Views: 959
Interrupts in light sleep?
Hey all,
So it seems like interrupts while in light sleep are a no go, because the CPU's (ESP32 dual core) are clock gated. Simply put, the cores don't receive clock pules.
The only problem is we have an interrupt that is short and unlatched. It's just 2.5 uS in length. I tried to attach a light ...
So it seems like interrupts while in light sleep are a no go, because the CPU's (ESP32 dual core) are clock gated. Simply put, the cores don't receive clock pules.
The only problem is we have an interrupt that is short and unlatched. It's just 2.5 uS in length. I tried to attach a light ...