Search found 2 matches

by reinderien
Tue May 23, 2023 1:33 am
Forum: Hardware
Topic: WDT reset on WPD of some pins
Replies: 2
Views: 983

Re: WDT reset on WPD of some pins

MicroController wrote:
Mon May 22, 2023 8:06 am
The on-chip or on-module flash memory which holds the application code. Don't mess with those pins :)
Good to know; but - I wish that that were somehow indicated here, instead of a big empty space:

Image
by reinderien
Sat May 20, 2023 3:05 am
Forum: Hardware
Topic: WDT reset on WPD of some pins
Replies: 2
Views: 983

WDT reset on WPD of some pins

To manage noise & power I'm setting unused pins on my ESP32C3 MINI 1 as such: static const gpio_config_t unused = { .pin_bit_mask = (1u << GPIO_NUM_0) | (1u << GPIO_NUM_1) | (1u << GPIO_NUM_2) | (1u << GPIO_NUM_3) | (1u << GPIO_NUM_10), .mode = GPIO_MODE_DISABLE, .pull_up_en = GPIO_PULLUP_DISABLE, ....