You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been trying to implement bulk_read in dynamixel_control_hw, but couldn't figure out how to use the newly implemented methods.
I'm trying to create a BulkRead instruction packet (somewhere in read_joints) using get_##Name, but since DynamixelHardwareInterface only has access to its member variables of type BaseServo, I'm not sure if it's possible to use get_present_position(std::vector<id_t>) and get_present_speed(std::vector<id_t>), which are defined in Servo<Model>, the derived class of BaseServo.
If you could give me some pointers on how I can work this around, it would be great!
The text was updated successfully, but these errors were encountered:
I've been trying to implement
bulk_read
indynamixel_control_hw
, but couldn't figure out how to use the newly implemented methods.I'm trying to create a
BulkRead
instruction packet (somewhere inread_joints
) usingget_##Name
, but sinceDynamixelHardwareInterface
only has access to its member variables of typeBaseServo
, I'm not sure if it's possible to useget_present_position(std::vector<id_t>)
andget_present_speed(std::vector<id_t>)
, which are defined inServo<Model>
, the derived class ofBaseServo
.If you could give me some pointers on how I can work this around, it would be great!
The text was updated successfully, but these errors were encountered: