Search found 9005 matches

by ESP_Sprite
Thu Feb 23, 2023 6:40 am
Forum: General Discussion
Topic: ESP32-C6_DevKitC-1 N8
Replies: 4
Views: 1537

Re: ESP32-C6_DevKitC-1 N8

This chip is ESP32-C6 not ESP32
There's your error: you have something (the flash tool?) set up for an ESP32 and you're flashing an ESP32C6. Not sure how exactly you would change that in the GUI tool but if that's impossible, perhaps you can use the command-line tool for this?
by ESP_Sprite
Thu Feb 23, 2023 6:31 am
Forum: General Discussion
Topic: ESP32-P4 - new dual core Risc-V
Replies: 1
Views: 2029

Re: ESP32-P4 - new dual core Risc-V

The P4 doesn't have *any* RF subsystem, it's microcontroller-only. However, you should be able to pair it with any ESP32Cx or ESP32Hx chip, so once the C5 is out, you could pair it with that to get 5GHz.
by ESP_Sprite
Tue Feb 21, 2023 6:02 am
Forum: ESP32 Arduino
Topic: DHCP Discover Requests
Replies: 3
Views: 1042

Re: DHCP Discover Requests

Are the repeats the same? If so, they could be WiFi retransmits. WiFi packets are ACKed by the access point when received, and when the sender doesn't get that ACK, it'll think the packet is lost and will retransmit. This looks like the packet made it over OK but the ACK got lost.
by ESP_Sprite
Tue Feb 21, 2023 12:57 am
Forum: ESP-IDF
Topic: usb_serial_jtag_write_bytes() doesn't always write all bytes
Replies: 18
Views: 6292

Re: usb_serial_jtag_write_bytes() doesn't always write all bytes

What chip is this on? Any chance you can whittle down your code to the smallest project that still exhibits it and post that here?
by ESP_Sprite
Tue Feb 21, 2023 12:49 am
Forum: General Discussion
Topic: ESP32 : Reset loop
Replies: 3
Views: 1691

Re: ESP32 : Reset loop

What specific board hardware is this? If it's custom, do you have schematics / board layout files?
by ESP_Sprite
Tue Feb 21, 2023 12:44 am
Forum: General Discussion
Topic: ESP32-C6_DevKitC-1 N8
Replies: 4
Views: 1537

Re: ESP32-C6_DevKitC-1 N8

There's likely no AT code in that devboard by default, so it's no surprise that doesn't work. What specifically (OS, software) are you using to flash it?
by ESP_Sprite
Tue Feb 21, 2023 12:43 am
Forum: ESP32 Arduino
Topic: ESP32 + RGBMatrix + WiFi STA problem
Replies: 3
Views: 995

Re: ESP32 + RGBMatrix + WiFi STA problem

The root cause is that something (likely the timer interrupt for the matrix display) is trying to execute code from flash, but WiFi needs to write to that flash so it is unavailable. Probably a mistake in the rgbmatrix library I guesss; it should be entirely in IRAM. If you decode that backtrace, yo...
by ESP_Sprite
Tue Feb 21, 2023 12:38 am
Forum: ESP-IDF
Topic: mutexes in noinit-externa RAM
Replies: 2
Views: 850

Re: mutexes in noinit-externa RAM

I don't think that is possible. The ringbuffer memory contains semaphores, which in turn contain pointers to internal FreeRTOS structures. Those structures are not guaranteed to be the same or at the same position after every reboot, so the pointers probably point to wrong data.
by ESP_Sprite
Tue Feb 21, 2023 12:30 am
Forum: ESP-IDF
Topic: How to create a variable at an absolute address in DRAM ?
Replies: 10
Views: 5178

Re: How to create a variable at an absolute address in DRAM ?

Just wondering: is it actually a variable at an absolute address you want, or do you simply want a variable that does not get cleared after a reset so your firmware can simply 'pick up' the value again after a reboot? Because if it's the second, you're probably better off declaring it static with a ...
by ESP_Sprite
Tue Feb 21, 2023 12:23 am
Forum: General Discussion
Topic: Accurate onboard ADC reading + WiFi // is it even possible?
Replies: 5
Views: 2146

Re: Accurate onboard ADC reading + WiFi // is it even possible?

That sounds like a very noisy environment indeed. Perhaps some capacitors on the ADC pins can help a bit in cleaning up the signal? (Something like 100nF should be sufficient.) Another trick, especially for slower-moving signals, is to take lots of measures and average them to get rid of the noise.