PWM rescaling

This commit is contained in:
2025-06-26 01:23:27 -04:00
parent a4ac78fc74
commit d2a9cc69d7
2 changed files with 1 additions and 1 deletions

View File

@@ -148,7 +148,7 @@ static void rc_send_data_task()
if (esp_now_is_peer_exist((uint8_t*)receiver_mac)) { if (esp_now_is_peer_exist((uint8_t*)receiver_mac)) {
sendData(); sendData();
} }
vTaskDelay (10 / portTICK_PERIOD_MS); vTaskDelay (250 / portTICK_PERIOD_MS);
} }
} }