Search found 9043 matches

by ESP_Sprite
Fri May 05, 2023 1:43 am
Forum: Hardware
Topic: Custom PCB ESP32 flash
Replies: 4
Views: 1509

Re: Custom PCB ESP32 flash

Odd. Do you see this behavior on multiple PCBs or only one?
by ESP_Sprite
Fri May 05, 2023 1:36 am
Forum: General Discussion
Topic: Functionality of the ESP32-C3-MINI-1 module (Wi-Fi and Bluetooth together)
Replies: 1
Views: 865

Re: Functionality of the ESP32-C3-MINI-1 module (Wi-Fi and Bluetooth together)

You can even do BLE and WiFi simultaneously if you want. I'm not sure if we still have WiFi Direct functionality, but it'll be of limited use anyway as the C3 can only 2.4GHz WiFi.
by ESP_Sprite
Thu May 04, 2023 6:02 am
Forum: General Discussion
Topic: The error is coming ctxt is used initialized for sending. data to phone
Replies: 9
Views: 2096

Re: The error is coming ctxt is used initialized for sending. data to phone

No, you have not. ctx is not a sane value (as it comes from the stack and as such is uninitialized) and ctx->om=0 will crash as the processor will try to dereference the ctx pointer, which contains a random address because it's uninitialized, and write 0 there.
by ESP_Sprite
Thu May 04, 2023 4:55 am
Forum: ESP-IDF
Topic: Can the component manager help to revive old esp-idf projects?
Replies: 4
Views: 1234

Re: Can the component manager help to revive old esp-idf projects?

Yeah, sorry, especially since 3.3 is not supported anymore, getting it to work is somewhat of an exercise in archeology... you might be better off porting to v4.4 or even v5.
by ESP_Sprite
Thu May 04, 2023 3:54 am
Forum: ESP-IDF
Topic: BLE scan, automatic light sleep and GPIO wakeup
Replies: 2
Views: 1298

Re: BLE scan, automatic light sleep and GPIO wakeup

If you can whittle this down to a small example that reproduces this, can you perhaps post an issue on the ESP-IDF Github? This sounds like something that our BT people need to take look at, and that's an easier way to make sure it reaches them.
by ESP_Sprite
Thu May 04, 2023 3:52 am
Forum: ESP-IDF
Topic: Send a 7kb bitstream using RMT.
Replies: 1
Views: 441

Re: Send a 7kb bitstream using RMT.

What chip? Can you post your code? Can you define 'delays' a bit better?
by ESP_Sprite
Thu May 04, 2023 3:50 am
Forum: ESP-IDF
Topic: External Interrupt Delay
Replies: 4
Views: 1477

Re: External Interrupt Delay

So you're not counting the interrupt delay; you're counting the delay before your task gets scheduled. This depends on a bunch of things: mainly other interrupts scheduled and other tasks running. Is there anything else that your CPU is doing (WiFi, BT, writing to flash, ...)? Also, what chip is thi...
by ESP_Sprite
Thu May 04, 2023 3:39 am
Forum: Hardware
Topic: ESP32-S3: Unable to communicate over UART when adding bypass capacitors
Replies: 3
Views: 1052

Re: ESP32-S3: Unable to communicate over UART when adding bypass capacitors

Sounds like the bypass capacitors somehow result in a dead short somehow. Can you measure the voltage over them?
by ESP_Sprite
Thu May 04, 2023 3:38 am
Forum: Hardware
Topic: Can I access the low-level RF encoder/decoder on the ESP32-C3?
Replies: 1
Views: 752

Re: Can I access the low-level RF encoder/decoder on the ESP32-C3?

No, sorry. You could try esp-now as an alternative, perhaps that has low enough latency.
by ESP_Sprite
Thu May 04, 2023 3:36 am
Forum: General Discussion
Topic: The error is coming ctxt is used initialized for sending. data to phone
Replies: 9
Views: 2096

Re: The error is coming ctxt is used initialized for sending. data to phone

So what is your question? The error is exactly as the compiler says: you're using ctxt without initializing it (and then the device_read dereferences it, so even if this compiles, it'll crash the esp32)