Edit on GitHub

C PacketHandler

Methods Description
packetHandler Initializes members of packet data pointer struct
printTxRxResult Shows communication result (Deprecated Methods. Please check *getTxRxResult)
printRxPacketError Shows hardware error (Deprecated Methods. Please check *getRxPacketError)
getLastTxRxResult Gets last communication result
getLastRxPacketError Gets last hardware error
setDataWrite Gets last communication result
getDataRead Gets last hardware error
txPacket Transmits the packet
rxPacket Receives the packet
fastReadRxPacket Receives the packet quickly
txRxPacket Transmits and receives the packet
ping ping DYNAMIXEL
pingGetModelNum Ping DYNAMIXEL and get its model number
broadcastPing ping all connected DYNAMIXEL’s
getBroadcastPingResult Get IDs of DYNAMIXEL’s responded by BroadcastPing2
action Commands ‘Run’ the Regwritten
regWrite Writes the packets and wait for the ‘Action’ command
reboot Reboots DYNAMIXEL
clearMultiTurn Reset the Present Position
factoryReset Resets all DYNAMIXEL settings
readTx Transmits N byte read instruction packet
readRx Receives N byte read status packet
fastSyncReadRx Receives N byte read status packet quickly
readTxRx Transmits and receives N byte packet
read1ByteTx Transmits 1 byte read instruction packet
read1ByteRx Receives 1 byte read status packet
read1ByteTxRx Transmits and receives 1 byte packet
read2ByteTx Transmits 2 byte read instruction packet
read2ByteRx Receives 2 byte read status packet
read2ByteTxRx Transmits and receives 2 byte packet
read4ByteTx Transmits 4 byte read instruction packet
read4ByteRx Receives 4 byte read status packet
read4ByteTxRx Transmits and receives 4 byte packet
writeTxOnly Transmits N byte write instruction packet
writeTxRx Transmits and receives N byte packet
write1ByteTxOnly Transmits 1 byte write instruction packet
write1ByteTxRx Transmits and receives 1 byte packet
write2ByteTxOnly Transmits 2 byte write instruction packet
write2ByteTxRx Transmits and receives 2 byte packet
write4ByteTxOnly Transmits 4 byte write instruction packet
write4ByteTxRx Transmits and receives 4 byte packet
regWriteTxOnly Transmits register write instruction packet
regWriteTxRx Transmits and receives register write packet
syncReadTx Transmits N byte sync read Instruction packet
fastSyncReadTx Transmits N byte sync read Instruction packet quickly
syncWriteTxOnly Transmits N byte sync write Instruction packet
bulkReadTx Transmits N byte bulk read Instruction packet
bulkWriteTxOnly Transmits N byte bulk write Instruction packet
Enumerator Description
DXL_MAKEWORD(a, b) makes value from a and b to word type
DXL_MAKEDWORD(a, b) makes value from a and b to dword type
DXL_LOWORD(l) gets lower word type value from l
DXL_HIWORD(l) gets higher word type value from l
DXL_LOBYTE(w) gets lower byte type value from w
DXL_HIBYTE(w) gets higher byte type value from w
BROADCAST_ID := 0xFE Broadcast ID
MAX_ID := 0xFC Maximum ID value
INST_PING := 1 Instruction value of ping
INST_READ := 2 Instruction value of Read
INST_WRITE := 3 Instruction value of Write
INST_REG_WRITE := 4 Instruction value of Register Write
INST_ACTION := 5 Instruction value of Action
INST_FACTORY_RESET := 6 Instruction value of Factory Reset
INST_SYNC_WRITE := 131 Instruction value of Sync Write
INST_BULK_READ := 146 Instruction value of Bulk Read
INST_REBOOT := 8 Instruction value of Reboot
INST_CLEAR := 16 Instruction value of Clear
INST_STATUS := 85 Instruction value of Status
INST_SYNC_READ := 130 Instruction value of Sync Read
INST_FAST_SYNC_READ := 138 Instruction value of Fast Sync Read
INST_BULK_WRITE := 147 Instruction value of Bulk Write
COMM_SUCCESS := 0 Status of Communication Success
COMM_PORT_BUSY := -1000 Status of Port in use
COMM_TX_FAIL := -1001 Status of Transmit packet failed
COMM_RX_FAIL := -1002 Status of Receive packet failed
COMM_TX_ERROR := -2000 Status of Transmit packet error
COMM_RX_WAITING := -3000 Status of Receive packet waiting
COMM_RX_TIMEOUT := -3001 Status of Receive packet timeout
COMM_RX_CORRUPT := -3002 Status of Receive packet corrupt
COMM_NOT_AVAILABLE := -9000 Status of Unavailable in protocol 1.0

Method References

