|
|
|
@ -75,7 +75,8 @@ static int bvd_sample_fetch(struct device *dev, enum sensor_channel chan) {
@@ -75,7 +75,8 @@ static int bvd_sample_fetch(struct device *dev, enum sensor_channel chan) {
|
|
|
|
|
if (rc == 0) { |
|
|
|
|
int32_t val = drv_data->adc_raw; |
|
|
|
|
|
|
|
|
|
adc_raw_to_millivolts(adc_ref_internal(drv_data->adc), drv_data->acc.gain, as->resolution, &val); |
|
|
|
|
adc_raw_to_millivolts(adc_ref_internal(drv_data->adc), drv_data->acc.gain, as->resolution, |
|
|
|
|
&val); |
|
|
|
|
|
|
|
|
|
uint16_t millivolts = val * (uint64_t)drv_cfg->full_ohm / drv_cfg->output_ohm; |
|
|
|
|
LOG_DBG("ADC raw %d ~ %d mV => %d mV\n", drv_data->adc_raw, val, millivolts); |
|
|
|
@ -100,8 +101,7 @@ static int bvd_sample_fetch(struct device *dev, enum sensor_channel chan) {
@@ -100,8 +101,7 @@ static int bvd_sample_fetch(struct device *dev, enum sensor_channel chan) {
|
|
|
|
|
return rc; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static int bvd_channel_get(struct device *dev, enum sensor_channel chan, |
|
|
|
|
struct sensor_value *val) { |
|
|
|
|
static int bvd_channel_get(struct device *dev, enum sensor_channel chan, struct sensor_value *val) { |
|
|
|
|
struct bvd_data *drv_data = dev->driver_data; |
|
|
|
|
|
|
|
|
|
switch (chan) { |
|
|
|
@ -127,7 +127,6 @@ static const struct sensor_driver_api bvd_api = {
@@ -127,7 +127,6 @@ static const struct sensor_driver_api bvd_api = {
|
|
|
|
|
.channel_get = bvd_channel_get, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int bvd_init(struct device *dev) { |
|
|
|
|
struct bvd_data *drv_data = dev->driver_data; |
|
|
|
|
const struct bvd_config *drv_cfg = dev->config_info; |
|
|
|
@ -150,8 +149,8 @@ static int bvd_init(struct device *dev) {
@@ -150,8 +149,8 @@ static int bvd_init(struct device *dev) {
|
|
|
|
|
rc = gpio_pin_configure(drv_data->gpio, drv_cfg->power_gpios.pin, |
|
|
|
|
GPIO_OUTPUT_INACTIVE | drv_cfg->power_gpios.flags); |
|
|
|
|
if (rc != 0) { |
|
|
|
|
LOG_ERR("Failed to control feed %s.%u: %d", |
|
|
|
|
drv_cfg->power_gpios.label, drv_cfg->power_gpios.pin, rc); |
|
|
|
|
LOG_ERR("Failed to control feed %s.%u: %d", drv_cfg->power_gpios.label, |
|
|
|
|
drv_cfg->power_gpios.pin, rc); |
|
|
|
|
return rc; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -185,12 +184,14 @@ static int bvd_init(struct device *dev) {
@@ -185,12 +184,14 @@ static int bvd_init(struct device *dev) {
|
|
|
|
|
|
|
|
|
|
static struct bvd_data bvd_data; |
|
|
|
|
static const struct bvd_config bvd_cfg = { |
|
|
|
|
.io_channel = { |
|
|
|
|
.io_channel = |
|
|
|
|
{ |
|
|
|
|
DT_INST_IO_CHANNELS_LABEL(0), |
|
|
|
|
DT_INST_IO_CHANNELS_INPUT(0), |
|
|
|
|
}, |
|
|
|
|
#if DT_INST_NODE_HAS_PROP(0, power_gpios) |
|
|
|
|
.power_gpios = { |
|
|
|
|
.power_gpios = |
|
|
|
|
{ |
|
|
|
|
DT_INST_GPIO_LABEL(0, power_gpios), |
|
|
|
|
DT_INST_PIN(0, power_gpios), |
|
|
|
|
DT_INST_FLAGS(0, power_gpios), |
|
|
|
@ -200,6 +201,5 @@ static const struct bvd_config bvd_cfg = {
@@ -200,6 +201,5 @@ static const struct bvd_config bvd_cfg = {
|
|
|
|
|
.full_ohm = DT_INST_PROP(0, full_ohms), |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
DEVICE_AND_API_INIT(bvd_dev, DT_INST_LABEL(0), &bvd_init, |
|
|
|
|
&bvd_data, &bvd_cfg, POST_KERNEL, CONFIG_SENSOR_INIT_PRIORITY, |
|
|
|
|
&bvd_api); |
|
|
|
|
DEVICE_AND_API_INIT(bvd_dev, DT_INST_LABEL(0), &bvd_init, &bvd_data, &bvd_cfg, POST_KERNEL, |
|
|
|
|
CONFIG_SENSOR_INIT_PRIORITY, &bvd_api); |
|
|
|
|