Search found 9042 matches

by ESP_Sprite
Mon Apr 04, 2022 9:04 am
Forum: Documentation
Topic: ESP32-C3 Datasheet Pulse Counter
Replies: 3
Views: 6073

Re: ESP32-C3 Datasheet Pulse Counter

Thanks for reporting this. I think there's normally a link in the PDF where you can report an issue, but I've taken the liberty to file an internal ticket for you; we'll likely have this fixed in the next revision of the datasheet.
by ESP_Sprite
Mon Apr 04, 2022 9:01 am
Forum: ESP32 Arduino
Topic: No COM port detected on Custom PCB
Replies: 3
Views: 2191

Re: No COM port detected on Custom PCB

If you don't have a COM-port show up, the issue is almost certainly between your PC and the CP2102.
by ESP_Sprite
Mon Apr 04, 2022 8:50 am
Forum: General Discussion
Topic: SpifFS, newlib, logging and fprintf
Replies: 3
Views: 2765

Re: SpifFS, newlib, logging and fprintf

I'm guessing the fact that you're writing to spiffs is the culprit... I can't imagine that that filesystem is intended for high writes like you do, at some point you're just filling up the journal and the filesystem needs to collect garbage.
by ESP_Sprite
Sat Apr 02, 2022 8:17 am
Forum: General Discussion
Topic: ESP32-WROOM-32 Module
Replies: 2
Views: 1783

Re: ESP32-WROOM-32 Module

What SDK do you use? If esp-idf, simply run 'idf.py flash'.
by ESP_Sprite
Sat Apr 02, 2022 1:39 am
Forum: General Discussion
Topic: Connecting multiple ESP32 | ESP-NOW | WiFi | RPi
Replies: 4
Views: 3070

Re: Connecting multiple ESP32 | ESP-NOW | WiFi | RPi

The thing with ESP32s only having one radio is true, indeed, and for some things like BT/BLE, coexistence means the radio needs to switch between BT and WiFi channels. However, WiFi and ESP-Now both use the same protocol, and if you use the same channel for both, there's no switching necessary.
by ESP_Sprite
Sat Apr 02, 2022 1:27 am
Forum: ESP-IDF
Topic: StoreProhibited error when equating two pointers
Replies: 3
Views: 1615

Re: StoreProhibited error when equating two pointers

My point is that you're allocating about 48K of RAM, which is a non-trivial amount. Malloc will fail if you do not have that amount of free RAM and will return a NULL pointer. That guru meditation has all the hallmarks of you trying to dereference a null pointer (specifically EXCVADDR: 0x00000000). ...
by ESP_Sprite
Sat Apr 02, 2022 1:21 am
Forum: General Discussion
Topic: Initial flash needed for download boot over internal USB?
Replies: 5
Views: 4422

Re: Initial flash needed for download boot over internal USB?

Yes, given that you put the chip into download mode by starting with GPIO0 low.
by ESP_Sprite
Fri Apr 01, 2022 2:58 pm
Forum: General Discussion
Topic: Initial flash needed for download boot over internal USB?
Replies: 5
Views: 4422

Re: Initial flash needed for download boot over internal USB?

Yes, you can; the ROM contains a driver that can flash the device over USB. You do need a way to be able to put it into download mode by grounding GPIO0, though.
by ESP_Sprite
Fri Apr 01, 2022 2:56 pm
Forum: General Discussion
Topic: Connecting multiple ESP32 | ESP-NOW | WiFi | RPi
Replies: 4
Views: 3070

Re: Connecting multiple ESP32 | ESP-NOW | WiFi | RPi

neross wrote:
Fri Apr 01, 2022 11:23 am
But this means that I would need to use both ESP-NOW, between the ESP32s, and WiFi to connect to the RPi, which is not really possible..
Where did you get that from?