packetHandler
printTxRxResult
Parameters Description
protocol_version Protocol version
result Communication result
printRxPacketError
Parameters Description
protocol_version Protocol version
error Hardware error
getLastTxRxResult
Parameters Description
port_num Port number
protocol_version Protocol version
getLastRxPacketError
Parameters Description
port_num Port number
protocol_version Protocol version
setDataWrite
Parameters Description
port_num Port number
protocol_version Protocol version
data_length Data length
data_pos Targeted position of array element
data Data
getDataRead
Parameters Description
port_num Port number
protocol_version Protocol version
data_length Data length
data_pos Targeted position of array element
txPacket
Parameters Description
port_num Port_num
protocol_version Protocol version
rxPacket
Parameters Description
port_num Port number
protocol_version Protocol version
fastReadRxPacket
Parameters Description
port_num Port number
protocol_version Protocol version
txRxPacket
Parameters Description
port_num Port number
protocol_version Protocol version
ping
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
pingGetModelNum
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
broadcastPing
Parameters Description
port_num Port number
protocol_version Protocol version
getBroadcastPingResult
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
action
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
reboot
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
clearMultiTurn
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
factoryReset
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
option Reset option
readTx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
readRx
Parameters Description
port_num Port number
protocol_version Protocol version
length Packet length
fastSyncReadRx
Parameters Description
port_num Port number
protocol_version Protocol version
length Packet length
readTxRx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
read1ByteTx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read1ByteRx
Parameters Description
port_num Port number
protocol_version Protocol version
read1ByteTxRx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read2ByteTx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read2ByteRx
Parameters Description
port_num Port number
protocol_version Protocol version
read2ByteTxRx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read4ByteTx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read4ByteRx
Parameters Description
port_num Port number
protocol_version Protocol version
read4ByteTxRx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
writeTxOnly
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
writeTxRx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
write1ByteTxOnly
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write1ByteTxRx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write2ByteTxOnly
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write2ByteTxRx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write4ByteTxOnly
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write4ByteTxRx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
regWriteTxOnly
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
regWriteTxRx
Parameters Description
port_num Port number
protocol_version Protocol version
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
syncReadTx
Parameters Description
port_num Port number
protocol_version Protocol version
address Start address on the control table of DYNAMIXEL
data_length Data length
param_length Parameter length
fastSyncReadTx
Parameters Description
port_num Port number
protocol_version Protocol version
start_address Start address on the control table of DYNAMIXEL
data_length Data length
param_length Parameter length
syncWriteTxOnly
Parameters Description
port_num Port number
protocol_version Protocol version
start_address Start address on the control table of DYNAMIXEL
data_length Data length
param_length Parameter length
bulkReadTx
Parameters Description
port_num Port number
protocol_version Protocol version
param_length Parameter length
bulkWriteTxOnly
Parameters Description
port_num Port number
protocol_version Protocol version
param_length Parameter length

C Protocol1PacketHandler

PacketHandler dependent functions for packet construction using Protocol 1.0.

None

Methods Description
printTxRxResult1 Shows communication result (Deprecated Methods. Please check *getTxRxResult1)
printRxPacketError1 Shows hardware error (Deprecated Methods. Please check *getRxPacketError1)
getLastTxRxResult1 Gets last communication result
getLastRxPacketError1 Gets last hardware error
setDataWrite1 Gets last communication result
getDataRead1 Gets last hardware error
txPacket1 Transmits the packet
rxPacket1 Receives the packet
txRxPacket1 Transmits and receives the packet
ping1 Ping DYNAMIXEL
pingGetModelNum1 Ping DYNAMIXEL and get its model number
broadcastPing1 Not available in Protocol 1.0
getBroadcastPingResult1 Not available in Protocol 1.0
action1 Commands ‘Run’ the Regwritten
RegWrite1 Writes the packets and wait for the ‘Action’ command
reboot1 Not available in Protocol 1.0
clearMultiTurn1 Reset the Present Position
factoryReset1 Resets all DYNAMIXEL settings
readTx1 Transmits N byte read instruction packet
readRx1 Receives N byte read status packet
readTxRx1 Transmits and receives N byte packet
read1ByteTx1 Transmits 1 byte read instruction packet
read1ByteRx1 Receives 1 byte read status packet
read1ByteTxRx1 Transmits and receives 1 byte packet
read2ByteTx1 Transmits 2 byte read instruction packet
read2ByteRx1 Receives 2 byte read status packet
read2ByteTxRx1 Transmits and receives 2 byte packet
read4ByteTx1 Not available in Protocol 1.0
read4ByteRx1 Not available in Protocol 1.0
read4ByteTxRx1 Not available in Protocol 1.0
writeTxOnly1 Transmits N byte write instruction packet
writeTxRx1 Transmits and receives N byte packet
write1ByteTxOnly1 Transmits 1 byte write instruction packet
write1ByteTxRx1 Transmits and receives 1 byte packet
write2ByteTxOnly1 Transmits 2 byte write instruction packet
write2ByteTxRx1 Transmits and receives 2 byte packet
write4ByteTxOnly1 Not available in Protocol 1.0
write4ByteTxRx1 Not available in Protocol 1.0
regWriteTxOnly1 Transmits register write instruction packet
regWriteTxRx1 Transmits and receives register write packet
syncReadTx1 Not available in Protocol 1.0
syncWriteTxOnly1 Transmits N byte sync write Instruction packet
bulkReadTx1 Transmits N byte bulk read Instruction packet
bulkWriteTxOnly1 Not available in Protocol 1.0

