Search found 9042 matches

by ESP_Sprite
Fri May 05, 2023 8:37 am
Forum: Hardware
Topic: Custom PCB ESP32 flash
Replies: 4
Views: 1507

Re: Custom PCB ESP32 flash

Ah, I see a possible issue. Datasheet says IO2 needs to be low to enter the proper download mode, you pull it high (R7 R9). Try not doing that and see if that helps.
by ESP_Sprite
Fri May 05, 2023 8:31 am
Forum: Hardware
Topic: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
Replies: 5
Views: 1533

Re: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".

Are you sure you're not using an ESP32 (module) with PSRAM? If so, GPIO 17 is generally unavailable.
by ESP_Sprite
Fri May 05, 2023 2:08 am
Forum: Hardware
Topic: ESP32 Always boots in Download mode.
Replies: 3
Views: 1686

Re: ESP32 Always boots in Download mode.

Sorry, I'm not seeing anything odd in your schematic or in what you tell me that could have caused this behaviour, and I can't say I ever ran into this before.
by ESP_Sprite
Fri May 05, 2023 2:01 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

Can you put the bypass caps closer to the ESP32, i.e. solder them to the PCB rather than use wires? Those wires can pick up noise from the environment and inject it into Vdd_sio. Additionally, they'll have a non-negligable inductance, likely negating the purpose of that decoupling cap.
by ESP_Sprite
Fri May 05, 2023 1:55 am
Forum: ESP-IDF
Topic: Getting (InstrFetchProhibited) exception when triggering an interrupt
Replies: 2
Views: 1038

Re: Getting (InstrFetchProhibited) exception when triggering an interrupt

Did you call gpio_install_isr_service() anywhere?
by ESP_Sprite
Fri May 05, 2023 1:53 am
Forum: ESP-IDF
Topic: ESP32-S3 with external LAN7850
Replies: 2
Views: 1519

Re: ESP32-S3 with external LAN7850

Physically, it's possible. But I don't think there's any existing drivers or other infrastructure for this yet, so you'd have to build that from scratch.
by ESP_Sprite
Fri May 05, 2023 1:50 am
Forum: ESP-IDF
Topic: How to specify a global include directory for all components?
Replies: 4
Views: 1166

Re: How to specify a global include directory for all components?

Possibly a cleaner way (that might also work with ULP, I don't know) is to make those shared things into its own header-only component, then use EXTRA_COMPONENT_DIRS in the projects to point to that an REQUIRES in the components that need it?
by ESP_Sprite
Fri May 05, 2023 1:48 am
Forum: ESP-IDF
Topic: External Interrupt Delay
Replies: 4
Views: 1477

Re: External Interrupt Delay

+1 on what MicroController said; doing something expensive and dangerous like creating a task from an ISR is unlikely to ever be a good idea.
by ESP_Sprite
Fri May 05, 2023 1:46 am
Forum: ESP-IDF
Topic: Help! Wifi power while waiting for IP from AP
Replies: 3
Views: 971

Re: Help! Wifi power while waiting for IP from AP

Hard to say. Tx uses a fair bit of power, but Rx also is not cheap ( datasheet section 5.5 indicates about 100mA) but by the time DHCP is active, presumably DTIM would already have kicked in (depends on the access point and your configuration) lowering that number by a fair bit. Do you have any idea...
by ESP_Sprite
Fri May 05, 2023 1:43 am
Forum: Hardware
Topic: Custom PCB ESP32 flash
Replies: 4
Views: 1507

Re: Custom PCB ESP32 flash

Odd. Do you see this behavior on multiple PCBs or only one?