2015-08-07 00:37:06 -03:00
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2015-08-12 07:46:23 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2015-08-07 00:37:06 -03:00
|
|
|
|
2018-02-03 09:58:44 -04:00
|
|
|
#if (CONFIG_HAL_BOARD == HAL_BOARD_PX4) || ((CONFIG_HAL_BOARD == HAL_BOARD_VRBRAIN) && (!defined(CONFIG_ARCH_BOARD_VRBRAIN_V51) && !defined(CONFIG_ARCH_BOARD_VRUBRAIN_V52)))
|
2016-11-10 22:14:13 -04:00
|
|
|
#include <AP_BoardConfig/AP_BoardConfig.h>
|
2015-08-07 00:37:06 -03:00
|
|
|
#include "RPM_PX4_PWM.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <drivers/drv_pwm_input.h>
|
|
|
|
#include <drivers/drv_hrt.h>
|
|
|
|
#include <drivers/drv_sensor.h>
|
|
|
|
#include <uORB/topics/pwm_input.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
2016-03-31 18:43:36 -03:00
|
|
|
#include <cmath>
|
2015-08-07 00:37:06 -03:00
|
|
|
|
2015-11-18 20:00:39 -04:00
|
|
|
#define PWM_LOGGING 0
|
|
|
|
|
2015-08-07 00:37:06 -03:00
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2016-11-10 22:14:13 -04:00
|
|
|
extern "C" {
|
|
|
|
int pwm_input_main(int, char **);
|
|
|
|
};
|
|
|
|
|
2015-08-07 00:37:06 -03:00
|
|
|
/*
|
|
|
|
open the sensor in constructor
|
|
|
|
*/
|
|
|
|
AP_RPM_PX4_PWM::AP_RPM_PX4_PWM(AP_RPM &_ap_rpm, uint8_t instance, AP_RPM::RPM_State &_state) :
|
|
|
|
AP_RPM_Backend(_ap_rpm, instance, _state)
|
|
|
|
{
|
2017-03-20 15:58:36 -03:00
|
|
|
#if HAL_PX4_HAVE_PWM_INPUT
|
2016-11-10 22:14:13 -04:00
|
|
|
if (AP_BoardConfig::px4_start_driver(pwm_input_main, "pwm_input", "start")) {
|
|
|
|
hal.console->printf("started pwm_input driver\n");
|
|
|
|
}
|
|
|
|
#endif
|
2015-08-07 00:37:06 -03:00
|
|
|
_fd = open(PWMIN0_DEVICE_PATH, O_RDONLY);
|
|
|
|
if (_fd == -1) {
|
|
|
|
hal.console->printf("Unable to open %s\n", PWMIN0_DEVICE_PATH);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// keep a queue of 5 samples to reduce noise by averaging
|
|
|
|
if (ioctl(_fd, SENSORIOCSQUEUEDEPTH, 5) != 0) {
|
|
|
|
hal.console->printf("Failed to setup RPM queue\n");
|
|
|
|
close(_fd);
|
|
|
|
_fd = -1;
|
|
|
|
return;
|
|
|
|
}
|
2015-11-18 20:00:39 -04:00
|
|
|
|
2016-05-14 05:05:13 -03:00
|
|
|
_resolution_usec = PWMIN_MINRPM_TO_RESOLUTION(((uint32_t)(ap_rpm._minimum[state.instance]+0.5f)));
|
|
|
|
ioctl(_fd, PWMINIOSRESOLUTION, _resolution_usec);
|
|
|
|
|
2015-11-18 20:00:39 -04:00
|
|
|
#if PWM_LOGGING
|
|
|
|
_logfd = open("/fs/microsd/pwm.log", O_WRONLY|O_CREAT|O_TRUNC, 0644);
|
|
|
|
#endif
|
2015-08-07 00:37:06 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
close the file descriptor
|
|
|
|
*/
|
|
|
|
AP_RPM_PX4_PWM::~AP_RPM_PX4_PWM()
|
|
|
|
{
|
|
|
|
if (_fd != -1) {
|
|
|
|
close(_fd);
|
|
|
|
_fd = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AP_RPM_PX4_PWM::update(void)
|
|
|
|
{
|
|
|
|
if (_fd == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-05-14 05:05:13 -03:00
|
|
|
uint32_t newres = PWMIN_MINRPM_TO_RESOLUTION(((uint32_t)(ap_rpm._minimum[state.instance]+0.5f)));
|
|
|
|
if (newres != _resolution_usec) {
|
|
|
|
ioctl(_fd, PWMINIOSRESOLUTION, newres);
|
|
|
|
_resolution_usec = newres;
|
|
|
|
}
|
|
|
|
|
2015-08-07 00:37:06 -03:00
|
|
|
struct pwm_input_s pwm;
|
|
|
|
uint16_t count = 0;
|
|
|
|
const float scaling = ap_rpm._scaling[state.instance];
|
2015-11-19 22:00:41 -04:00
|
|
|
float maximum = ap_rpm._maximum[state.instance];
|
2015-11-20 18:07:41 -04:00
|
|
|
float minimum = ap_rpm._minimum[state.instance];
|
2015-11-19 22:00:41 -04:00
|
|
|
float quality = 0;
|
2015-08-07 00:37:06 -03:00
|
|
|
|
|
|
|
while (::read(_fd, &pwm, sizeof(pwm)) == sizeof(pwm)) {
|
|
|
|
// the px4 pwm_input driver reports the period in microseconds
|
2015-08-08 07:00:36 -03:00
|
|
|
if (pwm.period == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
float rpm = scaling * (1.0e6f * 60) / pwm.period;
|
2015-11-19 22:00:41 -04:00
|
|
|
float filter_value = signal_quality_filter.get();
|
2015-11-20 18:13:33 -04:00
|
|
|
state.rate_rpm = signal_quality_filter.apply(rpm);
|
2015-11-20 18:07:41 -04:00
|
|
|
if ((maximum <= 0 || rpm <= maximum) && (rpm >= minimum)) {
|
2015-11-19 22:00:41 -04:00
|
|
|
if (is_zero(filter_value)){
|
|
|
|
quality = 0;
|
|
|
|
} else {
|
|
|
|
quality = 1 - constrain_float((fabsf(rpm-filter_value))/filter_value, 0.0, 1.0);
|
|
|
|
quality = powf(quality, 2.0);
|
|
|
|
}
|
2015-08-07 00:37:06 -03:00
|
|
|
count++;
|
2015-11-19 22:00:41 -04:00
|
|
|
} else {
|
|
|
|
quality = 0;
|
2015-08-07 00:37:06 -03:00
|
|
|
}
|
2015-11-19 22:00:41 -04:00
|
|
|
|
2015-11-18 20:00:39 -04:00
|
|
|
#if PWM_LOGGING
|
|
|
|
if (_logfd != -1) {
|
|
|
|
dprintf(_logfd, "%u %u %u\n",
|
|
|
|
(unsigned)pwm.timestamp/1000,
|
|
|
|
(unsigned)pwm.period,
|
|
|
|
(unsigned)pwm.pulse_width);
|
|
|
|
}
|
|
|
|
#endif
|
2015-11-19 22:00:41 -04:00
|
|
|
|
|
|
|
state.signal_quality = (0.1 * quality) + (0.9 * state.signal_quality); // simple LPF
|
2015-08-07 00:37:06 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (count != 0) {
|
2015-11-19 23:14:09 -04:00
|
|
|
state.last_reading_ms = AP_HAL::millis();
|
2015-08-07 00:37:06 -03:00
|
|
|
}
|
2015-11-26 00:08:51 -04:00
|
|
|
|
|
|
|
// assume we get readings at at least 1Hz, otherwise reset quality to zero
|
|
|
|
if (AP_HAL::millis() - state.last_reading_ms > 1000) {
|
|
|
|
state.signal_quality = 0;
|
|
|
|
}
|
2015-08-07 00:37:06 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // CONFIG_HAL_BOARD
|