mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-08-29 09:10:03 +02:00
Dynamixel: count_max was modifying _countMin
This commit is contained in:
@@ -127,7 +127,7 @@ namespace Motors {
|
||||
handler.item("invert_direction", _invert_direction);
|
||||
|
||||
handler.item("count_min", _countMin);
|
||||
handler.item("count_max", _countMin);
|
||||
handler.item("count_max", _countMax);
|
||||
handler.item("full_time_move", _dynamixelFullTimeMove);
|
||||
handler.section("uart", _uart);
|
||||
|
||||
|
@@ -12,8 +12,9 @@ namespace Motors {
|
||||
void init() override;
|
||||
void set_disable(bool disable) override;
|
||||
|
||||
float _transition_poiont;
|
||||
protected:
|
||||
float _transition_point;
|
||||
|
||||
protected:
|
||||
void config_message() override;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user