Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/actuator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ const ModelControlTableInfo_t y_control_table[] PROGMEM = {
{ControlTableItem::VELOCITY_TRAJECTORY, 564, 4},
{ControlTableItem::PRESENT_INPUT_VOLTAGE, 568, 2},
{ControlTableItem::PRESENT_TEMPERATURE, 570, 1}, // Present Inverter Temperature
{ControlTableItem::PRESENT_MOTOR_TEMPERATURE, 571, 4},
{ControlTableItem::PRESENT_MOTOR_TEMPERATURE, 571, 1},
Comment on lines 495 to +496

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The data width for PRESENT_MOTOR_TEMPERATURE is being corrected from 4 to 1. This aligns with the DYNAMIXEL-Y series e-Manual, as linked in the pull request description. Is there any additional validation or testing that can be done to confirm this?

Suggested change
{ControlTableItem::PRESENT_TEMPERATURE, 570, 1}, // Present Inverter Temperature
{ControlTableItem::PRESENT_MOTOR_TEMPERATURE, 571, 4},
{ControlTableItem::PRESENT_MOTOR_TEMPERATURE, 571, 1},
{ControlTableItem::PRESENT_TEMPERATURE, 570, 1}, // Present Inverter Temperature
{ControlTableItem::PRESENT_MOTOR_TEMPERATURE, 571, 1},

#endif
{ControlTableItem::LAST_DUMMY_ITEM, 0, 0}
};
Expand Down