1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-29 17:19:50 +02:00

Dynamixel: count_max was modifying _countMin

This commit is contained in:
Mitch Bradley
2021-07-07 18:57:19 -10:00
parent fabfe11269
commit b7750acef4
2 changed files with 4 additions and 3 deletions

View File

@@ -127,7 +127,7 @@ namespace Motors {
handler.item("invert_direction", _invert_direction); handler.item("invert_direction", _invert_direction);
handler.item("count_min", _countMin); handler.item("count_min", _countMin);
handler.item("count_max", _countMin); handler.item("count_max", _countMax);
handler.item("full_time_move", _dynamixelFullTimeMove); handler.item("full_time_move", _dynamixelFullTimeMove);
handler.section("uart", _uart); handler.section("uart", _uart);

View File

@@ -12,8 +12,9 @@ namespace Motors {
void init() override; void init() override;
void set_disable(bool disable) override; void set_disable(bool disable) override;
float _transition_poiont; float _transition_point;
protected:
protected:
void config_message() override; void config_message() override;
}; };
} }