Infuse-IoT SDK API 0.0.1
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
gnss.h
Go to the documentation of this file.
1
9#ifndef INFUSE_SDK_INCLUDE_INFUSE_VALIDATION_GNSS_H_
10#define INFUSE_SDK_INCLUDE_INFUSE_VALIDATION_GNSS_H_
11
12#include <zephyr/device.h>
13#include <zephyr/sys/util.h>
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
24enum {
27#ifdef CONFIG_GNSS_UBX_M8
29 VALIDATION_GNSS_UBX_M8_DC_DC_BURN = BIT(7),
30#endif /* CONFIG_GNSS_UBX_M8 */
31};
32
42int infuse_validation_gnss(const struct device *dev, uint8_t flags);
43
48#ifdef __cplusplus
49}
50#endif
51
52#endif /* INFUSE_SDK_INCLUDE_INFUSE_VALIDATION_GNSS_H_ */
int infuse_validation_gnss(const struct device *dev, uint8_t flags)
Validate the behaviour of GNSS.
@ VALIDATION_GNSS_POWER_UP
Validate that GNSS powers up.
Definition gnss.h:26