Skip to content

Commit 44a8c50

Browse files
author
Geoffroy Arenou
committed
update
1 parent db2bb71 commit 44a8c50

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

lib/Esp32_Helper

src/main.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,9 @@ void TaskTeleplot(void *pvParameters)
292292
if (teleplotTO.IsTimeOut())
293293
{
294294
const Pose pose = Motion::GetCurrentPose();
295-
Printer::teleplot("pos", pose);
295+
Printer::teleplot("posX", pose.x);
296+
Printer::teleplot("posY", pose.y);
297+
Printer::teleplot("posH", pose.h);
296298
Printer::teleplot("speed_D", Motion::motor_D.speed());
297299
Printer::teleplot("speed_G", Motion::motor_G.speed());
298300

@@ -312,7 +314,7 @@ void TaskTeleplot(void *pvParameters)
312314
{
313315
printChrono(chrono);
314316
}
315-
vTaskDelay(50);
317+
vTaskDelay(10);
316318
}
317319
}
318320

0 commit comments

Comments
 (0)