clangtidy corrections part 1

This commit is contained in:
2023-10-11 17:35:40 +02:00
parent 77a52b82c3
commit 23d854a826
36 changed files with 2383 additions and 1165 deletions
+1 -5
View File
@@ -1,9 +1,5 @@
#include "driveModi.h"
DriveModi::DriveModi() {
this->loopDelay = 0;
}
DriveModi::~DriveModi() {
this->moveControl->setSpeed(0);
this->moveControl->setRotationSpeed(0);
@@ -26,6 +22,6 @@ void DriveModi::activate(DriveModiParams params){
void DriveModi::init() {
this->moveControl->setDrivingStatus(MoveControl::Status::Drive);
this->loopDelay = 40;
this->loopDelay = DriveModi::defaultDelay;
this->afterActivate();
}