mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-02 12:30:34 +08:00
913 lines
19 KiB
C++
913 lines
19 KiB
C++
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2012-2016 PX4 Development Team. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/**
|
|
* @file bmp280.cpp
|
|
* Driver for the BMP280 barometric pressure sensor connected via I2C TODO or SPI.
|
|
*/
|
|
|
|
#include <px4_config.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <semaphore.h>
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <poll.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
#include <unistd.h>
|
|
#include <px4_getopt.h>
|
|
#include <px4_log.h>
|
|
|
|
#include <nuttx/arch.h>
|
|
#include <nuttx/wqueue.h>
|
|
#include <nuttx/clock.h>
|
|
|
|
#include <arch/board/board.h>
|
|
#include <board_config.h>
|
|
#include "bmp280.h"
|
|
|
|
#include <lib/cdev/CDev.hpp>
|
|
#include <drivers/drv_baro.h>
|
|
#include <drivers/drv_hrt.h>
|
|
#include <drivers/device/ringbuffer.h>
|
|
|
|
#include <perf/perf_counter.h>
|
|
#include <systemlib/err.h>
|
|
|
|
|
|
enum BMP280_BUS {
|
|
BMP280_BUS_ALL = 0,
|
|
BMP280_BUS_I2C_INTERNAL,
|
|
BMP280_BUS_I2C_EXTERNAL,
|
|
BMP280_BUS_SPI_INTERNAL,
|
|
BMP280_BUS_SPI_EXTERNAL
|
|
};
|
|
|
|
#ifndef CONFIG_SCHED_WORKQUEUE
|
|
# error This requires CONFIG_SCHED_WORKQUEUE.
|
|
#endif
|
|
|
|
/*
|
|
* BMP280 internal constants and data structures.
|
|
*/
|
|
|
|
class BMP280 : public cdev::CDev
|
|
{
|
|
public:
|
|
BMP280(bmp280::IBMP280 *interface, const char *path);
|
|
virtual ~BMP280();
|
|
|
|
virtual int init();
|
|
|
|
virtual ssize_t read(struct file *filp, char *buffer, size_t buflen);
|
|
virtual int ioctl(struct file *filp, int cmd, unsigned long arg);
|
|
|
|
/**
|
|
* Diagnostics - print some basic information about the driver.
|
|
*/
|
|
void print_info();
|
|
|
|
private:
|
|
bmp280::IBMP280 *_interface;
|
|
|
|
bool _running;
|
|
|
|
uint8_t _curr_ctrl;
|
|
|
|
struct work_s _work;
|
|
unsigned _report_ticks; // 0 - no cycling, otherwise period of sending a report
|
|
unsigned _max_mesure_ticks; //ticks needed to measure
|
|
|
|
ringbuffer::RingBuffer *_reports;
|
|
|
|
bool _collect_phase;
|
|
|
|
orb_advert_t _baro_topic;
|
|
int _orb_class_instance;
|
|
int _class_instance;
|
|
|
|
perf_counter_t _sample_perf;
|
|
perf_counter_t _measure_perf;
|
|
perf_counter_t _comms_errors;
|
|
|
|
struct bmp280::calibration_s *_cal; //stored calibration constants
|
|
struct bmp280::fcalibration_s _fcal; //pre processed calibration constants
|
|
|
|
float _P; /* in Pa */
|
|
float _T; /* in K */
|
|
|
|
|
|
/* periodic execution helpers */
|
|
void start_cycle();
|
|
void stop_cycle();
|
|
void cycle(); //main execution
|
|
static void cycle_trampoline(void *arg);
|
|
|
|
int measure(); //start measure
|
|
int collect(); //get results and publish
|
|
};
|
|
|
|
/*
|
|
* Driver 'main' command.
|
|
*/
|
|
extern "C" __EXPORT int bmp280_main(int argc, char *argv[]);
|
|
|
|
BMP280::BMP280(bmp280::IBMP280 *interface, const char *path) :
|
|
CDev(path),
|
|
_interface(interface),
|
|
_running(false),
|
|
_report_ticks(0),
|
|
_reports(nullptr),
|
|
_collect_phase(false),
|
|
_baro_topic(nullptr),
|
|
_orb_class_instance(-1),
|
|
_class_instance(-1),
|
|
_sample_perf(perf_alloc(PC_ELAPSED, "bmp280_read")),
|
|
_measure_perf(perf_alloc(PC_ELAPSED, "bmp280_measure")),
|
|
_comms_errors(perf_alloc(PC_COUNT, "bmp280_comms_errors"))
|
|
{
|
|
// work_cancel in stop_cycle called from the dtor will explode if we don't do this...
|
|
memset(&_work, 0, sizeof(_work));
|
|
}
|
|
|
|
BMP280::~BMP280()
|
|
{
|
|
/* make sure we are truly inactive */
|
|
stop_cycle();
|
|
|
|
if (_class_instance != -1) {
|
|
unregister_class_devname(BARO_BASE_DEVICE_PATH, _class_instance);
|
|
}
|
|
|
|
/* free any existing reports */
|
|
if (_reports != nullptr) {
|
|
delete _reports;
|
|
}
|
|
|
|
if (_baro_topic != nullptr) {
|
|
orb_unadvertise(_baro_topic);
|
|
}
|
|
|
|
// free perf counters
|
|
perf_free(_sample_perf);
|
|
perf_free(_measure_perf);
|
|
perf_free(_comms_errors);
|
|
|
|
delete _interface;
|
|
}
|
|
|
|
int
|
|
BMP280::init()
|
|
{
|
|
int ret = CDev::init();
|
|
|
|
if (ret != OK) {
|
|
PX4_ERR("CDev init failed");
|
|
return ret;
|
|
}
|
|
|
|
/* allocate basic report buffers */
|
|
_reports = new ringbuffer::RingBuffer(2, sizeof(baro_report));
|
|
|
|
if (_reports == nullptr) {
|
|
PX4_ERR("can't get memory for reports");
|
|
ret = -ENOMEM;
|
|
return ret;
|
|
}
|
|
|
|
/* register alternate interfaces if we have to */
|
|
_class_instance = register_class_devname(BARO_BASE_DEVICE_PATH);
|
|
|
|
/* reset sensor */
|
|
_interface->set_reg(BPM280_VALUE_RESET, BPM280_ADDR_RESET);
|
|
usleep(10000);
|
|
|
|
/* check id*/
|
|
if (_interface->get_reg(BPM280_ADDR_ID) != BPM280_VALUE_ID) {
|
|
PX4_WARN("id of your baro is not: 0x%02x", BPM280_VALUE_ID);
|
|
return -EIO;
|
|
}
|
|
|
|
/* set config, recommended settings */
|
|
_curr_ctrl = BPM280_CTRL_P16 | BPM280_CTRL_T2;
|
|
_interface->set_reg(_curr_ctrl, BPM280_ADDR_CTRL);
|
|
_max_mesure_ticks = USEC2TICK(BPM280_MT_INIT + BPM280_MT * (16 - 1 + 2 - 1));
|
|
_interface->set_reg(BPM280_CONFIG_F16, BPM280_ADDR_CONFIG);
|
|
|
|
/* get calibration and pre process them*/
|
|
_cal = _interface->get_calibration(BPM280_ADDR_CAL);
|
|
|
|
_fcal.t1 = _cal->t1 * powf(2, 4);
|
|
_fcal.t2 = _cal->t2 * powf(2, -14);
|
|
_fcal.t3 = _cal->t3 * powf(2, -34);
|
|
|
|
_fcal.p1 = _cal->p1 * (powf(2, 4) / -100000.0f);
|
|
_fcal.p2 = _cal->p1 * _cal->p2 * (powf(2, -31) / -100000.0f);
|
|
_fcal.p3 = _cal->p1 * _cal->p3 * (powf(2, -51) / -100000.0f);
|
|
|
|
_fcal.p4 = _cal->p4 * powf(2, 4) - powf(2, 20);
|
|
_fcal.p5 = _cal->p5 * powf(2, -14);
|
|
_fcal.p6 = _cal->p6 * powf(2, -31);
|
|
|
|
_fcal.p7 = _cal->p7 * powf(2, -4);
|
|
_fcal.p8 = _cal->p8 * powf(2, -19) + 1.0f;
|
|
_fcal.p9 = _cal->p9 * powf(2, -35);
|
|
|
|
/* do a first measurement cycle to populate reports with valid data */
|
|
struct baro_report brp;
|
|
_reports->flush();
|
|
|
|
if (measure()) {
|
|
return -EIO;
|
|
}
|
|
|
|
usleep(TICK2USEC(_max_mesure_ticks));
|
|
|
|
if (collect()) {
|
|
return -EIO;
|
|
}
|
|
|
|
_reports->get(&brp);
|
|
|
|
_baro_topic = orb_advertise_multi(ORB_ID(sensor_baro), &brp,
|
|
&_orb_class_instance, _interface->is_external() ? ORB_PRIO_HIGH : ORB_PRIO_DEFAULT);
|
|
|
|
if (_baro_topic == nullptr) {
|
|
PX4_WARN("failed to create sensor_baro publication");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
ssize_t
|
|
BMP280::read(struct file *filp, char *buffer, size_t buflen)
|
|
{
|
|
unsigned count = buflen / sizeof(struct baro_report);
|
|
struct baro_report *brp = reinterpret_cast<struct baro_report *>(buffer);
|
|
int ret = 0;
|
|
|
|
/* buffer must be large enough */
|
|
if (count < 1) {
|
|
return -ENOSPC;
|
|
}
|
|
|
|
/* if automatic measurement is enabled */
|
|
if (_report_ticks > 0) {
|
|
|
|
/*
|
|
* While there is space in the caller's buffer, and reports, copy them.
|
|
* Note that we may be pre-empted by the workq thread while we are doing this;
|
|
* we are careful to avoid racing with them.
|
|
*/
|
|
while (count--) {
|
|
if (_reports->get(brp)) {
|
|
ret += sizeof(*brp);
|
|
brp++;
|
|
}
|
|
}
|
|
|
|
/* if there was no data, warn the caller */
|
|
return ret ? ret : -EAGAIN;
|
|
}
|
|
|
|
/* manual measurement - run one conversion */
|
|
|
|
_reports->flush();
|
|
|
|
if (measure()) {
|
|
return -EIO;
|
|
}
|
|
|
|
usleep(TICK2USEC(_max_mesure_ticks));
|
|
|
|
if (collect()) {
|
|
return -EIO;
|
|
}
|
|
|
|
if (_reports->get(brp)) { //get new generated report
|
|
ret = sizeof(*brp);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
int
|
|
BMP280::ioctl(struct file *filp, int cmd, unsigned long arg)
|
|
{
|
|
switch (cmd) {
|
|
|
|
case SENSORIOCSPOLLRATE: {
|
|
|
|
unsigned ticks = 0;
|
|
|
|
switch (arg) {
|
|
|
|
case SENSOR_POLLRATE_MANUAL:
|
|
stop_cycle();
|
|
_report_ticks = 0;
|
|
return OK;
|
|
|
|
case 0:
|
|
return -EINVAL;
|
|
|
|
case SENSOR_POLLRATE_MAX:
|
|
|
|
/* FALLTHROUGH */
|
|
case SENSOR_POLLRATE_DEFAULT:
|
|
ticks = _max_mesure_ticks;
|
|
|
|
/* FALLTHROUGH */
|
|
default: {
|
|
if (ticks == 0) {
|
|
ticks = USEC2TICK(USEC_PER_SEC / arg);
|
|
}
|
|
|
|
/* do we need to start internal polling? */
|
|
bool want_start = (_report_ticks == 0);
|
|
|
|
/* check against maximum rate */
|
|
if (ticks < _max_mesure_ticks) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
_report_ticks = ticks;
|
|
|
|
if (want_start) {
|
|
start_cycle();
|
|
}
|
|
|
|
return OK;
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case SENSORIOCGPOLLRATE:
|
|
if (_report_ticks == 0) {
|
|
return SENSOR_POLLRATE_MANUAL;
|
|
}
|
|
|
|
return (USEC_PER_SEC / USEC_PER_TICK / _report_ticks);
|
|
|
|
case SENSORIOCSQUEUEDEPTH: {
|
|
/* lower bound is mandatory, upper bound is a sanity check */
|
|
if ((arg < 1) || (arg > 100)) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
irqstate_t flags = px4_enter_critical_section();
|
|
|
|
if (!_reports->resize(arg)) {
|
|
px4_leave_critical_section(flags);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
px4_leave_critical_section(flags);
|
|
return OK;
|
|
}
|
|
|
|
case SENSORIOCRESET:
|
|
/*
|
|
* Since we are initialized, we do not need to do anything, since the
|
|
* PROM is correctly read and the part does not need to be configured.
|
|
*/
|
|
return OK;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return CDev::ioctl(filp, cmd, arg);
|
|
}
|
|
|
|
void
|
|
BMP280::start_cycle()
|
|
{
|
|
|
|
/* reset the report ring and state machine */
|
|
_collect_phase = false;
|
|
_running = true;
|
|
_reports->flush();
|
|
|
|
/* schedule a cycle to start things */
|
|
work_queue(HPWORK, &_work, (worker_t)&BMP280::cycle_trampoline, this, 1);
|
|
}
|
|
|
|
void
|
|
BMP280::stop_cycle()
|
|
{
|
|
_running = false;
|
|
work_cancel(HPWORK, &_work);
|
|
}
|
|
|
|
void
|
|
BMP280::cycle_trampoline(void *arg)
|
|
{
|
|
BMP280 *dev = reinterpret_cast<BMP280 *>(arg);
|
|
|
|
dev->cycle();
|
|
}
|
|
|
|
void
|
|
BMP280::cycle()
|
|
{
|
|
if (_collect_phase) {
|
|
collect();
|
|
unsigned wait_gap = _report_ticks - _max_mesure_ticks;
|
|
|
|
if ((wait_gap != 0) && (_running)) {
|
|
work_queue(HPWORK, &_work, (worker_t)&BMP280::cycle_trampoline, this,
|
|
wait_gap); //need to wait some time before new measurement
|
|
return;
|
|
}
|
|
|
|
}
|
|
|
|
measure();
|
|
|
|
if (_running) {
|
|
work_queue(HPWORK, &_work, (worker_t)&BMP280::cycle_trampoline, this, _max_mesure_ticks);
|
|
}
|
|
|
|
}
|
|
|
|
int
|
|
BMP280::measure()
|
|
{
|
|
_collect_phase = true;
|
|
|
|
perf_begin(_measure_perf);
|
|
|
|
/* start measure */
|
|
int ret = _interface->set_reg(_curr_ctrl | BPM280_CTRL_MODE_FORCE, BPM280_ADDR_CTRL);
|
|
|
|
if (ret != OK) {
|
|
perf_count(_comms_errors);
|
|
perf_cancel(_measure_perf);
|
|
return -EIO;
|
|
}
|
|
|
|
perf_end(_measure_perf);
|
|
|
|
return OK;
|
|
}
|
|
|
|
int
|
|
BMP280::collect()
|
|
{
|
|
_collect_phase = false;
|
|
|
|
perf_begin(_sample_perf);
|
|
|
|
struct baro_report report;
|
|
/* this should be fairly close to the end of the conversion, so the best approximation of the time */
|
|
report.timestamp = hrt_absolute_time();
|
|
report.error_count = perf_event_count(_comms_errors);
|
|
|
|
bmp280::data_s *data = _interface->get_data(BPM280_ADDR_DATA);
|
|
|
|
if (data == nullptr) {
|
|
perf_count(_comms_errors);
|
|
perf_cancel(_sample_perf);
|
|
return -EIO;
|
|
}
|
|
|
|
//convert data to number 20 bit
|
|
uint32_t p_raw = data->p_msb << 12 | data->p_lsb << 4 | data->p_xlsb >> 4;
|
|
uint32_t t_raw = data->t_msb << 12 | data->t_lsb << 4 | data->t_xlsb >> 4;
|
|
|
|
// Temperature
|
|
float ofs = (float) t_raw - _fcal.t1;
|
|
float t_fine = (ofs * _fcal.t3 + _fcal.t2) * ofs;
|
|
_T = t_fine * (1.0f / 5120.0f);
|
|
|
|
// Pressure
|
|
float tf = t_fine - 128000.0f;
|
|
float x1 = (tf * _fcal.p6 + _fcal.p5) * tf + _fcal.p4;
|
|
float x2 = (tf * _fcal.p3 + _fcal.p2) * tf + _fcal.p1;
|
|
|
|
float pf = ((float) p_raw + x1) / x2;
|
|
_P = (pf * _fcal.p9 + _fcal.p8) * pf + _fcal.p7;
|
|
|
|
|
|
report.temperature = _T;
|
|
report.pressure = _P / 100.0f; // to mbar
|
|
|
|
/* publish it */
|
|
orb_publish(ORB_ID(sensor_baro), _baro_topic, &report);
|
|
|
|
_reports->force(&report);
|
|
|
|
/* notify anyone waiting for data */
|
|
poll_notify(POLLIN);
|
|
|
|
perf_end(_sample_perf);
|
|
|
|
return OK;
|
|
}
|
|
|
|
void
|
|
BMP280::print_info()
|
|
{
|
|
perf_print_counter(_sample_perf);
|
|
perf_print_counter(_comms_errors);
|
|
printf("poll interval: %u us \n", _report_ticks * USEC_PER_TICK);
|
|
_reports->print_info("report queue");
|
|
|
|
sensor_baro_s brp = {};
|
|
_reports->get(&brp);
|
|
print_message(brp);
|
|
}
|
|
|
|
/**
|
|
* Local functions in support of the shell command.
|
|
*/
|
|
namespace bmp280
|
|
{
|
|
|
|
/*
|
|
list of supported bus configurations
|
|
*/
|
|
struct bmp280_bus_option {
|
|
enum BMP280_BUS busid;
|
|
const char *devpath;
|
|
BMP280_constructor interface_constructor;
|
|
uint8_t busnum;
|
|
uint32_t device;
|
|
bool external;
|
|
BMP280 *dev;
|
|
} bus_options[] = {
|
|
#if defined(PX4_SPIDEV_EXT_BARO) && defined(PX4_SPI_BUS_EXT)
|
|
{ BMP280_BUS_SPI_EXTERNAL, "/dev/bmp280_spi_ext", &bmp280_spi_interface, PX4_SPI_BUS_EXT, PX4_SPIDEV_EXT_BARO, true, NULL },
|
|
#endif
|
|
#if defined(PX4_SPIDEV_BARO)
|
|
# if defined(PX4_SPIDEV_BARO_BUS)
|
|
{ BMP280_BUS_SPI_INTERNAL, "/dev/bmp280_spi_int", &bmp280_spi_interface, PX4_SPIDEV_BARO_BUS, PX4_SPIDEV_BARO, false, NULL },
|
|
# else
|
|
{ BMP280_BUS_SPI_INTERNAL, "/dev/bmp280_spi_int", &bmp280_spi_interface, PX4_SPI_BUS_SENSORS, PX4_SPIDEV_BARO, false, NULL },
|
|
# endif
|
|
#endif
|
|
#ifdef PX4_I2C_OBDEV_BMP280
|
|
{ BMP280_BUS_I2C_INTERNAL, "/dev/bmp280_i2c_int", &bmp280_i2c_interface, PX4_I2C_BUS_EXPANSION, PX4_I2C_OBDEV_BMP280, false, NULL },
|
|
#endif
|
|
#if defined(PX4_I2C_BUS_EXPANSION) && defined(PX4_I2C_EXT_OBDEV_BMP280)
|
|
{ BMP280_BUS_I2C_EXTERNAL, "/dev/bmp280_i2c_ext", &bmp280_i2c_interface, PX4_I2C_BUS_EXPANSION, PX4_I2C_EXT_OBDEV_BMP280, true, NULL },
|
|
#endif
|
|
};
|
|
#define NUM_BUS_OPTIONS (sizeof(bus_options)/sizeof(bus_options[0]))
|
|
|
|
bool start_bus(struct bmp280_bus_option &bus);
|
|
struct bmp280_bus_option &find_bus(enum BMP280_BUS busid);
|
|
void start(enum BMP280_BUS busid);
|
|
void test(enum BMP280_BUS busid);
|
|
void reset(enum BMP280_BUS busid);
|
|
void info();
|
|
void usage();
|
|
|
|
|
|
/**
|
|
* Start the driver.
|
|
*/
|
|
bool
|
|
start_bus(struct bmp280_bus_option &bus)
|
|
{
|
|
if (bus.dev != nullptr) {
|
|
PX4_ERR("bus option already started");
|
|
exit(1);
|
|
}
|
|
|
|
bmp280::IBMP280 *interface = bus.interface_constructor(bus.busnum, bus.device, bus.external);
|
|
|
|
if (interface->init() != OK) {
|
|
delete interface;
|
|
PX4_WARN("no device on bus %u", (unsigned)bus.busid);
|
|
return false;
|
|
}
|
|
|
|
bus.dev = new BMP280(interface, bus.devpath);
|
|
|
|
if (bus.dev == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
if (OK != bus.dev->init()) {
|
|
delete bus.dev;
|
|
bus.dev = nullptr;
|
|
return false;
|
|
}
|
|
|
|
int fd = open(bus.devpath, O_RDONLY);
|
|
|
|
/* set the poll rate to default, starts automatic data collection */
|
|
if (fd == -1) {
|
|
PX4_ERR("can't open baro device");
|
|
exit(1);
|
|
}
|
|
|
|
if (ioctl(fd, SENSORIOCSPOLLRATE, SENSOR_POLLRATE_DEFAULT) < 0) {
|
|
close(fd);
|
|
PX4_ERR("failed setting default poll rate");
|
|
exit(1);
|
|
}
|
|
|
|
close(fd);
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
* Start the driver.
|
|
*
|
|
* This function call only returns once the driver
|
|
* is either successfully up and running or failed to start.
|
|
*/
|
|
void
|
|
start(enum BMP280_BUS busid)
|
|
{
|
|
uint8_t i;
|
|
bool started = false;
|
|
|
|
for (i = 0; i < NUM_BUS_OPTIONS; i++) {
|
|
if (busid == BMP280_BUS_ALL && bus_options[i].dev != NULL) {
|
|
// this device is already started
|
|
continue;
|
|
}
|
|
|
|
if (busid != BMP280_BUS_ALL && bus_options[i].busid != busid) {
|
|
// not the one that is asked for
|
|
continue;
|
|
}
|
|
|
|
started |= start_bus(bus_options[i]);
|
|
}
|
|
|
|
if (!started) {
|
|
PX4_WARN("bus option number is %d", i);
|
|
PX4_ERR("driver start failed");
|
|
exit(1);
|
|
}
|
|
|
|
// one or more drivers started OK
|
|
exit(0);
|
|
}
|
|
|
|
|
|
/**
|
|
* find a bus structure for a busid
|
|
*/
|
|
struct bmp280_bus_option &find_bus(enum BMP280_BUS busid)
|
|
{
|
|
for (uint8_t i = 0; i < NUM_BUS_OPTIONS; i++) {
|
|
if ((busid == BMP280_BUS_ALL ||
|
|
busid == bus_options[i].busid) && bus_options[i].dev != NULL) {
|
|
return bus_options[i];
|
|
}
|
|
}
|
|
|
|
PX4_ERR("bus %u not started", (unsigned)busid);
|
|
exit(1);
|
|
}
|
|
|
|
/**
|
|
* Perform some basic functional tests on the driver;
|
|
* make sure we can collect data from the sensor in polled
|
|
* and automatic modes.
|
|
*/
|
|
void
|
|
test(enum BMP280_BUS busid)
|
|
{
|
|
struct bmp280_bus_option &bus = find_bus(busid);
|
|
struct baro_report report;
|
|
ssize_t sz;
|
|
int ret;
|
|
|
|
int fd;
|
|
|
|
fd = open(bus.devpath, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
PX4_ERR("open failed (try 'bmp280 start' if the driver is not running)");
|
|
exit(1);
|
|
}
|
|
|
|
/* do a simple demand read */
|
|
sz = read(fd, &report, sizeof(report));
|
|
|
|
if (sz != sizeof(report)) {
|
|
PX4_ERR("immediate read failed");
|
|
exit(1);
|
|
}
|
|
|
|
print_message(report);
|
|
|
|
/* set the queue depth to 10 */
|
|
if (OK != ioctl(fd, SENSORIOCSQUEUEDEPTH, 10)) {
|
|
PX4_ERR("failed to set queue depth");
|
|
exit(1);
|
|
}
|
|
|
|
/* start the sensor polling at 2Hz */
|
|
if (OK != ioctl(fd, SENSORIOCSPOLLRATE, 2)) {
|
|
PX4_ERR("failed to set 2Hz poll rate");
|
|
exit(1);
|
|
}
|
|
|
|
/* read the sensor 5x and report each value */
|
|
for (unsigned i = 0; i < 5; i++) {
|
|
struct pollfd fds;
|
|
|
|
/* wait for data to be ready */
|
|
fds.fd = fd;
|
|
fds.events = POLLIN;
|
|
ret = poll(&fds, 1, 2000);
|
|
|
|
if (ret != 1) {
|
|
PX4_ERR("timed out waiting for sensor data");
|
|
exit(1);
|
|
}
|
|
|
|
/* now go get it */
|
|
sz = read(fd, &report, sizeof(report));
|
|
|
|
if (sz != sizeof(report)) {
|
|
PX4_ERR("periodic read failed");
|
|
exit(1);
|
|
}
|
|
|
|
print_message(report);
|
|
}
|
|
|
|
close(fd);
|
|
PX4_ERR("PASS");
|
|
exit(0);
|
|
}
|
|
|
|
/**
|
|
* Reset the driver.
|
|
*/
|
|
void
|
|
reset(enum BMP280_BUS busid)
|
|
{
|
|
struct bmp280_bus_option &bus = find_bus(busid);
|
|
int fd;
|
|
|
|
fd = open(bus.devpath, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
PX4_ERR("failed ");
|
|
exit(1);
|
|
}
|
|
|
|
if (ioctl(fd, SENSORIOCRESET, 0) < 0) {
|
|
PX4_ERR("driver reset failed");
|
|
exit(1);
|
|
}
|
|
|
|
if (ioctl(fd, SENSORIOCSPOLLRATE, SENSOR_POLLRATE_DEFAULT) < 0) {
|
|
PX4_ERR("driver poll restart failed");
|
|
exit(1);
|
|
}
|
|
|
|
exit(0);
|
|
}
|
|
|
|
/**
|
|
* Print a little info about the driver.
|
|
*/
|
|
void
|
|
info()
|
|
{
|
|
for (uint8_t i = 0; i < NUM_BUS_OPTIONS; i++) {
|
|
struct bmp280_bus_option &bus = bus_options[i];
|
|
|
|
if (bus.dev != nullptr) {
|
|
PX4_WARN("%s", bus.devpath);
|
|
bus.dev->print_info();
|
|
}
|
|
}
|
|
|
|
exit(0);
|
|
}
|
|
|
|
void
|
|
usage()
|
|
{
|
|
PX4_WARN("missing command: try 'start', 'info', 'test', 'test2', 'reset'");
|
|
PX4_WARN("options:");
|
|
PX4_WARN(" -X (external I2C bus TODO)");
|
|
PX4_WARN(" -I (internal I2C bus TODO)");
|
|
PX4_WARN(" -S (external SPI bus)");
|
|
PX4_WARN(" -s (internal SPI bus)");
|
|
}
|
|
|
|
} // namespace
|
|
|
|
int
|
|
bmp280_main(int argc, char *argv[])
|
|
{
|
|
int myoptind = 1;
|
|
int ch;
|
|
const char *myoptarg = nullptr;
|
|
enum BMP280_BUS busid = BMP280_BUS_ALL;
|
|
|
|
while ((ch = px4_getopt(argc, argv, "XISs", &myoptind, &myoptarg)) != EOF) {
|
|
switch (ch) {
|
|
case 'X':
|
|
busid = BMP280_BUS_I2C_EXTERNAL;
|
|
break;
|
|
|
|
case 'I':
|
|
busid = BMP280_BUS_I2C_INTERNAL;
|
|
break;
|
|
|
|
case 'S':
|
|
busid = BMP280_BUS_SPI_EXTERNAL;
|
|
break;
|
|
|
|
case 's':
|
|
busid = BMP280_BUS_SPI_INTERNAL;
|
|
break;
|
|
|
|
default:
|
|
bmp280::usage();
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (myoptind >= argc) {
|
|
bmp280::usage();
|
|
return -1;
|
|
}
|
|
|
|
const char *verb = argv[myoptind];
|
|
|
|
/*
|
|
* Start/load the driver.
|
|
*/
|
|
if (!strcmp(verb, "start")) {
|
|
bmp280::start(busid);
|
|
}
|
|
|
|
/*
|
|
* Test the driver/device.
|
|
*/
|
|
if (!strcmp(verb, "test")) {
|
|
bmp280::test(busid);
|
|
}
|
|
|
|
/*
|
|
* Reset the driver.
|
|
*/
|
|
if (!strcmp(verb, "reset")) {
|
|
bmp280::reset(busid);
|
|
}
|
|
|
|
/*
|
|
* Print driver information.
|
|
*/
|
|
if (!strcmp(verb, "info")) {
|
|
bmp280::info();
|
|
}
|
|
|
|
PX4_ERR("unrecognized command, try 'start', 'test', 'reset' or 'info'");
|
|
return -1;
|
|
}
|