1# Copyright (c) 2023 STMicroelectronics
2# Copyright (c) 2023 PHYTEC Messtechnik GmbH
3# SPDX-License-Identifier: Apache-2.0
4
5description: |
6    STMicroelectronics LPS28DFW pressure and temperature sensor. This is an
7    extension of st,lps22df driver binding.
8
9    Example:
10    #include <zephyr/dt-bindings/sensor/lps2xdf.h>
11
12    lps28dfw@5d {
13      ...
14
15      odr = <LPS2xDF_DT_ODR_10HZ>;
16      lpf = <LPS2xDF_DT_LP_FILTER_ODR_4>;
17      avg = <LPS2xDF_DT_AVG_128_SAMPLES>;
18    };
19
20include: st,lps22df-common.yaml
21
22properties:
23  fs:
24    type: int
25    default: 0
26    description: |
27        Specify the full-scale mode.
28        The default is the power-on reset value.
29
30        - 0 # LPS28DFW_DT_FS_MODE_1_1260
31        - 1 # LPS28DFW_DT_FS_MODE_2_4060
32    enum: [0, 1]
33