-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathKconfig
41 lines (34 loc) · 929 Bytes
/
Kconfig
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
menu "SWD host driver for ESP32"
config ESP_SWD_CLK_PIN
int "SWD SWCLK Pin"
default 1
help
SWD SWCLK Pin
config ESP_SWD_IO_PIN
int "SWD IO Pin"
default 2
help
SWD SWDIO Pin
config ESP_SWD_NRST_PIN
int "SWD Reset Pin"
default 6
help
SWD nRST Pin
config ESP_SWD_BOOT_PIN
int "Bootloader Pin"
default 11
help
Use this to force target to go into bootloader mode,
in case the original firmware disabled SWD (needed for some new STM32 chips)
config ESP_SWD_HAS_LED
bool "Enable Status LED support"
default n
help
Toggle status LED support - turn it off to maximise the performance
config ESP_SWD_LED_PIN
int "SWD LED Pin"
depends on ESP_SWD_HAS_LED
default 3
help
SWD Status LED Pin
endmenu