ardupilot/libraries/AP_HAL_Linux/AnalogIn_Navio.cpp

115 lines
2.4 KiB
C++

#include <AP_HAL/AP_HAL.h>
#if CONFIG_HAL_BOARD == HAL_BOARD_LINUX
#include "AnalogIn_Navio.h"
#define NAVIO_ANALOGIN_DEBUG 0
#if NAVIO_ANALOGIN_DEBUG
#include <cstdio>
#define debug(fmt, args ...) do {hal.console->printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); } while(0)
#define error(fmt, args ...) do {fprintf(stderr,"%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); } while(0)
#else
#define debug(fmt, args ...)
#define error(fmt, args ...)
#endif
NavioAnalogSource::NavioAnalogSource(int16_t pin):
_pin(pin),
_value(0.0f)
{
}
void NavioAnalogSource::set_pin(uint8_t pin)
{
if (_pin == pin) {
return;
}
_pin = pin;
}
float NavioAnalogSource::read_average()
{
return read_latest();
}
float NavioAnalogSource::read_latest()
{
return _value;
}
float NavioAnalogSource::voltage_average()
{
return _value;
}
float NavioAnalogSource::voltage_latest()
{
return _value;
}
float NavioAnalogSource::voltage_average_ratiometric()
{
return _value;
}
extern const AP_HAL::HAL& hal;
NavioAnalogIn::NavioAnalogIn()
{
_adc = new AP_ADC_ADS1115();
_channels_number = _adc->get_channels_number();
}
AP_HAL::AnalogSource* NavioAnalogIn::channel(int16_t pin)
{
for (uint8_t j = 0; j < _channels_number; j++) {
if (_channels[j] == NULL) {
_channels[j] = new NavioAnalogSource(pin);
return _channels[j];
}
}
hal.console->println("Out of analog channels");
return NULL;
}
void NavioAnalogIn::init(void* implspecific)
{
_adc->init();
hal.scheduler->suspend_timer_procs();
hal.scheduler->register_timer_process(FUNCTOR_BIND_MEMBER(&NavioAnalogIn::_update, void));
hal.scheduler->resume_timer_procs();
}
void NavioAnalogIn::_update()
{
if (hal.scheduler->micros() - _last_update_timestamp < 100000) {
return;
}
adc_report_s reports[NAVIO_ADC_MAX_CHANNELS];
size_t rc = _adc->read(reports, 6);
for (size_t i = 0; i < rc; i++) {
for (uint8_t j=0; j < rc; j++) {
NavioAnalogSource *source = _channels[j];
#if 0
if (source != NULL) {
fprintf(stderr, "pin: %d id: %d data: %.3f\n", source->_pin, reports[i].id, reports[i].data);
}
#endif
if (source != NULL && reports[i].id == source->_pin) {
source->_value = reports[i].data / 1000;
}
}
}
_last_update_timestamp = hal.scheduler->micros();
}
#endif