You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.8 KiB
92 lines
1.8 KiB
#include "AnalogIn_ADS1115.h" |
|
|
|
AnalogSource_ADS1115::AnalogSource_ADS1115(int16_t pin): |
|
_pin(pin), |
|
_value(0.0f) |
|
{ |
|
} |
|
|
|
void AnalogSource_ADS1115::set_pin(uint8_t pin) |
|
{ |
|
if (_pin == pin) { |
|
return; |
|
} |
|
_pin = pin; |
|
} |
|
|
|
float AnalogSource_ADS1115::read_average() |
|
{ |
|
return read_latest(); |
|
} |
|
|
|
float AnalogSource_ADS1115::read_latest() |
|
{ |
|
return _value; |
|
} |
|
|
|
float AnalogSource_ADS1115::voltage_average() |
|
{ |
|
return _value; |
|
} |
|
|
|
float AnalogSource_ADS1115::voltage_latest() |
|
{ |
|
return _value; |
|
} |
|
|
|
float AnalogSource_ADS1115::voltage_average_ratiometric() |
|
{ |
|
return _value; |
|
} |
|
|
|
extern const AP_HAL::HAL &hal; |
|
|
|
AnalogIn_ADS1115::AnalogIn_ADS1115() |
|
{ |
|
_adc = new AP_ADC_ADS1115(); |
|
_channels_number = _adc->get_channels_number(); |
|
} |
|
|
|
AP_HAL::AnalogSource* AnalogIn_ADS1115::channel(int16_t pin) |
|
{ |
|
WITH_SEMAPHORE(_semaphore); |
|
for (uint8_t j = 0; j < _channels_number; j++) { |
|
if (_channels[j] == nullptr) { |
|
_channels[j] = new AnalogSource_ADS1115(pin); |
|
return _channels[j]; |
|
} |
|
} |
|
|
|
hal.console->printf("Out of analog channels\n"); |
|
return nullptr; |
|
} |
|
|
|
void AnalogIn_ADS1115::init() |
|
{ |
|
_adc->init(); |
|
|
|
hal.scheduler->register_timer_process(FUNCTOR_BIND_MEMBER(&AnalogIn_ADS1115::_update, void)); |
|
} |
|
|
|
void AnalogIn_ADS1115::_update() |
|
{ |
|
if (AP_HAL::micros() - _last_update_timestamp < 100000) { |
|
return; |
|
} |
|
|
|
adc_report_s reports[ADS1115_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++) { |
|
AnalogSource_ADS1115 *source = _channels[j]; |
|
|
|
if (source != nullptr && reports[i].id == source->_pin) { |
|
source->_value = reports[i].data / 1000; |
|
} |
|
} |
|
} |
|
|
|
_last_update_timestamp = AP_HAL::micros(); |
|
}
|
|
|