-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig.projbuild
More file actions
107 lines (91 loc) · 3.04 KB
/
Copy pathKconfig.projbuild
File metadata and controls
107 lines (91 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
menu "EspnowCom configuration"
choice ESP_MASTER_SLAVE
prompt "Select Master or Slave mode"
help
WiFi mode(station or softap).
config ESPNOWCOM_MASTERMODE
bool "Master mode"
config ESPNOWCOM_SLAVEMODE
bool "Slave mode"
endchoice
config ESPNOWCOM_MASTERNAME
depends on ESPNOWCOM_MASTERMODE
string "Master Name"
default "master"
help
sets the name of the master which is sent to the slaves
config ESPNOWCOM_SLAVENAME
depends on ESPNOWCOM_SLAVEMODE
string "Slave Name"
default "slave"
help
sets the name of the slave which is sent to the master
config ESPNOWCOM_MAX_SLAVES
depends on ESPNOWCOM_MASTERMODE
int "Max Slaves"
default 1
range 0 255
help
max. slaves that can connect to master,
note: discovery of the slaves will run until all max slaves are connected
config ESPNOWCOM_PAYLOADLEN
depends on ESPNOWCOM_MASTERMODE
int "payload len"
default 4
range 4 30
help
defines the payload sent management communication
config ESPNOWCOM_PING_INTERVAL
depends on ESPNOWCOM_MASTERMODE
int "ping intervall"
default 1000
range 100 10000
help
defines how often a ping is sent to the slaves to check if they are still online
config ESPNOWCOM_QUEUE_LEN
int "Send / receive queue length"
default 5
range 1 30
help
defines how many entries can be stored on the queue before it is full
config ESPNOWCOM_MAX_CB_FUNCTIONS
int "max callback functions"
default 5
range 1 50
help
defines how many callbackfunctions can be added
choice ESPNOWCOM_WIFI_MODE
prompt "WiFi mode"
default ESPNOW_WIFI_MODE_STATION
help
WiFi mode(station or softap).
config CONFIG_ESPNOWCOM_WIFI_MODE_STATION
bool "Station"
config ESPNOWCOM_WIFI_MODE_STATION_SOFTAP
bool "Softap"
endchoice
config ESPNOWCOM_PMK
string "ESPNOW primary master key"
default "pmk1234567890123"
help
ESPNOW primary master for the example to use. The length of ESPNOW primary master must be 16 bytes.
config ESPNOWCOM_LMK
string "ESPNOW local master key"
default "lmk1234567890123"
help
ESPNOW local master for the example to use. The length of ESPNOW local master must be 16 bytes.
config ESPNOWCOM_CHANNEL
int "Channel"
default 1
range 0 14
help
The channel on which sending and receiving ESPNOW data.
config ESPNOWCOM_ENABLE_LONG_RANGE
bool "Enable Long Range"
default "n"
help
When enable long range, the PHY rate of ESP32 will be 512Kbps or 256Kbps
config ESPNOWCOM_DEBUG
bool "Enable Debug outputs"
default "n"
endmenu