autoscan && stack size fix

This commit is contained in:
2025-07-31 01:52:15 -04:00
parent 9ad973b5ff
commit f6e1079779
16 changed files with 7097 additions and 7131 deletions

View File

@@ -231,7 +231,7 @@ void transmission_init()
esp_now_add_peer(&devices);
// Defince a task for periodically sending ESPNOW remote control data
xTaskCreate(rc_send_data_task, "RC", 2048, NULL, 4, NULL);
xTaskCreate(rc_send_data_task, "RC", 8096, NULL, 4, NULL);
xTaskCreate(rc_display_data_task, "RC Display", 2048, NULL, 5, NULL);
xTaskCreate(rc_display_data_task, "RC Display", 8096, NULL, 5, NULL);
}