From 1659734e96db6f70f326a79047b7610ca74f1c3d Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Tue, 17 Jun 2025 01:23:43 -0400 Subject: [PATCH] Code comments --- ESP-IDF_Robot_RC/main/espnow_example_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ESP-IDF_Robot_RC/main/espnow_example_main.c b/ESP-IDF_Robot_RC/main/espnow_example_main.c index 927379482..dc82e80ce 100755 --- a/ESP-IDF_Robot_RC/main/espnow_example_main.c +++ b/ESP-IDF_Robot_RC/main/espnow_example_main.c @@ -148,6 +148,6 @@ void app_main(void) esp_now_add_peer(&peerInfo); // Add peer to the list of registered devices // Define a task to periodically call function that sends data - xTaskCreate (rc_send_data_task, "RC", 2048, NULL, 15, NULL); - xTaskCreate (joystick_task, "RC", 2048, NULL, 2, NULL); + xTaskCreate (rc_send_data_task, "RC", 2048, NULL, 15, NULL); // sendData() + xTaskCreate (joystick_task, "RC", 2048, NULL, 2, NULL); // joystick_show_raw_xy() }