-
Notifications
You must be signed in to change notification settings - Fork 62
Fix for DYNAMIXEL-Y control table error & Arduino Uno R4 build error #148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
88ee229
022a601
fd01361
a5782fd
674c5fb
2ec236b
f6aa9f4
3b50cce
647aff6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name=Dynamixel2Arduino | ||
| version=0.8.0 | ||
| version=0.8.1 | ||
| author=ROBOTIS | ||
| license=Apache-2.0 | ||
| maintainer=Sookyung Son([email protected]) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -331,10 +331,10 @@ namespace ControlTableItem{ | |
| SHUTDOWN, | ||
|
|
||
| TORQUE_ENABLE, | ||
| LED, | ||
| LED_RED, | ||
| LED_GREEN, | ||
| LED_BLUE, | ||
| DXL_LED, | ||
| DXL_LED_RED, | ||
| DXL_LED_GREEN, | ||
| DXL_LED_BLUE, | ||
|
Comment on lines
+334
to
+337
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Renaming the LED-related enum members from This
This change significantly enhances the library's robustness and portability. |
||
| REGISTERED_INSTRUCTION, | ||
| HARDWARE_ERROR_STATUS, | ||
| VELOCITY_P_GAIN, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This correction of the data width for
PRESENT_MOTOR_TEMPERATUREfrom 4 bytes to 1 byte for the DYNAMIXEL-Y series is an important fix. It aligns with the e-Manual (address 571, size 1 byte) and is crucial for ensuring accurate motor temperature readings. An incorrect data width here would lead to erroneous temperature values and could potentially affect other operations if data is read in bulk. Great catch!