Search found 9031 matches

by ESP_Sprite
Tue Apr 23, 2024 7:25 am
Forum: ESP32 Arduino
Topic: ESP 32 Factory reset with only board?
Replies: 1
Views: 60

Re: ESP 32 Factory reset with only board?

That's an issue between the USB-serial chip and your PC, the ESP32 doesn't have anything to do with this and 'factory resetting' won't solve your problem. I don't know enough about Windows drivers to say more; perhaps you need to reinstall the driver or something?
by ESP_Sprite
Tue Apr 23, 2024 12:51 am
Forum: ESP-IDF
Topic: Raw radio access?
Replies: 1
Views: 95

Re: Raw radio access?

I think that's all part of the lower level MAC/PHY code, and we haven't open-sourced or publicly documented that.
by ESP_Sprite
Tue Apr 23, 2024 12:49 am
Forum: Hardware
Topic: ESP32-C6 - Sketch size too large when using both Wifi & BLE libraries
Replies: 1
Views: 90

Re: ESP32-C6 - Sketch size too large when using both Wifi & BLE libraries

You're likely runnning into issues wrt how the partitions on the chip are defined. In Arduino, you can probably change that under Tools > Partition scheme.
by ESP_Sprite
Tue Apr 23, 2024 12:42 am
Forum: General Discussion
Topic: PCB review
Replies: 2
Views: 152

Re: PCB review

Fwiw, you could also move over to newer chips like the ESP32S3, which have an internal USB-serial-JTAG adapter.
by ESP_Sprite
Tue Apr 23, 2024 12:40 am
Forum: General Discussion
Topic: Get MAC address using espefuse
Replies: 4
Views: 208

Re: Get MAC address using espefuse

espefuse is a Python script that you can also use as a library in your own Python scripts. Technically I don't think we promise anything about the API we provide there, but I imagine it's going to be more stable (and visible if it breaks) than parsing the output.
by ESP_Sprite
Mon Apr 22, 2024 11:51 am
Forum: General Discussion
Topic: How many Read/Write operation (details in days )can be done in ESP32 wrover
Replies: 1
Views: 104

Re: How many Read/Write operation (details in days )can be done in ESP32 wrover

The flash generally supports 100000 erases per sector before it wears out and shows errors. How many writes you get out of that depends on what you store and how the wear leveling algorithm behind it does.
by ESP_Sprite
Mon Apr 22, 2024 8:35 am
Forum: General Discussion
Topic: ESP32 SPI Flash write issue
Replies: 4
Views: 180

Re: ESP32 SPI Flash write issue

That would be the main flash; you can look at the examples/storage/spiffs example to store data there.
by ESP_Sprite
Mon Apr 22, 2024 6:40 am
Forum: General Discussion
Topic: ESP32 SPI Flash write issue
Replies: 4
Views: 180

Re: ESP32 SPI Flash write issue

So, 'external' SPI flash in this context means a SPI flash chip other than the main flash that contains the program itself. Is that what you intended? If so, did you actually hook up an external flash chip?
by ESP_Sprite
Mon Apr 22, 2024 6:39 am
Forum: Report Bugs
Topic: Guru Meditation Error and rebooting when using ESP32 bluetooth
Replies: 1
Views: 80

Re: Guru Meditation Error and rebooting when using ESP32 bluetooth

Looks like memory corruption, and unfortunately that's not trivial to backtrace. I'd suggest taking a long hard look at your code, see if you're overflowing a buffer somewhere.
by ESP_Sprite
Sun Apr 21, 2024 2:28 pm
Forum: ESP-IDF
Topic: How properly, under RTOS, to set up the highest priority non-maskable interrupt vector?
Replies: 13
Views: 629

Re: How properly, under RTOS, to set up the highest priority non-maskable interrupt vector?

Code: Select all

void __attribute__((constructor)) int_CPUticker64_init() {
Making a function a constructor calls it as soon as the program starts up, even before main() is called. You then *also* call the function in main.