None

Method References

printTxRxResult1
Parameters Description
result Communication result
printRxPacketError1
Parameters Description
error Hardware error
getLastTxRxResult1
Parameters Description
port_num Port number
getLastRxPacketError1
Parameters Description
port_num Port number
setDataWrite1
Parameters Description
port_num Port number
data_length Data length
data_pos Targeted position of array element
data Data
getDataRead1
Parameters Description
port_num Port number
data_length Data length
data_pos Targeted position of array element
txPacket1
Parameters Description
port_num Port_num
rxPacket1
Parameters Description
port_num Port number
txRxPacket1
Parameters Description
port_num Port number
ping1
Parameters Description
port_num Port number
id DYNAMIXEL ID
pingGetModelNum1
Parameters Description
port_num Port number
id DYNAMIXEL ID
broadcastPing1
Parameters Description
port_num Port number
getBroadcastPingResult1
Parameters Description
port_num Port number
id DYNAMIXEL ID
action1
Parameters Description
port_num Port number
id DYNAMIXEL ID
reboot1
Parameters Description
port_num Port number
id DYNAMIXEL ID
clearMultiTurn1
Parameters Description
port_num Port number
id DYNAMIXEL ID
factoryReset1
Parameters Description
port_num Port number
id DYNAMIXEL ID
option Reset option
readTx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
readRx1
Parameters Description
port_num Port number
length Packet length
readTxRx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
read1ByteTx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read1ByteRx1
Parameters Description
port_num Port number
read1ByteTxRx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read2ByteTx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read2ByteRx1
Parameters Description
port_num Port number
read2ByteTxRx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read4ByteTx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read4ByteRx1
Parameters Description
port_num Port number
read4ByteTxRx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
writeTxOnly1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
writeTxRx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
write1ByteTxOnly1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write1ByteTxRx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write2ByteTxOnly1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write2ByteTxRx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write4ByteTxOnly1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write4ByteTxRx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
regWriteTxOnly1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
regWriteTxRx1
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
syncReadTx1
Parameters Description
port_num Port number
start_address Address on the control table of DYNAMIXEL
data_length Data length
param_length Parameter length
syncWriteTxOnly1
Parameters Description
port_num Port number
start_address Address on the control table of DYNAMIXEL
data_length Data length
param_length Parameter length
bulkReadTx1
Parameters Description
port_num Port number
param_length Parameter length
bulkWriteTxOnly1
Parameters Description
port_num Port number
param_length Parameter length

C Protocol2PacketHandler

