/* * Copyright (c) 2022 Intel Corporation * Copyright (c) 2023 Google LLC * Copyright (c) 2025 Croxel Inc. * Copyright (c) 2025 CogniPilot Foundation * * SPDX-License-Identifier: Apache-2.0 */ #ifndef ZEPHYR_DRIVERS_SENSOR_ICM45686_TRIGGER_H_ #define ZEPHYR_DRIVERS_SENSOR_ICM45686_TRIGGER_H_ #include #include /* Configure triggers for the icm45686 sensor */ int icm45686_trigger_set(const struct device *dev, const struct sensor_trigger *trig, sensor_trigger_handler_t handler); /* Initialization for icm45686 Triggers module */ int icm45686_trigger_init(const struct device *dev); #endif /* ZEPHYR_DRIVERS_SENSOR_ICM45686_TRIGGER_H_ */