MCPcopy Create free account
hub / github.com/ROBOTIS-GIT/turtlebot3 / DynamixelSDKWrapper

Method DynamixelSDKWrapper

turtlebot3_node/src/dynamixel_sdk_wrapper.cpp:24–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22using robotis::turtlebot3::DynamixelSDKWrapper;
23
24DynamixelSDKWrapper::DynamixelSDKWrapper(const Device & device)
25: device_(device)
26{
27 if (init_dynamixel_sdk_handlers() == false) {
28 LOG_ERROR("DynamixelSDKWrapper", "Failed to initialize SDK handlers");
29 return;
30 } else {
31 LOG_DEBUG("DynamixelSDKWrapper", "Success to initilize SDK handlers");
32 }
33}
34
35DynamixelSDKWrapper::~DynamixelSDKWrapper()
36{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected