From cba084580a811f0318a6d7791c1be6fddd09aa2e Mon Sep 17 00:00:00 2001 From: jonny_jr9 Date: Tue, 20 Feb 2024 12:35:36 +0100 Subject: [PATCH] Revert sabertooth init to STACK, direct call (fix encoder lag) Even though the object was created in STACK using alloca apparently the method call via pointer in lambda function still takes quite long since the encoder in MENU started to lag again It gets initialized before main() now this fixed the lag --- board_single/main/main.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/board_single/main/main.cpp b/board_single/main/main.cpp index 033e18a..de5fa55 100644 --- a/board_single/main/main.cpp +++ b/board_single/main/main.cpp @@ -45,7 +45,11 @@ extern "C" controlledMotor *motorLeft; controlledMotor *motorRight; -sabertooth2x60a *sabertoothDriver; +// TODO initialize driver in createOjects like everything else +// (as in 6e9b3d96d96947c53188be1dec421bd7ff87478e) +// issue with laggy encoder wenn calling methods via pointer though +//sabertooth2x60a *sabertoothDriver; +sabertooth2x60a sabertoothDriver(sabertoothConfig); evaluatedJoystick *joystick; @@ -69,11 +73,12 @@ cControlledRest *backRest; //-> makes it possible to easily use different motor drivers motorSetCommandFunc_t setLeftFunc = [&sabertoothDriver](motorCommand_t cmd) { - sabertoothDriver->setLeft(cmd); //<= note: still using pointer to method in here (but stored in STACK) + //TODO why encoder lag when call via pointer? + sabertoothDriver.setLeft(cmd); }; motorSetCommandFunc_t setRightFunc = [&sabertoothDriver](motorCommand_t cmd) { - sabertoothDriver->setRight(cmd); //<= note: still using pointer to method in here (but stored in STACK) + sabertoothDriver.setRight(cmd); }; //--- lambda function http-joystick ---