1 /* 2 * Copyright (c) 2024 SILA Embedded Solutions GmbH 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_BD8LB600FS_H_ 7 #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_BD8LB600FS_H_ 8 9 #include <zephyr/drivers/sensor.h> 10 11 enum sensor_channel_bd8lb600fs { 12 /** 13 * Open load detected, 14 * boolean with one bit per output 15 */ 16 SENSOR_CHAN_BD8LB600FS_OPEN_LOAD = SENSOR_ATTR_PRIV_START, 17 /** 18 * Over current protection or thermal shutdown, 19 * boolean with one bit per output 20 */ 21 SENSOR_CHAN_BD8LB600FS_OVER_CURRENT_OR_THERMAL_SHUTDOWN, 22 }; 23 24 #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_BD8LB600FS_H_ */ 25