fix return value

This commit is contained in:
Samuel Sadok
2020-12-16 10:13:21 +01:00
parent 918240fe33
commit e72d5ad831
+1 -1
View File
@@ -332,7 +332,7 @@ bool Motor::setup() {
max_dc_calib_ = 0.1f * max_allowed_current_;
if (!gate_driver_.init())
return true;
return false;
return true;
}