1 /* 2 * SPDX-FileCopyrightText: Copyright (c) 2023 Carl Zeiss Meditec AG 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 #ifndef ZEPHYR_DRIVERS_SENSOR_ADLTC2990_ADLTC2990_EMUL_H 7 #define ZEPHYR_DRIVERS_SENSOR_ADLTC2990_ADLTC2990_EMUL_H 8 9 #include <zephyr/drivers/emul.h> 10 #include <zephyr/drivers/i2c.h> 11 12 void adltc2990_emul_set_reg(const struct emul *target, uint8_t reg_addr, const uint8_t *val); 13 14 void adltc2990_emul_get_reg(const struct emul *target, uint8_t reg_addr, uint8_t *val); 15 16 void adltc2990_emul_reset(const struct emul *target); 17 18 #endif /* ZEPHYR_DRIVERS_SENSOR_ADLTC2990_ADLTC2990_EMUL_H */ 19