123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- /*
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /*
- implementation of Robotis Dynamixel 2.0 protocol for controlling servos
- Portions of this code are based on the dynamixel_sdk code:
- https://github.com/ROBOTIS-GIT/DynamixelSDK
- which is under the following license:
- * Copyright 2017 ROBOTIS CO., LTD.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include <AP_HAL/AP_HAL.h>
- #include <AP_Math/AP_Math.h>
- #include <AP_SerialManager/AP_SerialManager.h>
- #include <SRV_Channel/SRV_Channel.h>
- #include "AP_RobotisServo.h"
- extern const AP_HAL::HAL& hal;
- #define BROADCAST_ID 0xFE
- #define MAX_ID 0xFC
- // DXL protocol common commands
- #define INST_PING 1
- #define INST_READ 2
- #define INST_WRITE 3
- #define INST_REG_WRITE 4
- #define INST_ACTION 5
- #define INST_FACTORY_RESET 6
- #define INST_CLEAR 16
- #define INST_SYNC_WRITE 131
- #define INST_BULK_READ 146
- // 2.0 protocol commands
- #define INST_REBOOT 8
- #define INST_STATUS 85
- #define INST_SYNC_READ 130
- #define INST_BULK_WRITE 147
- // 2.0 protocol packet offsets
- #define PKT_HEADER0 0
- #define PKT_HEADER1 1
- #define PKT_HEADER2 2
- #define PKT_RESERVED 3
- #define PKT_ID 4
- #define PKT_LENGTH_L 5
- #define PKT_LENGTH_H 6
- #define PKT_INSTRUCTION 7
- #define PKT_ERROR 8
- #define PKT_PARAMETER0 8
- /* Macro for Control Table Value */
- #define DXL_MAKEWORD(a, b) ((uint16_t)(((uint8_t)(((uint64_t)(a)) & 0xff)) | ((uint16_t)((uint8_t)(((uint64_t)(b)) & 0xff))) << 8))
- #define DXL_MAKEDWORD(a, b) ((uint32_t)(((uint16_t)(((uint64_t)(a)) & 0xffff)) | ((uint32_t)((uint16_t)(((uint64_t)(b)) & 0xffff))) << 16))
- #define DXL_LOWORD(l) ((uint16_t)(((uint64_t)(l)) & 0xffff))
- #define DXL_HIWORD(l) ((uint16_t)((((uint64_t)(l)) >> 16) & 0xffff))
- #define DXL_LOBYTE(w) ((uint8_t)(((uint64_t)(w)) & 0xff))
- #define DXL_HIBYTE(w) ((uint8_t)((((uint64_t)(w)) >> 8) & 0xff))
- // register offsets
- #define REG_OPERATING_MODE 11
- #define OPMODE_CURR_CONTROL 0
- #define OPMODE_VEL_CONTROL 1
- #define OPMODE_POS_CONTROL 3
- #define OPMODE_EXT_POS_CONTROL 4
- #define REG_TORQUE_ENABLE 64
- #define REG_STATUS_RETURN 68
- #define STATUS_RETURN_NONE 0
- #define STATUS_RETURN_READ 1
- #define STATUS_RETURN_ALL 2
- #define REG_GOAL_POSITION 116
- // how many times to send servo configure msgs
- #define CONFIGURE_SERVO_COUNT 4
- // how many times to send servo detection
- #define DETECT_SERVO_COUNT 4
- const AP_Param::GroupInfo AP_RobotisServo::var_info[] = {
- // @Param: POSMIN
- // @DisplayName: Robotis servo position min
- // @Description: Position minimum at servo min value. This should be within the position control range of the servos, normally 0 to 4095
- // @Range: 0 4095
- // @User: Standard
- AP_GROUPINFO("POSMIN", 1, AP_RobotisServo, pos_min, 0),
- // @Param: POSMAX
- // @DisplayName: Robotis servo position max
- // @Description: Position maximum at servo max value. This should be within the position control range of the servos, normally 0 to 4095
- // @Range: 0 4095
- // @User: Standard
- AP_GROUPINFO("POSMAX", 2, AP_RobotisServo, pos_max, 4095),
-
- AP_GROUPEND
- };
- // constructor
- AP_RobotisServo::AP_RobotisServo(void)
- {
- // set defaults from the parameter table
- AP_Param::setup_object_defaults(this, var_info);
- }
- void AP_RobotisServo::init(void)
- {
- AP_SerialManager &serial_manager = AP::serialmanager();
- port = serial_manager.find_serial(AP_SerialManager::SerialProtocol_Robotis,0);
- if (port) {
- baudrate = serial_manager.find_baudrate(AP_SerialManager::SerialProtocol_Robotis, 0);
- us_per_byte = 10 * 1e6 / baudrate;
- us_gap = 4 * 1e6 / baudrate;
- }
- }
- /*
- calculate Robotis protocol CRC
- */
- uint16_t AP_RobotisServo::update_crc(uint16_t crc_accum, uint8_t *data_blk_ptr, uint16_t data_blk_size)
- {
- uint16_t i;
- static const uint16_t crc_table[256] = {0x0000,
- 0x8005, 0x800F, 0x000A, 0x801B, 0x001E, 0x0014, 0x8011,
- 0x8033, 0x0036, 0x003C, 0x8039, 0x0028, 0x802D, 0x8027,
- 0x0022, 0x8063, 0x0066, 0x006C, 0x8069, 0x0078, 0x807D,
- 0x8077, 0x0072, 0x0050, 0x8055, 0x805F, 0x005A, 0x804B,
- 0x004E, 0x0044, 0x8041, 0x80C3, 0x00C6, 0x00CC, 0x80C9,
- 0x00D8, 0x80DD, 0x80D7, 0x00D2, 0x00F0, 0x80F5, 0x80FF,
- 0x00FA, 0x80EB, 0x00EE, 0x00E4, 0x80E1, 0x00A0, 0x80A5,
- 0x80AF, 0x00AA, 0x80BB, 0x00BE, 0x00B4, 0x80B1, 0x8093,
- 0x0096, 0x009C, 0x8099, 0x0088, 0x808D, 0x8087, 0x0082,
- 0x8183, 0x0186, 0x018C, 0x8189, 0x0198, 0x819D, 0x8197,
- 0x0192, 0x01B0, 0x81B5, 0x81BF, 0x01BA, 0x81AB, 0x01AE,
- 0x01A4, 0x81A1, 0x01E0, 0x81E5, 0x81EF, 0x01EA, 0x81FB,
- 0x01FE, 0x01F4, 0x81F1, 0x81D3, 0x01D6, 0x01DC, 0x81D9,
- 0x01C8, 0x81CD, 0x81C7, 0x01C2, 0x0140, 0x8145, 0x814F,
- 0x014A, 0x815B, 0x015E, 0x0154, 0x8151, 0x8173, 0x0176,
- 0x017C, 0x8179, 0x0168, 0x816D, 0x8167, 0x0162, 0x8123,
- 0x0126, 0x012C, 0x8129, 0x0138, 0x813D, 0x8137, 0x0132,
- 0x0110, 0x8115, 0x811F, 0x011A, 0x810B, 0x010E, 0x0104,
- 0x8101, 0x8303, 0x0306, 0x030C, 0x8309, 0x0318, 0x831D,
- 0x8317, 0x0312, 0x0330, 0x8335, 0x833F, 0x033A, 0x832B,
- 0x032E, 0x0324, 0x8321, 0x0360, 0x8365, 0x836F, 0x036A,
- 0x837B, 0x037E, 0x0374, 0x8371, 0x8353, 0x0356, 0x035C,
- 0x8359, 0x0348, 0x834D, 0x8347, 0x0342, 0x03C0, 0x83C5,
- 0x83CF, 0x03CA, 0x83DB, 0x03DE, 0x03D4, 0x83D1, 0x83F3,
- 0x03F6, 0x03FC, 0x83F9, 0x03E8, 0x83ED, 0x83E7, 0x03E2,
- 0x83A3, 0x03A6, 0x03AC, 0x83A9, 0x03B8, 0x83BD, 0x83B7,
- 0x03B2, 0x0390, 0x8395, 0x839F, 0x039A, 0x838B, 0x038E,
- 0x0384, 0x8381, 0x0280, 0x8285, 0x828F, 0x028A, 0x829B,
- 0x029E, 0x0294, 0x8291, 0x82B3, 0x02B6, 0x02BC, 0x82B9,
- 0x02A8, 0x82AD, 0x82A7, 0x02A2, 0x82E3, 0x02E6, 0x02EC,
- 0x82E9, 0x02F8, 0x82FD, 0x82F7, 0x02F2, 0x02D0, 0x82D5,
- 0x82DF, 0x02DA, 0x82CB, 0x02CE, 0x02C4, 0x82C1, 0x8243,
- 0x0246, 0x024C, 0x8249, 0x0258, 0x825D, 0x8257, 0x0252,
- 0x0270, 0x8275, 0x827F, 0x027A, 0x826B, 0x026E, 0x0264,
- 0x8261, 0x0220, 0x8225, 0x822F, 0x022A, 0x823B, 0x023E,
- 0x0234, 0x8231, 0x8213, 0x0216, 0x021C, 0x8219, 0x0208,
- 0x820D, 0x8207, 0x0202 };
- for (uint16_t j = 0; j < data_blk_size; j++) {
- i = ((uint16_t)(crc_accum >> 8) ^ *data_blk_ptr++) & 0xFF;
- crc_accum = (crc_accum << 8) ^ crc_table[i];
- }
- return crc_accum;
- }
- /*
- addStuffing() from Robotis SDK. This pads the packet as required by the protocol
- */
- void AP_RobotisServo::add_stuffing(uint8_t *packet)
- {
- int packet_length_in = DXL_MAKEWORD(packet[PKT_LENGTH_L], packet[PKT_LENGTH_H]);
- int packet_length_out = packet_length_in;
-
- if (packet_length_in < 8) {
- // INSTRUCTION, ADDR_L, ADDR_H, CRC16_L, CRC16_H + FF FF FD
- return;
- }
- uint8_t *packet_ptr;
- uint16_t packet_length_before_crc = packet_length_in - 2;
- for (uint16_t i = 3; i < packet_length_before_crc; i++) {
- packet_ptr = &packet[i+PKT_INSTRUCTION-2];
- if (packet_ptr[0] == 0xFF && packet_ptr[1] == 0xFF && packet_ptr[2] == 0xFD) {
- packet_length_out++;
- }
- }
-
- if (packet_length_in == packet_length_out) {
- // no stuffing required
- return;
- }
-
- uint16_t out_index = packet_length_out + 6 - 2; // last index before crc
- uint16_t in_index = packet_length_in + 6 - 2; // last index before crc
- while (out_index != in_index) {
- if (packet[in_index] == 0xFD && packet[in_index-1] == 0xFF && packet[in_index-2] == 0xFF) {
- packet[out_index--] = 0xFD; // byte stuffing
- if (out_index != in_index) {
- packet[out_index--] = packet[in_index--]; // FD
- packet[out_index--] = packet[in_index--]; // FF
- packet[out_index--] = packet[in_index--]; // FF
- }
- } else {
- packet[out_index--] = packet[in_index--];
- }
- }
- packet[PKT_LENGTH_L] = DXL_LOBYTE(packet_length_out);
- packet[PKT_LENGTH_H] = DXL_HIBYTE(packet_length_out);
- }
- /*
- send a protocol 2.0 packet
- */
- void AP_RobotisServo::send_packet(uint8_t *txpacket)
- {
- add_stuffing(txpacket);
- // check max packet length
- uint16_t total_packet_length = DXL_MAKEWORD(txpacket[PKT_LENGTH_L], txpacket[PKT_LENGTH_H]) + 7;
- // make packet header
- txpacket[PKT_HEADER0] = 0xFF;
- txpacket[PKT_HEADER1] = 0xFF;
- txpacket[PKT_HEADER2] = 0xFD;
- txpacket[PKT_RESERVED] = 0x00;
- // add CRC16
- uint16_t crc = update_crc(0, txpacket, total_packet_length - 2); // 2: CRC16
- txpacket[total_packet_length - 2] = DXL_LOBYTE(crc);
- txpacket[total_packet_length - 1] = DXL_HIBYTE(crc);
- port->write(txpacket, total_packet_length);
- delay_time_us += total_packet_length * us_per_byte + us_gap;
- }
- /*
- use a broadcast ping to find attached servos
- */
- void AP_RobotisServo::detect_servos(void)
- {
- uint8_t txpacket[10] {};
- txpacket[PKT_ID] = BROADCAST_ID;
- txpacket[PKT_LENGTH_L] = 3;
- txpacket[PKT_LENGTH_H] = 0;
- txpacket[PKT_INSTRUCTION] = INST_PING;
- send_packet(txpacket);
- // give plenty of time for replies from all servos
- last_send_us = AP_HAL::micros();
- delay_time_us += 1000 * us_per_byte;
- }
- /*
- broadcast configure all servos
- */
- void AP_RobotisServo::configure_servos(void)
- {
- // disable torque control
- send_command(BROADCAST_ID, REG_TORQUE_ENABLE, 0, 1);
- // disable replies unless we read
- send_command(BROADCAST_ID, REG_STATUS_RETURN, STATUS_RETURN_READ, 1);
- // use position control mode
- send_command(BROADCAST_ID, REG_OPERATING_MODE, OPMODE_POS_CONTROL, 1);
- // enable torque control
- send_command(BROADCAST_ID, REG_TORQUE_ENABLE, 1, 1);
- }
- /*
- send a command to a single servo, changing a register value
- */
- void AP_RobotisServo::send_command(uint8_t id, uint16_t reg, uint32_t value, uint8_t len)
- {
- uint8_t txpacket[16] {};
- txpacket[PKT_ID] = id;
- txpacket[PKT_LENGTH_L] = 5 + len;
- txpacket[PKT_LENGTH_H] = 0;
- txpacket[PKT_INSTRUCTION] = INST_WRITE;
- txpacket[PKT_INSTRUCTION+1] = DXL_LOBYTE(reg);
- txpacket[PKT_INSTRUCTION+2] = DXL_HIBYTE(reg);
- memcpy(&txpacket[PKT_INSTRUCTION+3], &value, MIN(len,4));
- send_packet(txpacket);
- }
- /*
- read response bytes
- */
- void AP_RobotisServo::read_bytes(void)
- {
- uint32_t n = port->available();
- if (n == 0 && pktbuf_ofs < PKT_INSTRUCTION) {
- return;
- }
- if (n > sizeof(pktbuf) - pktbuf_ofs) {
- n = sizeof(pktbuf) - pktbuf_ofs;
- }
- for (uint8_t i=0; i<n; i++) {
- pktbuf[pktbuf_ofs++] = port->read();
- }
- // discard bad leading data. This should be rare
- while (pktbuf_ofs >= 4 &&
- (pktbuf[0] != 0xFF || pktbuf[1] != 0xFF || pktbuf[2] != 0xFD || pktbuf[3] != 0x00)) {
- memmove(pktbuf, &pktbuf[1], pktbuf_ofs-1);
- pktbuf_ofs--;
- }
- if (pktbuf_ofs < 10) {
- // not enough data yet
- return;
- }
- const uint16_t total_packet_length = DXL_MAKEWORD(pktbuf[PKT_LENGTH_L], pktbuf[PKT_LENGTH_H]) + PKT_INSTRUCTION;
- if (total_packet_length > sizeof(pktbuf)) {
- pktbuf_ofs = 0;
- return;
- }
- if (pktbuf_ofs < total_packet_length) {
- // more data needed
- return;
- }
- // check CRC
- const uint16_t crc = DXL_MAKEWORD(pktbuf[total_packet_length-2], pktbuf[total_packet_length-1]);
- const uint16_t calc_crc = update_crc(0, pktbuf, total_packet_length - 2);
- if (calc_crc != crc) {
- memmove(pktbuf, &pktbuf[total_packet_length], pktbuf_ofs - total_packet_length);
- pktbuf_ofs -= total_packet_length;
- return;
- }
- // process full packet
- process_packet(pktbuf, total_packet_length);
- memmove(pktbuf, &pktbuf[total_packet_length], pktbuf_ofs - total_packet_length);
- pktbuf_ofs -= total_packet_length;
- }
- /*
- process a packet from a servo
- */
- void AP_RobotisServo::process_packet(const uint8_t *pkt, uint8_t length)
- {
- uint8_t id = pkt[PKT_ID];
- if (id > 16 || id < 1) {
- // discard packets from servos beyond max or min. Note that we
- // don't allow servo 0, to make mapping to SERVOn_* parameters
- // easier
- return;
- }
- uint16_t id_mask = (1U<<(id-1));
- if (!(id_mask & servo_mask)) {
- // mark the servo as present
- servo_mask |= id_mask;
- hal.console->printf("Robotis: new servo %u\n", id);
- }
- }
- void AP_RobotisServo::update()
- {
- if (!initialised) {
- initialised = true;
- init();
- last_send_us = AP_HAL::micros();
- return;
- }
-
- if (port == nullptr) {
- return;
- }
- read_bytes();
- uint32_t now = AP_HAL::micros();
- if (last_send_us != 0 && now - last_send_us < delay_time_us) {
- // waiting for last send to complete
- return;
- }
- if (detection_count < DETECT_SERVO_COUNT) {
- detection_count++;
- detect_servos();
- }
- if (servo_mask == 0) {
- return;
- }
- if (configured_servos < CONFIGURE_SERVO_COUNT) {
- configured_servos++;
- last_send_us = now;
- configure_servos();
- return;
- }
- last_send_us = now;
- delay_time_us = 0;
- // loop for all 16 channels
- for (uint8_t i=0; i<NUM_SERVO_CHANNELS; i++) {
- if (((1U<<i) & servo_mask) == 0) {
- continue;
- }
- SRV_Channel *c = SRV_Channels::srv_channel(i);
- if (c == nullptr) {
- continue;
- }
- const uint16_t pwm = c->get_output_pwm();
- const uint16_t min = c->get_output_min();
- const uint16_t max = c->get_output_max();
- float v = float(pwm - min) / (max - min);
- uint32_t value = pos_min + v * (pos_max - pos_min);
- send_command(i+1, REG_GOAL_POSITION, value, 4);
- }
- }
|