Line data Source code
1 0 : /*
2 : * Copyright (c) 2023 Trackunit Corporation
3 : *
4 : * SPDX-License-Identifier: Apache-2.0
5 : */
6 :
7 : #ifndef ZEPHYR_DRIVERS_GNSS_GNSS_H_
8 : #define ZEPHYR_DRIVERS_GNSS_GNSS_H_
9 :
10 : #include <zephyr/drivers/gnss.h>
11 :
12 : /** Internal function used by GNSS drivers to publish GNSS data */
13 1 : void gnss_publish_data(const struct device *dev, const struct gnss_data *data);
14 :
15 : /** Internal function used by GNSS drivers to publish GNSS satellites */
16 1 : void gnss_publish_satellites(const struct device *dev, const struct gnss_satellite *satellites,
17 : uint16_t size);
18 :
19 : #endif /* ZEPHYR_DRIVERS_GNSS_GNSS_H_ */
|