/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- #include #if CONFIG_HAL_BOARD == HAL_BOARD_PX4 || CONFIG_HAL_BOARD == HAL_BOARD_VRBRAIN #include "AP_InertialSensor_PX4.h" const extern AP_HAL::HAL& hal; #include #include #include #include #include #include #include #include #include AP_InertialSensor_PX4::AP_InertialSensor_PX4(AP_InertialSensor &imu) : AP_InertialSensor_Backend(imu), _last_get_sample_timestamp(0), _last_sample_timestamp(0), _last_gyro_filter_hz(-1), _last_accel_filter_hz(-1) { } /* detect the sensor */ AP_InertialSensor_Backend *AP_InertialSensor_PX4::detect(AP_InertialSensor &_imu) { AP_InertialSensor_PX4 *sensor = new AP_InertialSensor_PX4(_imu); if (sensor == NULL) { return NULL; } if (!sensor->_init_sensor()) { delete sensor; return NULL; } return sensor; } /* calculate the right queue depth for a device with the given sensor sample rate */ uint8_t AP_InertialSensor_PX4::_queue_depth(uint16_t sensor_sample_rate) const { uint16_t requested_sample_rate = get_sample_rate_hz(); uint8_t min_depth = (sensor_sample_rate+requested_sample_rate-1)/requested_sample_rate; // add 5ms more worth of queue to account for possible timing jitter uint8_t ret = min_depth + (5 * sensor_sample_rate) / 1000; return ret; } bool AP_InertialSensor_PX4::_init_sensor(void) { // assumes max 3 instances _accel_fd[0] = open(ACCEL_BASE_DEVICE_PATH "0", O_RDONLY); _accel_fd[1] = open(ACCEL_BASE_DEVICE_PATH "1", O_RDONLY); _accel_fd[2] = open(ACCEL_BASE_DEVICE_PATH "2", O_RDONLY); _gyro_fd[0] = open(GYRO_BASE_DEVICE_PATH "0", O_RDONLY); _gyro_fd[1] = open(GYRO_BASE_DEVICE_PATH "1", O_RDONLY); _gyro_fd[2] = open(GYRO_BASE_DEVICE_PATH "2", O_RDONLY); _num_accel_instances = 0; _num_gyro_instances = 0; for (uint8_t i=0; i= 0) { _num_accel_instances = i+1; _accel_instance[i] = _imu.register_accel(); } if (_gyro_fd[i] >= 0) { _num_gyro_instances = i+1; _gyro_instance[i] = _imu.register_gyro(); } } if (_num_accel_instances == 0) { return false; } if (_num_gyro_instances == 0) { return false; } for (uint8_t i=0; i<_num_gyro_instances; i++) { int fd = _gyro_fd[i]; int devid = (ioctl(fd, DEVIOCGDEVICEID, 0) & 0x00FF0000)>>16; // software LPF off ioctl(fd, GYROIOCSLOWPASS, 0); // 2000dps range ioctl(fd, GYROIOCSRANGE, 2000); switch(devid) { case DRV_GYR_DEVTYPE_MPU6000: case DRV_GYR_DEVTYPE_MPU9250: // hardware LPF off ioctl(fd, GYROIOCSHWLOWPASS, 256); // khz sampling ioctl(fd, GYROIOCSSAMPLERATE, 1000); // set queue depth ioctl(fd, SENSORIOCSQUEUEDEPTH, _queue_depth(1000)); break; case DRV_GYR_DEVTYPE_L3GD20: // hardware LPF as high as possible ioctl(fd, GYROIOCSHWLOWPASS, 100); // ~khz sampling ioctl(fd, GYROIOCSSAMPLERATE, 800); // 10ms queue depth ioctl(fd, SENSORIOCSQUEUEDEPTH, _queue_depth(800)); break; default: break; } // calculate gyro sample time int samplerate = ioctl(fd, GYROIOCGSAMPLERATE, 0); if (samplerate < 100 || samplerate > 10000) { hal.scheduler->panic("Invalid gyro sample rate"); } _set_gyro_raw_sample_rate(_gyro_instance[i], (uint32_t)samplerate); _gyro_sample_time[i] = 1.0f / samplerate; } for (uint8_t i=0; i<_num_accel_instances; i++) { int fd = _accel_fd[i]; int devid = (ioctl(fd, DEVIOCGDEVICEID, 0) & 0x00FF0000)>>16; // software LPF off ioctl(fd, ACCELIOCSLOWPASS, 0); // 16g range ioctl(fd, ACCELIOCSRANGE, 16); switch(devid) { case DRV_ACC_DEVTYPE_MPU6000: case DRV_ACC_DEVTYPE_MPU9250: // hardware LPF off ioctl(fd, ACCELIOCSHWLOWPASS, 256); // khz sampling ioctl(fd, ACCELIOCSSAMPLERATE, 1000); // 10ms queue depth ioctl(fd, SENSORIOCSQUEUEDEPTH, _queue_depth(1000)); break; case DRV_ACC_DEVTYPE_LSM303D: // hardware LPF to ~1/10th sample rate for antialiasing ioctl(fd, ACCELIOCSHWLOWPASS, 194); // ~khz sampling ioctl(fd, ACCELIOCSSAMPLERATE, 1600); ioctl(fd,SENSORIOCSPOLLRATE, 1600); // 10ms queue depth ioctl(fd, SENSORIOCSQUEUEDEPTH, _queue_depth(1600)); break; default: break; } // calculate accel sample time int samplerate = ioctl(fd, ACCELIOCGSAMPLERATE, 0); if (samplerate < 100 || samplerate > 10000) { hal.scheduler->panic("Invalid accel sample rate"); } _set_accel_raw_sample_rate(_accel_instance[i], (uint32_t) samplerate); _accel_sample_time[i] = 1.0f / samplerate; } _set_accel_filter_frequency(_accel_filter_cutoff()); _set_gyro_filter_frequency(_gyro_filter_cutoff()); #if CONFIG_HAL_BOARD == HAL_BOARD_VRBRAIN _product_id = AP_PRODUCT_ID_VRBRAIN; #else #if defined(CONFIG_ARCH_BOARD_PX4FMU_V2) _product_id = AP_PRODUCT_ID_PX4_V2; #else _product_id = AP_PRODUCT_ID_PX4; #endif #endif return true; } /* set the accel filter frequency */ void AP_InertialSensor_PX4::_set_accel_filter_frequency(uint8_t filter_hz) { for (uint8_t i=0; i<_num_accel_instances; i++) { float samplerate = _accel_raw_sample_rate(_accel_instance[i]); _accel_filter[i].set_cutoff_frequency(samplerate, filter_hz); } } /* set the gyro filter frequency */ void AP_InertialSensor_PX4::_set_gyro_filter_frequency(uint8_t filter_hz) { for (uint8_t i=0; i<_num_gyro_instances; i++) { float samplerate = _gyro_raw_sample_rate(_gyro_instance[i]); _gyro_filter[i].set_cutoff_frequency(samplerate, filter_hz); } } bool AP_InertialSensor_PX4::update(void) { // get the latest sample from the sensor drivers _get_sample(); for (uint8_t k=0; k<_num_accel_instances; k++) { Vector3f accel = _accel_in[k]; // calling _publish_accel sets the sensor healthy, // so we only want to do this if we have new data from it if (_last_accel_timestamp[k] != _last_accel_update_timestamp[k]) { _publish_accel(_accel_instance[k], accel); _last_accel_update_timestamp[k] = _last_accel_timestamp[k]; } } for (uint8_t k=0; k<_num_gyro_instances; k++) { Vector3f gyro = _gyro_in[k]; // calling _publish_accel sets the sensor healthy, // so we only want to do this if we have new data from it if (_last_gyro_timestamp[k] != _last_gyro_update_timestamp[k]) { _publish_gyro(_gyro_instance[k], gyro); _last_gyro_update_timestamp[k] = _last_gyro_timestamp[k]; } } if (_last_accel_filter_hz != _accel_filter_cutoff()) { _set_accel_filter_frequency(_accel_filter_cutoff()); _last_accel_filter_hz = _accel_filter_cutoff(); } if (_last_gyro_filter_hz != _gyro_filter_cutoff()) { _set_gyro_filter_frequency(_gyro_filter_cutoff()); _last_gyro_filter_hz = _gyro_filter_cutoff(); } return true; } void AP_InertialSensor_PX4::_new_accel_sample(uint8_t i, accel_report &accel_report) { Vector3f accel = Vector3f(accel_report.x, accel_report.y, accel_report.z); uint8_t frontend_instance = _accel_instance[i]; // apply corrections _rotate_and_correct_accel(frontend_instance, accel); _notify_new_accel_raw_sample(frontend_instance, accel); // apply filter for control path _accel_in[i] = _accel_filter[i].apply(accel); // save last timestamp _last_accel_timestamp[i] = accel_report.timestamp; // report error count _set_accel_error_count(frontend_instance, accel_report.error_count); // publish a temperature (for logging purposed only) _publish_temperature(frontend_instance, accel_report.temperature); #ifdef AP_INERTIALSENSOR_PX4_DEBUG // get time since last sample float dt = _accel_sample_time[i]; _accel_dt_max[i] = max(_accel_dt_max[i],dt); _accel_meas_count[i] ++; if(_accel_meas_count[i] >= 10000) { uint32_t tnow = hal.scheduler->micros(); ::printf("a%d %.2f Hz max %.8f s\n", frontend_instance, 10000.0f/((tnow-_accel_meas_count_start_us[i])*1.0e-6f),_accel_dt_max[i]); _accel_meas_count_start_us[i] = tnow; _accel_meas_count[i] = 0; _accel_dt_max[i] = 0; } #endif // AP_INERTIALSENSOR_PX4_DEBUG } void AP_InertialSensor_PX4::_new_gyro_sample(uint8_t i, gyro_report &gyro_report) { Vector3f gyro = Vector3f(gyro_report.x, gyro_report.y, gyro_report.z); uint8_t frontend_instance = _gyro_instance[i]; // apply corrections _rotate_and_correct_gyro(frontend_instance, gyro); _notify_new_gyro_raw_sample(frontend_instance, gyro); // apply filter for control path _gyro_in[i] = _gyro_filter[i].apply(gyro); // save last timestamp _last_gyro_timestamp[i] = gyro_report.timestamp; // report error count _set_gyro_error_count(_gyro_instance[i], gyro_report.error_count); #ifdef AP_INERTIALSENSOR_PX4_DEBUG // get time since last sample float dt = _gyro_sample_time[i]; _gyro_dt_max[i] = max(_gyro_dt_max[i],dt); _gyro_meas_count[i] ++; if(_gyro_meas_count[i] >= 10000) { uint32_t tnow = hal.scheduler->micros(); ::printf("g%d %.2f Hz max %.8f s\n", frontend_instance, 10000.0f/((tnow-_gyro_meas_count_start_us[i])*1.0e-6f), _gyro_dt_max[i]); _gyro_meas_count_start_us[i] = tnow; _gyro_meas_count[i] = 0; _gyro_dt_max[i] = 0; } #endif // AP_INERTIALSENSOR_PX4_DEBUG } void AP_InertialSensor_PX4::_get_sample() { for (uint8_t i=0; imicros64(); } bool AP_InertialSensor_PX4::_get_accel_sample(uint8_t i, struct accel_report &accel_report) { if (i<_num_accel_instances && _accel_fd[i] != -1 && ::read(_accel_fd[i], &accel_report, sizeof(accel_report)) == sizeof(accel_report) && accel_report.timestamp != _last_accel_timestamp[i]) { DataFlash_Class *dataflash = get_dataflash(); if (dataflash != NULL) { struct log_ACCEL pkt = { LOG_PACKET_HEADER_INIT((uint8_t)(LOG_ACC1_MSG+i)), time_us : hal.scheduler->micros64(), sample_us : accel_report.timestamp, AccX : accel_report.x, AccY : accel_report.y, AccZ : accel_report.z }; dataflash->WriteBlock(&pkt, sizeof(pkt)); } return true; } return false; } bool AP_InertialSensor_PX4::_get_gyro_sample(uint8_t i, struct gyro_report &gyro_report) { if (i<_num_gyro_instances && _gyro_fd[i] != -1 && ::read(_gyro_fd[i], &gyro_report, sizeof(gyro_report)) == sizeof(gyro_report) && gyro_report.timestamp != _last_gyro_timestamp[i]) { DataFlash_Class *dataflash = get_dataflash(); if (dataflash != NULL) { struct log_GYRO pkt = { LOG_PACKET_HEADER_INIT((uint8_t)(LOG_GYR1_MSG+i)), time_us : hal.scheduler->micros64(), sample_us : gyro_report.timestamp, GyrX : gyro_report.x, GyrY : gyro_report.y, GyrZ : gyro_report.z }; dataflash->WriteBlock(&pkt, sizeof(pkt)); } return true; } return false; } bool AP_InertialSensor_PX4::gyro_sample_available(void) { _get_sample(); for (uint8_t i=0; i<_num_gyro_instances; i++) { if (_last_gyro_timestamp[i] != _last_gyro_update_timestamp[i]) { return true; } } return false; } bool AP_InertialSensor_PX4::accel_sample_available(void) { _get_sample(); for (uint8_t i=0; i<_num_accel_instances; i++) { if (_last_accel_timestamp[i] != _last_accel_update_timestamp[i]) { return true; } } return false; } #endif // CONFIG_HAL_BOARD