| /* |
| * Copyright (c) 2017 Linaro Limited |
| * Copyright (c) 2019 Nordic Semiconductor ASA |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| #include <zephyr.h> |
| #include <device.h> |
| #include <drivers/sensor.h> |
| #include <stdio.h> |
| #include <sys/util.h> |
| |
| static void process_sample(const struct device *dev) |
| { |
| static unsigned int obs; |
| struct sensor_value pressure, temp; |
| |
| if (sensor_sample_fetch(dev) < 0) { |
| printf("Sensor sample update error\n"); |
| return; |
| } |
| |
| if (sensor_channel_get(dev, SENSOR_CHAN_PRESS, &pressure) < 0) { |
| printf("Cannot read LPS22HH pressure channel\n"); |
| return; |
| } |
| |
| if (sensor_channel_get(dev, SENSOR_CHAN_AMBIENT_TEMP, &temp) < 0) { |
| printf("Cannot read LPS22HH temperature channel\n"); |
| return; |
| } |
| |
| ++obs; |
| printf("Observation: %u\n", obs); |
| |
| /* display pressure */ |
| printf("Pressure: %.3f kPa\n", sensor_value_to_double(&pressure)); |
| |
| /* display temperature */ |
| printf("Temperature: %.2f C\n", sensor_value_to_double(&temp)); |
| |
| } |
| |
| static void lps22hh_handler(const struct device *dev, |
| struct sensor_trigger *trig) |
| { |
| process_sample(dev); |
| } |
| |
| void main(void) |
| { |
| const struct device *dev = device_get_binding("LPS22HH"); |
| |
| if (dev == NULL) { |
| printf("Could not get LPS22HH device\n"); |
| return; |
| } |
| |
| if (IS_ENABLED(CONFIG_LPS22HH_TRIGGER)) { |
| struct sensor_value attr = { |
| .val1 = 1, |
| }; |
| struct sensor_trigger trig = { |
| .type = SENSOR_TRIG_DATA_READY, |
| .chan = SENSOR_CHAN_ALL, |
| }; |
| |
| if (sensor_attr_set(dev, SENSOR_CHAN_ALL, |
| SENSOR_ATTR_SAMPLING_FREQUENCY, &attr) < 0) { |
| printf("Cannot configure sampling rate\n"); |
| return; |
| } |
| if (sensor_trigger_set(dev, &trig, lps22hh_handler) < 0) { |
| printf("Cannot configure trigger\n"); |
| return; |
| }; |
| printk("Configured for triggered collection at %u Hz\n", |
| attr.val1); |
| } |
| |
| while (!IS_ENABLED(CONFIG_LPS22HH_TRIGGER)) { |
| process_sample(dev); |
| k_sleep(K_MSEC(2000)); |
| } |
| k_sleep(K_FOREVER); |
| } |