1 /* 2 * Copyright (c) 2024 SILA Embedded Solutions GmbH 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_TLE9104_H_ 7 #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_TLE9104_H_ 8 9 #include <zephyr/drivers/sensor.h> 10 11 enum sensor_channel_tle9104 { 12 /** Open load detected, boolean with one bit per output */ 13 SENSOR_CHAN_TLE9104_OPEN_LOAD = SENSOR_ATTR_PRIV_START, 14 /** Over current detected, boolean with one bit per output */ 15 SENSOR_CHAN_TLE9104_OVER_CURRENT, 16 }; 17 18 #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_TLE9104_H_ */ 19