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
►
cryptoauthlib
►
driver_bme680
►
driver_cryptocell_310
►
edhoc-c
►
esp8266_sdk
►
etl
►
fatfs
►
flashdb
►
libb2
►
libcose
►
libschc
►
littlefs
►
littlefs2
►
lua
►
lv_drivers
►
lvgl
►
lwip
►
mbedtls
►
micropython
►
mynewt-core
▼
nanocbor
▼
include
▼
nanocbor
config.h
►
nimble
►
nrfx
►
opendsme
►
openthread
►
openwsn
►
paho-mqtt
►
semtech-loramac
►
spiffs
►
tinydtls
►
tinyusb
►
tinyvcdiff
►
tlsf
►
u8g2
►
ucglib
►
uwb-core
►
uwb-dw1000
►
wakaama
►
wolfssl
►
sys
►
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
config.h
1
/*
2
* Copyright (C) 2019 Koen Zandberg
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
16
#ifndef NANOCBOR_CONFIG_H
17
#define NANOCBOR_CONFIG_H
18
19
#include <stdint.h>
20
21
#ifdef __cplusplus
22
extern
"C"
{
23
#endif
24
25
#ifndef NANOCBOR_RECURSION_MAX
26
#define NANOCBOR_RECURSION_MAX 10
27
#endif
28
33
#ifndef NANOCBOR_BYTEORDER_HEADER
34
#define NANOCBOR_BYTEORDER_HEADER "byteorder.h"
35
#endif
36
42
#ifndef NANOCBOR_BE64TOH_FUNC
43
#define NANOCBOR_BE64TOH_FUNC(be) (ntohll(be))
44
#endif
45
51
#ifndef NANOCBOR_HTOBE64_FUNC
52
#define NANOCBOR_HTOBE64_FUNC(be) (htonll(be))
53
#endif
54
60
#ifndef NANOCBOR_HTOBE32_FUNC
61
#define NANOCBOR_HTOBE32_FUNC(he) htonl(he)
62
#endif
63
67
#ifndef NANOCBOR_SIZE_SIZET
68
#if (SIZE_MAX == UINT16_MAX)
69
#define NANOCBOR_SIZE_SIZET NANOCBOR_SIZE_SHORT
70
#elif (SIZE_MAX == UINT32_MAX)
71
#define NANOCBOR_SIZE_SIZET NANOCBOR_SIZE_WORD
72
#elif (SIZE_MAX == UINT64_MAX)
73
#define NANOCBOR_SIZE_SIZET NANOCBOR_SIZE_LONG
74
#else
75
#error ERROR: unable to determine maximum size of size_t
76
#endif
77
#endif
78
79
#ifdef __cplusplus
80
}
81
#endif
82
83
#endif
/* NANOCBOR_CONFIG_H */
Generated on Fri Apr 4 2025 22:08:53 by
1.12.0