fix(bvd): Add SENSOR_CHAN_ALL support

This commit is contained in:
Nick 2020-10-27 15:06:42 -05:00
parent 2f09957ae2
commit 1cd4abce00

View file

@ -61,7 +61,9 @@ static int bvd_sample_fetch(struct device *dev, enum sensor_channel chan) {
struct adc_sequence *as = &drv_data->as; struct adc_sequence *as = &drv_data->as;
// Make sure selected channel is supported // Make sure selected channel is supported
if (chan != SENSOR_CHAN_GAUGE_VOLTAGE && chan != SENSOR_CHAN_GAUGE_STATE_OF_CHARGE) { if (chan != SENSOR_CHAN_GAUGE_VOLTAGE && chan != SENSOR_CHAN_GAUGE_STATE_OF_CHARGE &&
chan != SENSOR_CHAN_ALL) {
LOG_DBG("Selected channel is not supported: %d.", chan);
return -ENOTSUP; return -ENOTSUP;
} }