Infuse-IoT SDK API 0.0.1
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
environmental_args.h
Go to the documentation of this file.
1
10#ifndef INFUSE_SDK_INCLUDE_INFUSE_TASK_RUNNER_TASKS_ENVIRONMENTAL_ARGS_H_
11#define INFUSE_SDK_INCLUDE_INFUSE_TASK_RUNNER_TASKS_ENVIRONMENTAL_ARGS_H_
12
13#include <stdint.h>
14
15#include <zephyr/sys/util.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21enum {
22 /* Temperature, Pressure, Humidity */
24 /* Temperature */
26};
27
30} __packed;
31
32#ifdef __cplusplus
33}
34#endif
35
36#endif /* INFUSE_SDK_INCLUDE_INFUSE_TASK_RUNNER_TASKS_ENVIRONMENTAL_ARGS_H_ */
@ TASK_ENVIRONMENTAL_LOG_T
Definition environmental_args.h:25
@ TASK_ENVIRONMENTAL_LOG_TPH
Definition environmental_args.h:23
Environmental task arguments.
Definition environmental_args.h:29