Skip to content
Snippets Groups Projects
Commit edd8d64f authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Updated the description of the ReadMe file.

parent 1529790d
No related branches found
No related tags found
No related merge requests found
Pipeline #5174 passed
...@@ -3,24 +3,36 @@ Dynamixel {#mainpage} ...@@ -3,24 +3,36 @@ Dynamixel {#mainpage}
## Description ## Description
This library provides a server to handle all the devices connected to a Dynamixel Bus and also low level read and write functions to access each one. This library provides a server to handle all the devices connected to a Dynamixel bus and also low level read and write functions to access each one.
The server allows to: The server features are:
- Scan the bus for devices: it checks all the possible addresses (from 0 to 254) for all the possible frequencies. Once a device responds in a given frequency, all other frequencies are discarded. - Scan the bus for devices: it checks all the possible addresses (from 0 to 254) for all the possible frequencies. Once a device responds in a given frequency, all other frequencies are discarded.
- Change the ID of a given device on the bus. By default all devices came with the same address (0) and it is necessary to change it in order to have multiple devices on the same bus. - Change the ID of a given device on the bus. By default all devices came with the same address (0) and it is necessary to change it in order to have multiple devices on the same bus.
- Change the bus baudrate. Some device have a slow baudrate by default and to achive the peak performance it is necessary to change it. - Change the bus baudrate. Some device have a slow baudrate by default and to achieve the peak performance it is necessary to change it.
- Supports two different communication interfaces: using a regular serial port and also using the ftdi low level API.
- Implements both version 1 and version 2 of the Dynamixel protocol.
For each device, the following operations are provided: For each device, the following operations are provided:
- Read and write to any 8 or 16 bit register. Allow access to all the device registers. - Read and write to any 8 or 16 bit register. Allow access to all the device registers.
- Synchronized write operations. Allow loading a given value to a given register to all the devices at the same time. The value is sent to the device using a REG_WRITE operation, but it does not take effect until the ACTION command is sent. - Synchronized write operations for version 1 protocol.
- Synchronized and bulk read and write operations for version 2 protocol.
- Broadcast a command to several devices. - Broadcast a command to several devices.
This library also includes an slave module to implement an slave device. The main features of an slave device are:
- Configurable protocol version, bus speed and ID.
- Provides callback functions for the main operations: read, write and ping.
## Installation ## Installation
* Add the labrobotica repository if it is not already added: * Add the labrobotica repository if it is not already added:
...@@ -35,7 +47,7 @@ For each device, the following operations are provided: ...@@ -35,7 +47,7 @@ For each device, the following operations are provided:
## Important information ## Important information
To use this driver is necessary to unload the *ftdi_sio* module, so the device is detected as a serial-usb device. To use the FTDI version of this library is necessary to unload the *ftdi_sio* module, so the device is detected as a serial-usb device.
This can be achieved with the following command This can be achieved with the following command
```sudo rmmod ftdi_sio``` ```sudo rmmod ftdi_sio```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment