-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathKconfig.projbuild
More file actions
68 lines (55 loc) · 1.71 KB
/
Kconfig.projbuild
File metadata and controls
68 lines (55 loc) · 1.71 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
menu "micro-ROS Transport Settings"
menu "UART Settings (for serial transport)"
config MICROROS_UART_TXD
int "UART TX pin"
range -1 33
default -1
help
Select Tx Down pin for uart connection or -1 for no change (Only used if serial transport is used for microros).
config MICROROS_UART_RXD
int "UART RX pin"
range -1 33
default -1
help
Select Rx Down pin for uart connection or -1 for no change (Only used if serial transport is used for microros).
config MICROROS_UART_RTS
int "UART RTS pin"
range -1 33
default -1
help
Select RTS Down pin for uart connection or -1 for no change (Only used if serial transport is used for microros).
config MICROROS_UART_CTS
int "UART CTS pin"
range -1 33
default -1
help
Select CTS Down pin for uart connection or -1 for no change (Only used if serial transport is used for microros).
endmenu
menu "WiFi Configuration"
config ESP_WIFI_AP
bool "Wifi act as Access point"
default false
help
The ESP32 is acting as an access point
config ESP_WIFI_SSID
string "WiFi SSID"
default "myssid"
help
SSID (network name) for the example to connect to.
config ESP_WIFI_PASSWORD
string "WiFi Password"
default "mypassword"
help
WiFi password (WPA or WPA2) for the example to use.
config ESP_WIFI_CHANNEL
int "Wifi channel 1 to 13"
range 1 11
default 8
help
config ESP_MAXIMUM_RETRY
int "Maximum retry"
default 5
help
Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.
endmenu
endmenu