Methods Description
printTxRxResult2 Shows communication result (Deprecated Methods. Please check *getTxRxResult2)
printRxPacketError2 Shows hardware error (Deprecated Methods. Please check *getRxPacketError2)
getLastTxRxResult2 Gets last communication result
getLastRxPacketError2 Gets last hardware error
setDataWrite2 Gets last communication result
getDataRead2 Gets last hardware error
updateCRC Data transfer check method
addStuffing Appends the packet value
removeStuffing Removes the packet value
txPacket2 Transmits the packet
rxPacket2 Receives the packet
fastRxPacket2 Receives the packet quickly
txRxPacket2 Transmits and receives the packet
ping2 Ping DYNAMIXEL
pingGetModelNum2 Ping DYNAMIXEL and get its model number
broadcastPing2 Ping all connected DYNAMIXEL’s
getBroadcastPingResult2 Get IDs of DYNAMIXEL’s responded by broadcastPing2
action2 Commands ‘Run’ the Regwritten
regWrite2 Writes the packets and wait for the ‘Action’ command
reboot2 Reboots DYNAMIXEL
clearMultiTurn2 Clear instruction packet
factoryReset2 Resets all DYNAMIXEL settings
readTx2 Transmits N byte read instruction packet
readRx2 Receives N byte read status packet
fastReadRx2 Receives N byte read status packet quickly
readTxRx2 Transmits and receives N byte packet
read1ByteTx2 Transmits 1 byte read instruction packet
read1ByteRx2 Receives 1 byte read status packet
read1ByteTxRx2 Transmits and receives 1 byte packet
read2ByteTx2 Transmits 2 byte read instruction packet
read2ByteRx2 Receives 2 byte read status packet
read2ByteTxRx2 Transmits and receives 2 byte packet
read4ByteTx2 Transmits 4 byte read instruction packet
read4ByteRx2 Receives 4 byte read status packet
read4ByteTxRx2 Transmits and receives 4 byte packet
writeTxOnly2 Transmits N byte write instruction packet
writeTxRx2 Transmits and receives N byte packet
write1ByteTxOnly2 Transmits 1 byte write instruction packet
write1ByteTxRx2 Transmits and receives 1 byte packet
write2ByteTxOnly2 Transmits 2 byte write instruction packet
write2ByteTxRx2 Transmits and receives 2 byte packet
write4ByteTxOnly2 Transmits 4 byte write instruction packet
write4ByteTxRx2 Transmits and receives 4 byte packet
regWriteTxOnly2 Transmits register write instruction packet
regWriteTxRx2 Transmits and receives register write packet
syncReadTx2 Transmits N byte sync read Instruction packet
fastSyncReadTx2 Transmits N byte sync read Instruction packet quickly
syncWriteTxOnly2 Transmits N byte sync write Instruction packet
bulkReadTx2 Transmits N byte bulk read Instruction packet
bulkWriteTxOnly2 Transmits N byte bulk write Instruction packet

Method References


printTxRxResult2
Parameters Description
result Communication result
printRxPacketError2
Parameters Description
error Hardware error
getLastTxRxResult2
Parameters Description
port_num Port number
getLastRxPacketError2
Parameters Description
port_num Port number
setDataWrite2
Parameters Description
port_num Port number
data_length Data length
data_pos Targeted position of array element
data Data
getDataRead2
Parameters Description
port_num Port number
data_length Data length
data_pos Targeted position of array element
updateCRC
Parameters Description
crc_accum set to ‘0’
data_blk_ptr Packet array pointer
data_blk_size Number of bytes in packet excluding CRC
addStuffing
Parameters Description
packet packet
removeStuffing
Parameters Description
packet packet
txPacket2
Parameters Description
port_num Port_num
rxPacket2
Parameters Description
port_num Port number
fastRxPacket2
Parameters Description
port_num Port number
txRxPacket2
Parameters Description
port_num Port number
ping2
Parameters Description
port_num Port number
id DYNAMIXEL ID
pingGetModelNum2
Parameters Description
port_num Port number
id DYNAMIXEL ID
broadcastPing2
Parameters Description
port_num Port number
getBroadcastPingResult2
Parameters Description
port_num Port number
id DYNAMIXEL ID
action2
Parameters Description
port_num Port number
id DYNAMIXEL ID
reboot2
Parameters Description
port_num Port number
id DYNAMIXEL ID
clearMultiTurn2
Parameters Description
port_num Port number
id DYNAMIXEL ID
factoryReset2
Parameters Description
port_num Port number
id DYNAMIXEL ID
option Reset option
readTx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
readRx2
Parameters Description
port_num Port number
length Packet length
fastReadRx2
Parameters Description
port_num Port number
length Packet length
readTxRx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
read1ByteTx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read1ByteRx2
Parameters Description
port_num Port number
read1ByteTxRx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read2ByteTx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read2ByteRx2
Parameters Description
port_num Port number
read2ByteTxRx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read4ByteTx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
read4ByteRx2
Parameters Description
port_num Port number
read4ByteTxRx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
writeTxOnly2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
writeTxRx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
write1ByteTxOnly2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write1ByteTxRx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write2ByteTxOnly2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write2ByteTxRx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write4ByteTxOnly2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
write4ByteTxRx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
data Data for write
regWriteTxOnly2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
regWriteTxRx2
Parameters Description
port_num Port number
id DYNAMIXEL ID
address Address on the control table of DYNAMIXEL
length Packet length
syncReadTx2
Parameters Description
port_num Port number
start_address Start address on the control table of DYNAMIXEL
data_length Data length
param_length Parameter length
fastSyncReadTx2
Parameters Description
port_num Port number
start_address Start address on the control table of DYNAMIXEL
data_length Data length
param_length Parameter length
syncWriteTxOnly2
Parameters Description
port_num Port number
start_address Start address on the control table of DYNAMIXEL
data_length Data length
param_length Parameter length
bulkReadTx2
Parameters Description
port_num Port number
param_length Parameter length
bulkWriteTxOnly2
Parameters Description
port_num Port number
param_length Parameter length