Search found 2 matches

by EricVs
Mon Aug 05, 2024 12:32 pm
Forum: ESP-IDF
Topic: Wifi-mesh. Can I send parallel message to different nodes?
Replies: 1
Views: 343

Re: Wifi-mesh. Can I send parallel message to different nodes?

According to the API documentation esp_mesh_send() is not reentrant. You can use it in multiple tasks, with e.g. mutex, but then it will still be sequential. So, I would say the answer is 'no'.
by EricVs
Thu Oct 13, 2022 5:26 pm
Forum: ESP-IDF
Topic: ESP32-S3 PSRAM issue
Replies: 2
Views: 2194

Re: ESP32-S3 PSRAM issue

I have been trying a similar thing on the ESP32-S3-WROOM-1U P1N8R8, using IDF 4.4.2 and I confirm the issue. My conclusion is: - the documentation seems incorrect : the PSRAM is not mapped at 0x3D000000 - it is mapped at 0x3E000000 - size(PSRAM) = 0x3D800000 in my case, works fine like that :) - the...