Fix bug no fwd downfade; Add BRAKE; cleanup; [bug]
- Fix bug where downfade did not work when driving forward - Add BRAKE command functionality to motorctl (untested, since not used anywhere atm) - Cleanup: Optimize code, add comments !!!TODO: there is a fault in the current concept/logic: fading up/down generally works, however when accelerating REVERSE fade-down is utilized instead of fade-up. => Fix that bug, fade down should only be used when decelerating.
This commit is contained in:
parent
cd804452e4
commit
1360832f5e
@ -30,7 +30,7 @@ single100a_config_t configDriverRight = {
|
|||||||
//--- configure motor contol ---
|
//--- configure motor contol ---
|
||||||
motorctl_config_t configMotorControl = {
|
motorctl_config_t configMotorControl = {
|
||||||
.msFadeUp = 1500,
|
.msFadeUp = 1500,
|
||||||
.msFadeDown = 3000,
|
.msFadeDown = 1000,
|
||||||
.currentMax = 10
|
.currentMax = 10
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -46,8 +46,13 @@ void controlledMotor::handle(){
|
|||||||
|
|
||||||
//--- convert duty ---
|
//--- convert duty ---
|
||||||
//define target duty (-100 to 100) from provided duty and motorstate
|
//define target duty (-100 to 100) from provided duty and motorstate
|
||||||
|
//this value is more suitable for the fading algorithm
|
||||||
switch(commandReceive.state){
|
switch(commandReceive.state){
|
||||||
case motorstate_t::BRAKE:
|
case motorstate_t::BRAKE:
|
||||||
|
//update state
|
||||||
|
state = motorstate_t::BRAKE;
|
||||||
|
dutyTarget = 0;
|
||||||
|
break;
|
||||||
case motorstate_t::IDLE:
|
case motorstate_t::IDLE:
|
||||||
dutyTarget = 0;
|
dutyTarget = 0;
|
||||||
break;
|
break;
|
||||||
@ -72,6 +77,16 @@ void controlledMotor::handle(){
|
|||||||
dutyIncrementDown = 100;
|
dutyIncrementDown = 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//--- BRAKE ---
|
||||||
|
//brake immediately, update state, duty and exit this cycle of handle function
|
||||||
|
if (state == motorstate_t::BRAKE){
|
||||||
|
motor.set(motorstate_t::BRAKE, 0);
|
||||||
|
dutyNow = 0;
|
||||||
|
return; //no need to run the fade algorithm
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//--- calculate difference ---
|
//--- calculate difference ---
|
||||||
dutyDelta = dutyTarget - dutyNow;
|
dutyDelta = dutyTarget - dutyNow;
|
||||||
@ -79,42 +94,45 @@ void controlledMotor::handle(){
|
|||||||
//negative: need to decrease
|
//negative: need to decrease
|
||||||
|
|
||||||
//--- fade up ---
|
//--- fade up ---
|
||||||
if(dutyDelta > dutyIncrementUp){ //target duty his higher than current duty -> fade up
|
//dutyDelta is higher than IncrementUp -> fade up
|
||||||
|
if(dutyDelta > dutyIncrementUp){
|
||||||
ESP_LOGV(TAG, "*fading up*: target=%.2f%% - previous=%.2f%% - increment=%.6f%% - usSinceLastRun=%d", dutyTarget, dutyNow, dutyIncrementUp, (int)usPassed);
|
ESP_LOGV(TAG, "*fading up*: target=%.2f%% - previous=%.2f%% - increment=%.6f%% - usSinceLastRun=%d", dutyTarget, dutyNow, dutyIncrementUp, (int)usPassed);
|
||||||
dutyNow += dutyIncrementUp; //increase duty by increment
|
dutyNow += dutyIncrementUp; //increase duty by increment
|
||||||
|
}
|
||||||
//--- set lower ---
|
|
||||||
//} else { //target duty is lower than current duty -> immediately set to target
|
|
||||||
// ESP_LOGV(TAG, "*setting to target*: target=%.2f%% - previous=%.2f%% ", dutyTarget, dutyNow);
|
|
||||||
// dutyNow = dutyTarget; //set target duty
|
|
||||||
//}
|
|
||||||
|
|
||||||
//--- fade down ---
|
//--- fade down ---
|
||||||
} else { //target duty is lower than current duty -> fade down
|
//dutyDelta is more negative than -IncrementDown -> fade down
|
||||||
ESP_LOGV(TAG, "*fading up*: target=%.2f%% - previous=%.2f%% - increment=%.6f%% - usSinceLastRun=%d", dutyTarget, dutyNow, dutyIncrementDown, (int)usPassed);
|
else if (dutyDelta < -dutyIncrementDown){
|
||||||
if (dutyTarget < dutyIncrementDown){ //immediately set to target when closer than increment (avoid negative duty)
|
ESP_LOGV(TAG, "*fading down*: target=%.2f%% - previous=%.2f%% - increment=%.6f%% - usSinceLastRun=%d", dutyTarget, dutyNow, dutyIncrementDown, (int)usPassed);
|
||||||
dutyNow = dutyTarget;
|
dutyNow -= dutyIncrementDown; //decrease duty by increment
|
||||||
} else {
|
}
|
||||||
dutyNow -= dutyIncrementDown; //decrease duty by increment
|
|
||||||
}
|
//--- set to target ---
|
||||||
|
//duty is already very close to target (closer than IncrementUp or IncrementDown)
|
||||||
|
else{
|
||||||
|
//immediately set to target duty
|
||||||
|
dutyNow = dutyTarget;
|
||||||
}
|
}
|
||||||
|
|
||||||
//--- apply to motor ---
|
|
||||||
//convert duty -100 to 100 back to motorstate and duty 0-100
|
//define motorstate from converted duty -100 to 100
|
||||||
//apply target duty and state to motor driver
|
//apply target duty and state to motor driver
|
||||||
//forward
|
//forward
|
||||||
if(dutyNow > 0){
|
if(dutyNow > 0){
|
||||||
motor.set(motorstate_t::FWD, dutyNow);
|
state = motorstate_t::FWD;
|
||||||
}
|
}
|
||||||
//reverse
|
//reverse
|
||||||
else if (dutyNow < 0){
|
else if (dutyNow < 0){
|
||||||
motor.set(motorstate_t::REV, fabs(dutyNow));
|
state = motorstate_t::REV;
|
||||||
}
|
}
|
||||||
//idle
|
//idle
|
||||||
//TODO: add BRAKE case!!!
|
|
||||||
else {
|
else {
|
||||||
motor.set(motorstate_t::IDLE, 0);
|
state = motorstate_t::IDLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//--- apply to motor ---
|
||||||
|
motor.set(state, fabs(dutyNow));
|
||||||
|
//note: BRAKE state is handled earlier
|
||||||
|
|
||||||
|
|
||||||
//--- update timestamp ---
|
//--- update timestamp ---
|
||||||
|
Loading…
x
Reference in New Issue
Block a user