1 /*
2  * Copyright (c) 2025 Croxel Inc.
3  * Copyright (c) 2025 CogniPilot Foundation
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 #include <zephyr/drivers/sensor.h>
9 #include <zephyr/rtio/rtio.h>
10 
11 #ifndef ZEPHYR_DRIVERS_SENSOR_PAA3905_STREAM_H_
12 #define ZEPHYR_DRIVERS_SENSOR_PAA3905_STREAM_H_
13 
14 int paa3905_stream_init(const struct device *dev);
15 
16 void paa3905_stream_submit(const struct device *dev,
17 			   struct rtio_iodev_sqe *iodev_sqe);
18 
19 #endif /* ZEPHYR_DRIVERS_SENSOR_PAA3905_STREAM_H_ */
20