You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#defineSPEED_NOMINAL_MAX 100 // max value of "speed nominal"
#defineSPEED_NOMINAL_MIN -100 // min value of "speed nominal"
What SPEED_NOMINAL_MIN actually means is "max speed in reversed direction"!
Therefore change names to:
#defineSPEED_NOMINAL_MAX_FWD 100 // max value of "speed nominal" in forward direction
#defineSPEED_NOMINAL_MAX_REV 100 // min value of "speed nominal" in reverse direction
The value sent for reverse speeds should still be negative to have a fallback if the information for nominal direction wasn't transmitted correctly.
The text was updated successfully, but these errors were encountered:
Now:
What SPEED_NOMINAL_MIN actually means is "max speed in reversed direction"!
Therefore change names to:
The value sent for reverse speeds should still be negative to have a fallback if the information for nominal direction wasn't transmitted correctly.
The text was updated successfully, but these errors were encountered: