Search found 9005 matches

by ESP_Sprite
Fri Apr 12, 2024 2:33 am
Forum: ESP32 Arduino
Topic: Protect counter variable by portENTER_CRITICAL vs <atomic>
Replies: 5
Views: 369

Re: Protect counter variable by portENTER_CRITICAL vs <atomic>

Atomics are supported, and as long as you use a 32-bit atomic, access is a lot faster as the hardware will take care of atomicity rather than needing code for critical sections.
by ESP_Sprite
Fri Apr 12, 2024 2:28 am
Forum: ESP-IDF
Topic: Tsens ulp instruction
Replies: 4
Views: 2288

Re: Tsens ulp instruction

You're replying to a 4-year old thread; I was talking about the 'original' ESP32 (no -S or -C suffix). I think it's indeed supported again on later chips. I guess we didn't bother to implement it in the ULP toolchain yet, though.
by ESP_Sprite
Fri Apr 12, 2024 2:27 am
Forum: ESP-IDF
Topic: FreeRTOS Task causes TWDT triggered
Replies: 14
Views: 1607

Re: FreeRTOS Task causes TWDT triggered

Where and how is 'var' defined? You sure it doesn't go out of scope?
by ESP_Sprite
Fri Apr 12, 2024 2:25 am
Forum: ESP-IDF
Topic: API to access last exception details?
Replies: 1
Views: 188

Re: API to access last exception details?

You probably want to look at core dumps . Basically, you create a partition for a core dump, and whenever the ESP32 crashes, it writes relevant data there and reboots. After that, you can detect a coredump was created and do whatever with it; for instance, for systems I maintain, it uploads them via...
by ESP_Sprite
Fri Apr 12, 2024 2:21 am
Forum: Hardware
Topic: ESP32-S3 Flash Download Tool Error: NO XMC flash detected!
Replies: 2
Views: 333

Re: ESP32-S3 Flash Download Tool Error: NO XMC flash detected!

They have flash, but it's not necessarily manufactured by XMC.
by ESP_Sprite
Fri Apr 12, 2024 2:19 am
Forum: General Discussion
Topic: Download from S3 bucket
Replies: 3
Views: 199

Re: Download from S3 bucket

Code: Select all

int buffer_size = snprintf(NULL, 0, "%d", content_length);
Can you explain this line?
by ESP_Sprite
Thu Apr 11, 2024 9:36 am
Forum: General Discussion
Topic: Connect j-link to ESP32S3 chip
Replies: 1
Views: 218

Re: Connect j-link to ESP32S3 chip

I cannot comment on any current activities / plans wrt cooperating with companies (mostly because I have no clue but also because I'm not sure if that's public), but we've always been forthcoming in documenting our stuff (both in the form as technical reference manuals as well as source code, e.g. t...
by ESP_Sprite
Thu Apr 11, 2024 9:31 am
Forum: General Discussion
Topic: [IoT] ESP Product Selector IoT Espressif
Replies: 3
Views: 4205

Re: [IoT] ESP Product Selector IoT Espressif

My colleagues are interested in RISC-V. Unfortunately, the product selector doesn't appear to let you filter for the CPU type (Xtensa or RISC-V). For most people, that is pretty uninteresting as it's abstracted away by any SDK you'd use it with. FWIW, at this point the C2, C3, C6, H2 and the future...
by ESP_Sprite
Thu Apr 11, 2024 12:21 am
Forum: ESP-AT
Topic: Flashing esp-at firmware via esp-prog
Replies: 1
Views: 195

Re: Flashing esp-at firmware via esp-prog

Did you copy 60-openocd.rules to your udev rules directory?
by ESP_Sprite
Thu Apr 11, 2024 12:13 am
Forum: Report Bugs
Topic: MQTT project linker error.
Replies: 3
Views: 630

Re: MQTT project linker error.

I tried to build the same project with eclipse, according to your instructions, but faced the similar linker problems. Are you using another toolchain than gcc? If you post that error here, you may have a better chance of us being able to solve it. Could you please tell me the documents names ( the...