Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
Main Page
Related Pages
Supported Boards
Modules
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Enumerations
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
w
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerator
Related Symbols
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
▼
RIOT OS
►
RIOT Documentation
mutex.doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
RIOT Vision
►
Governance of the RIOT Community
►
Roadmap
►
Code of Conduct Information
►
Creating modules
►
Creating an application
►
Porting boards
►
Writing a Device Driver in RIOT
►
Getting started
►
Flashing via RIOT's Build System
►
Terminal programs configuration
►
Build In Docker
►
Running and creating tests
►
Hints for quicker & better RIOT development
►
Build System Basics
►
List of Features (Features as Build System Enties)
►
Kconfig in RIOT
►
Using C++ in RIOT
►
Using Rust in RIOT
►
Advanced build system tricks
►
Debugging Tools
►
Emulators
►
Release cycle
►
IO-Mapping and Shields
►
Changelog
►
Removed Features and Modules
Deprecated List
Todo List
Supported Boards
►
Modules
►
Namespaces
►
Data Structures
▼
Files
▼
File List
►
boards
►
core
►
cpu
►
dist
►
drivers
►
makefiles
►
pkg
▼
sys
►
arduino
►
auto_init
►
clif
►
cpp11-compat
►
crypto
►
embunit
►
fs
►
include
►
libc
►
log_color
►
log_printfnoformat
►
net
►
oneway-malloc
►
posix
►
psa_crypto
▼
test_utils
►
netdev_eth_minimal
►
netdev_ieee802154_minimal
▼
result_output
▼
check
result_output_types.h
►
json
►
txt
►
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
result_output_types.h
1
/*
2
* Copyright (C) 2021 HAW Hamburg
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser
5
* General Public License v2.1. See the file LICENSE in the top level
6
* directory for more details.
7
*/
8
9
#ifndef RESULT_OUTPUT_TYPES_H
10
#define RESULT_OUTPUT_TYPES_H
11
12
#ifdef __cplusplus
13
extern
"C"
{
14
#endif
15
16
#ifndef CONFIG_TURO_MAX_NESTING_LEVELS
17
#define CONFIG_TURO_MAX_NESTING_LEVELS 32
18
#endif
19
24
typedef
enum
{
25
TURO_STATE_UNKNOWN,
26
TURO_STATE_READY,
27
TURO_STATE_CONTAINER,
28
TURO_STATE_DICT_OPENED,
29
TURO_STATE_ARRAY_OPENED
30
} turo_state_t;
37
struct
turo
{
38
size_t
idx
;
39
turo_state_t
states
[CONFIG_TURO_MAX_NESTING_LEVELS];
40
};
37
struct
turo
{
…
};
41
42
#ifdef __cplusplus
43
}
44
#endif
45
#endif
/* RESULT_OUTPUT_TYPES_H */
turo
turo type
Definition
result_output_types.h:37
turo::states
turo_state_t states[CONFIG_TURO_MAX_NESTING_LEVELS]
state buffer
Definition
result_output_types.h:39
turo::idx
size_t idx
index for states
Definition
result_output_types.h:38
Generated on Fri Apr 4 2025 09:43:01 by
1.12.0