Lines Matching +full:1 +full:- +full:bit
5 * SPDX-License-Identifier: Apache-2.0
11 #include <zephyr/dt-bindings/dt-util.h>
19 #define APDS9253_RESOLUTION_19BIT_200MS BIT(4)
20 #define APDS9253_RESOLUTION_18BIT_100MS BIT(5) /* default */
21 #define APDS9253_RESOLUTION_17BIT_50MS (BIT(5) | BIT(4))
22 #define APDS9253_RESOLUTION_16BIT_25MS BIT(6)
23 #define APDS9253_RESOLUTION_13BIT_3MS (BIT(6) | BIT(4))
32 #define APDS9253_MEASUREMENT_RATE_2000MS (BIT(2) | BIT(1) | BIT(0))
33 #define APDS9253_MEASUREMENT_RATE_1000MS (BIT(2) | BIT(0))
34 #define APDS9253_MEASUREMENT_RATE_500MS BIT(2)
35 #define APDS9253_MEASUREMENT_RATE_200MS (BIT(1) | BIT(0))
36 #define APDS9253_MEASUREMENT_RATE_100MS BIT(1) /* default */
37 #define APDS9253_MEASUREMENT_RATE_50MS BIT(0)
47 #define APDS9253_GAIN_RANGE_18 BIT(2)
48 #define APDS9253_GAIN_RANGE_9 (BIT(1) | BIT(0))
49 #define APDS9253_GAIN_RANGE_6 BIT(1)
50 #define APDS9253_GAIN_RANGE_3 BIT(0) /* default */