1 /* 2 * Copyright (c) 2024 SILA Embedded Solutions GmbH 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_DRIVERS_SENSOR_MAX31790_MAX31790_FAN_FAULT_H_ 8 #define ZEPHYR_DRIVERS_SENSOR_MAX31790_MAX31790_FAN_FAULT_H_ 9 10 #include <zephyr/drivers/i2c.h> 11 12 struct max31790_fan_fault_config { 13 struct i2c_dt_spec i2c; 14 }; 15 16 struct max31790_fan_fault_data { 17 uint16_t value; 18 }; 19 20 #endif /* ZEPHYR_DRIVERS_SENSOR_MAX31790_MAX31790_FAN_FAULT_H_ */ 21