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
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
esp_wifi_params.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2019 Gunar Schorcht
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
20
#ifndef ESP_WIFI_PARAMS_H
21
#define ESP_WIFI_PARAMS_H
22
23
#if defined(MODULE_ESP_WIFI) || defined(DOXYGEN)
24
33
#ifndef ESP_WIFI_STACKSIZE
34
#define ESP_WIFI_STACKSIZE (THREAD_STACKSIZE_DEFAULT)
35
#endif
36
40
#ifndef ESP_WIFI_PRIO
41
#define ESP_WIFI_PRIO (GNRC_NETIF_PRIO)
42
#endif
43
47
#ifndef WIFI_SSID
48
#ifdef ESP_WIFI_SSID
49
#define WIFI_SSID ESP_WIFI_SSID
50
#else
51
#define WIFI_SSID "RIOT_AP"
52
#endif
53
#endif
54
58
#ifdef DOXYGEN
59
#define WIFI_PASS "ThisistheRIOTporttoESP"
60
#endif
61
62
#if !defined(WIFI_PASS) && defined(ESP_WIFI_PASS)
63
#define WIFI_PASS ESP_WIFI_PASS
64
#endif
65
66
#if defined(MODULE_ESP_WIFI_AP) || defined(DOXYGEN)
67
75
#ifndef ESP_WIFI_SSID_DYNAMIC
76
#define ESP_WIFI_SSID_DYNAMIC 0
77
#endif
78
82
#ifndef ESP_WIFI_SSID_HIDDEN
83
#define ESP_WIFI_SSID_HIDDEN (0)
84
#endif
85
89
#ifndef ESP_WIFI_MAX_CONN
90
#define ESP_WIFI_MAX_CONN (4)
91
#endif
92
96
#ifndef ESP_WIFI_BEACON_INTERVAL
97
#define ESP_WIFI_BEACON_INTERVAL (100)
98
#endif
99
100
#endif
/* defined(ESP_WIFI_AP) || defined(DOXYGEN) */
101
104
#ifdef __cplusplus
105
extern
"C"
{
106
#endif
107
108
#ifdef __cplusplus
109
}
110
#endif
111
112
#endif
/* MODULE_ESP_WIFI || DOXYGEN */
113
114
#endif
/* ESP_WIFI_PARAMS_H */
Generated on Mon Apr 7 2025 09:17:07 by
1.12.0