123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- #include <AP_HAL/AP_HAL.h>
- #include <AP_Math/crc.h>
- #include "AP_RangeFinder_LeddarOne.h"
- #include <AP_SerialManager/AP_SerialManager.h>
- extern const AP_HAL::HAL& hal;
- AP_RangeFinder_LeddarOne::AP_RangeFinder_LeddarOne(RangeFinder::RangeFinder_State &_state,
- AP_RangeFinder_Params &_params,
- uint8_t serial_instance) :
- AP_RangeFinder_Backend(_state, _params)
- {
- const AP_SerialManager &serial_manager = AP::serialmanager();
- uart = serial_manager.find_serial(AP_SerialManager::SerialProtocol_Rangefinder, serial_instance);
- if (uart != nullptr) {
- uart->begin(serial_manager.find_baudrate(AP_SerialManager::SerialProtocol_Rangefinder, serial_instance));
- }
- }
- bool AP_RangeFinder_LeddarOne::detect(uint8_t serial_instance)
- {
- return AP::serialmanager().find_serial(AP_SerialManager::SerialProtocol_Rangefinder, serial_instance) != nullptr;
- }
- bool AP_RangeFinder_LeddarOne::get_reading(uint16_t &reading_cm)
- {
- uint8_t number_detections;
- LeddarOne_Status leddarone_status;
- if (uart == nullptr) {
- return false;
- }
- switch (modbus_status) {
- case LEDDARONE_MODBUS_STATE_INIT: {
- uint8_t index = 0;
-
- uint32_t nbytes = uart->available();
- while (nbytes-- > 0) {
- uart->read();
- if (++index > LEDDARONE_SERIAL_PORT_MAX) {
-
- return false;
- }
- }
-
- memset(read_buffer, 0, sizeof(read_buffer));
- read_len = 0;
- modbus_status = LEDDARONE_MODBUS_STATE_PRE_SEND_REQUEST;
- }
-
-
- FALLTHROUGH;
- case LEDDARONE_MODBUS_STATE_PRE_SEND_REQUEST:
-
- uart->write(send_request_buffer, sizeof(send_request_buffer));
- modbus_status = LEDDARONE_MODBUS_STATE_SENT_REQUEST;
- last_sending_request_ms = AP_HAL::millis();
- FALLTHROUGH;
- case LEDDARONE_MODBUS_STATE_SENT_REQUEST:
- if (uart->available()) {
-
- modbus_status = LEDDARONE_MODBUS_STATE_AVAILABLE;
- last_available_ms = AP_HAL::millis();
- } else {
- if (AP_HAL::millis() - last_sending_request_ms > 200) {
-
-
- modbus_status = (read_len == 0) ? LEDDARONE_MODBUS_STATE_PRE_SEND_REQUEST : LEDDARONE_MODBUS_STATE_INIT;
- }
- }
- break;
- case LEDDARONE_MODBUS_STATE_AVAILABLE:
-
- leddarone_status = parse_response(number_detections);
- if (leddarone_status == LEDDARONE_STATE_OK) {
- reading_cm = sum_distance / number_detections;
-
- modbus_status = LEDDARONE_MODBUS_STATE_INIT;
- return true;
- }
-
- else if (leddarone_status != LEDDARONE_STATE_READING_BUFFER || AP_HAL::millis() - last_available_ms > 200) {
-
- modbus_status = (read_len == 0) ? LEDDARONE_MODBUS_STATE_PRE_SEND_REQUEST : LEDDARONE_MODBUS_STATE_INIT;
- }
- break;
- }
- return false;
- }
- void AP_RangeFinder_LeddarOne::update(void)
- {
- if (get_reading(state.distance_cm)) {
-
- state.last_reading_ms = AP_HAL::millis();
- update_status();
- } else if (AP_HAL::millis() - state.last_reading_ms > 200) {
- set_status(RangeFinder::RangeFinder_NoData);
- }
- }
- bool AP_RangeFinder_LeddarOne::CRC16(uint8_t *aBuffer, uint8_t aLength, bool aCheck)
- {
- uint16_t crc = calc_crc_modbus(aBuffer, aLength);
- uint8_t lCRCLo = LOWBYTE(crc);
- uint8_t lCRCHi = HIGHBYTE(crc);
- if (aCheck) {
- return (aBuffer[aLength] == lCRCLo) && (aBuffer[aLength+1] == lCRCHi);
- } else {
- aBuffer[aLength] = lCRCLo;
- aBuffer[aLength+1] = lCRCHi;
- return true;
- }
- }
-
- LeddarOne_Status AP_RangeFinder_LeddarOne::parse_response(uint8_t &number_detections)
- {
- uint8_t index;
- uint8_t index_offset = LEDDARONE_DETECTION_DATA_INDEX_OFFSET;
-
- uint32_t nbytes = uart->available();
- if (nbytes != 0) {
- for (index=read_len; index<nbytes+read_len; index++) {
- if (index >= LEDDARONE_READ_BUFFER_SIZE) {
- return LEDDARONE_STATE_ERR_BAD_RESPONSE;
- }
- read_buffer[index] = uart->read();
- }
- read_len += nbytes;
- if (read_len < LEDDARONE_READ_BUFFER_SIZE) {
- return LEDDARONE_STATE_READING_BUFFER;
- }
- }
-
- if (read_len != LEDDARONE_READ_BUFFER_SIZE || read_buffer[1] != LEDDARONE_MODOBUS_FUNCTION_CODE) {
- return LEDDARONE_STATE_ERR_BAD_RESPONSE;
- }
-
- if (!CRC16(read_buffer, read_len-2, true)) {
- return LEDDARONE_STATE_ERR_BAD_CRC;
- }
-
- number_detections = read_buffer[LEDDARONE_DETECTION_DATA_NUMBER_INDEX];
-
- if (number_detections > LEDDARONE_DETECTIONS_MAX || number_detections == 0) {
- return LEDDARONE_STATE_ERR_NUMBER_DETECTIONS;
- }
- memset(detections, 0, sizeof(detections));
- sum_distance = 0;
- for (index=0; index<number_detections; index++) {
-
- detections[index] = (static_cast<uint16_t>(read_buffer[index_offset])*256 + read_buffer[index_offset+1]) / 10;
- sum_distance += detections[index];
-
- index_offset += LEDDARONE_DETECTION_DATA_OFFSET;
- }
- return LEDDARONE_STATE_OK;
- }
|