1 /*
2  * Copyright (c) 2023 Google LLC
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_DRIVERS_SENSOR_SB_TSI_SB_TSI_H_
8 #define ZEPHYR_DRIVERS_SENSOR_SB_TSI_SB_TSI_H_
9 
10 #define SB_TSI_TEMP_INT 0x01
11 #define SB_TSI_TEMP_DEC 0x10
12 #define SB_TSI_TEMP_DEC_SHIFT 5
13 #define SB_TSI_TEMP_DEC_SCALE 8
14 
15 #endif
16