Search found 1 match

by w1zardgame
Mon Mar 16, 2020 10:08 pm
Forum: General Discussion
Topic: ESP32 Setup ledc affect to wdt time
Replies: 0
Views: 2477

ESP32 Setup ledc affect to wdt time

I've got few tests with ledc and i've got strange results. If we use ledc like this: void setup() { Serial.begin(115200); Serial.println(F("Start setup")); pinMode(GPIO_NUM_32, OUTPUT); pinMode(GPIO_NUM_32, LOW); ledcSetup(LEDC_CHANNEL_0, 10000000, 2 ); ledcAttachPin(GPIO_NUM_32, LEDC_CHANNEL_0); le...