mirror of
https://github.com/apache/nuttx.git
synced 2026-06-01 16:59:28 +08:00
Fix Kconfig style
Remove spaces from Kconfig files Add TABs Replace help => ---help--- Remove extra TABs Add comments
This commit is contained in:
@@ -1110,145 +1110,188 @@ choice
|
|||||||
depends on STM32H5_I2C1
|
depends on STM32H5_I2C1
|
||||||
prompt "I2C1 Input Clock Selection"
|
prompt "I2C1 Input Clock Selection"
|
||||||
default STM32H5_I2C1_CLK_PCLK1
|
default STM32H5_I2C1_CLK_PCLK1
|
||||||
|
|
||||||
config STM32H5_I2C1_CLK_CSI
|
config STM32H5_I2C1_CLK_CSI
|
||||||
bool "CSI"
|
bool "CSI"
|
||||||
|
|
||||||
config STM32H5_I2C1_CLK_HSI
|
config STM32H5_I2C1_CLK_HSI
|
||||||
bool "HSI"
|
bool "HSI"
|
||||||
|
|
||||||
config STM32H5_I2C1_CLK_PCLK1
|
config STM32H5_I2C1_CLK_PCLK1
|
||||||
bool "PCLK1"
|
bool "PCLK1"
|
||||||
|
|
||||||
config STM32H5_I2C1_CLK_PLL3R
|
config STM32H5_I2C1_CLK_PLL3R
|
||||||
bool "PLL3R"
|
bool "PLL3R"
|
||||||
endchoice
|
|
||||||
|
endchoice # I2C1 Input Clock Selection
|
||||||
|
|
||||||
choice
|
choice
|
||||||
depends on STM32H5_I2C2
|
depends on STM32H5_I2C2
|
||||||
prompt "I2C2 Input Clock Selection"
|
prompt "I2C2 Input Clock Selection"
|
||||||
default STM32H5_I2C2_CLK_PCLK1
|
default STM32H5_I2C2_CLK_PCLK1
|
||||||
|
|
||||||
config STM32H5_I2C2_CLK_CSI
|
config STM32H5_I2C2_CLK_CSI
|
||||||
bool "CSI"
|
bool "CSI"
|
||||||
|
|
||||||
config STM32H5_I2C2_CLK_HSI
|
config STM32H5_I2C2_CLK_HSI
|
||||||
bool "HSI"
|
bool "HSI"
|
||||||
|
|
||||||
config STM32H5_I2C2_CLK_PCLK1
|
config STM32H5_I2C2_CLK_PCLK1
|
||||||
bool "PCLK1"
|
bool "PCLK1"
|
||||||
|
|
||||||
config STM32H5_I2C2_CLK_PLL3R
|
config STM32H5_I2C2_CLK_PLL3R
|
||||||
bool "PLL3R"
|
bool "PLL3R"
|
||||||
endchoice
|
|
||||||
|
endchoice # I2C2 Input Clock Selection
|
||||||
|
|
||||||
choice
|
choice
|
||||||
depends on STM32H5_I2C3
|
depends on STM32H5_I2C3
|
||||||
prompt "I2C3 Input Clock Selection"
|
prompt "I2C3 Input Clock Selection"
|
||||||
default STM32H5_I2C3_CLK_PCLK3
|
default STM32H5_I2C3_CLK_PCLK3
|
||||||
|
|
||||||
config STM32H5_I2C3_CLK_CSI
|
config STM32H5_I2C3_CLK_CSI
|
||||||
bool "CSI"
|
bool "CSI"
|
||||||
|
|
||||||
config STM32H5_I2C3_CLK_HSI
|
config STM32H5_I2C3_CLK_HSI
|
||||||
bool "HSI"
|
bool "HSI"
|
||||||
|
|
||||||
config STM32H5_I2C3_CLK_PCLK3
|
config STM32H5_I2C3_CLK_PCLK3
|
||||||
bool "PCLK3"
|
bool "PCLK3"
|
||||||
|
|
||||||
config STM32H5_I2C3_CLK_PLL3R
|
config STM32H5_I2C3_CLK_PLL3R
|
||||||
bool "PLL3R"
|
bool "PLL3R"
|
||||||
endchoice
|
|
||||||
|
endchoice # I2C3 Input Clock Selection
|
||||||
|
|
||||||
choice
|
choice
|
||||||
depends on STM32H5_I2C4
|
depends on STM32H5_I2C4
|
||||||
prompt "I2C4 Input Clock Selection"
|
prompt "I2C4 Input Clock Selection"
|
||||||
default STM32H5_I2C4_CLK_PCLK3
|
default STM32H5_I2C4_CLK_PCLK3
|
||||||
|
|
||||||
config STM32H5_I2C4_CLK_CSI
|
config STM32H5_I2C4_CLK_CSI
|
||||||
bool "CSI"
|
bool "CSI"
|
||||||
|
|
||||||
config STM32H5_I2C4_CLK_HSI
|
config STM32H5_I2C4_CLK_HSI
|
||||||
bool "HSI"
|
bool "HSI"
|
||||||
|
|
||||||
config STM32H5_I2C4_CLK_PCLK3
|
config STM32H5_I2C4_CLK_PCLK3
|
||||||
bool "PCLK3"
|
bool "PCLK3"
|
||||||
|
|
||||||
config STM32H5_I2C4_CLK_PLL3R
|
config STM32H5_I2C4_CLK_PLL3R
|
||||||
bool "PLL3R"
|
bool "PLL3R"
|
||||||
endchoice
|
|
||||||
|
|
||||||
endmenu
|
endchoice # I2C4 Input Clock Selection
|
||||||
|
|
||||||
|
endmenu # Clock Selection
|
||||||
|
|
||||||
menu "Rise/Fall Override"
|
menu "Rise/Fall Override"
|
||||||
|
|
||||||
config STM32H5_I2C1_RF_OVERRIDE
|
config STM32H5_I2C1_RF_OVERRIDE
|
||||||
bool "I2C1"
|
bool "I2C1"
|
||||||
default n
|
default n
|
||||||
depends on STM32H5_I2C1
|
depends on STM32H5_I2C1
|
||||||
|
|
||||||
config STM32H5_I2C2_RF_OVERRIDE
|
config STM32H5_I2C2_RF_OVERRIDE
|
||||||
bool "I2C2"
|
bool "I2C2"
|
||||||
default n
|
default n
|
||||||
depends on STM32H5_I2C2
|
depends on STM32H5_I2C2
|
||||||
|
|
||||||
config STM32H5_I2C3_RF_OVERRIDE
|
config STM32H5_I2C3_RF_OVERRIDE
|
||||||
bool "I2C3"
|
bool "I2C3"
|
||||||
default n
|
default n
|
||||||
depends on STM32H5_I2C3
|
depends on STM32H5_I2C3
|
||||||
|
|
||||||
config STM32H5_I2C4_RF_OVERRIDE
|
config STM32H5_I2C4_RF_OVERRIDE
|
||||||
bool "I2C4"
|
bool "I2C4"
|
||||||
default n
|
default n
|
||||||
depends on STM32H5_I2C4
|
depends on STM32H5_I2C4
|
||||||
|
|
||||||
menu "Rise/Fall Values"
|
menu "Rise/Fall Values"
|
||||||
|
|
||||||
config STM32H5_I2C1_RISE
|
config STM32H5_I2C1_RISE
|
||||||
int "I2C1 Rise Time (ns)"
|
int "I2C1 Rise Time (ns)"
|
||||||
range 0 1000
|
range 0 1000
|
||||||
default 20
|
default 20
|
||||||
depends on STM32H5_I2C1_RF_OVERRIDE
|
depends on STM32H5_I2C1_RF_OVERRIDE
|
||||||
|
|
||||||
config STM32H5_I2C1_FALL
|
config STM32H5_I2C1_FALL
|
||||||
int "I2C1 Fall Time (ns)"
|
int "I2C1 Fall Time (ns)"
|
||||||
range 0 300
|
range 0 300
|
||||||
default 20
|
default 20
|
||||||
depends on STM32H5_I2C1_RF_OVERRIDE
|
depends on STM32H5_I2C1_RF_OVERRIDE
|
||||||
|
|
||||||
config STM32H5_I2C2_RISE
|
config STM32H5_I2C2_RISE
|
||||||
int "I2C2 Rise Time (ns)"
|
int "I2C2 Rise Time (ns)"
|
||||||
range 0 1000
|
range 0 1000
|
||||||
default 20
|
default 20
|
||||||
depends on STM32H5_I2C2_RF_OVERRIDE
|
depends on STM32H5_I2C2_RF_OVERRIDE
|
||||||
|
|
||||||
config STM32H5_I2C2_FALL
|
config STM32H5_I2C2_FALL
|
||||||
int "I2C2 Fall Time (ns)"
|
int "I2C2 Fall Time (ns)"
|
||||||
range 0 300
|
range 0 300
|
||||||
default 20
|
default 20
|
||||||
depends on STM32H5_I2C2_RF_OVERRIDE
|
depends on STM32H5_I2C2_RF_OVERRIDE
|
||||||
|
|
||||||
config STM32H5_I2C3_RISE
|
config STM32H5_I2C3_RISE
|
||||||
int "I2C3 Rise Time (ns)"
|
int "I2C3 Rise Time (ns)"
|
||||||
range 0 1000
|
range 0 1000
|
||||||
default 20
|
default 20
|
||||||
depends on STM32H5_I2C3_RF_OVERRIDE
|
depends on STM32H5_I2C3_RF_OVERRIDE
|
||||||
|
|
||||||
config STM32H5_I2C3_FALL
|
config STM32H5_I2C3_FALL
|
||||||
int "I2C3 Fall Time (ns)"
|
int "I2C3 Fall Time (ns)"
|
||||||
range 0 300
|
range 0 300
|
||||||
default 20
|
default 20
|
||||||
depends on STM32H5_I2C3_RF_OVERRIDE
|
depends on STM32H5_I2C3_RF_OVERRIDE
|
||||||
|
|
||||||
config STM32H5_I2C4_RISE
|
config STM32H5_I2C4_RISE
|
||||||
int "I2C4 Rise Time (ns)"
|
int "I2C4 Rise Time (ns)"
|
||||||
range 0 1000
|
range 0 1000
|
||||||
default 20
|
default 20
|
||||||
depends on STM32H5_I2C4_RF_OVERRIDE
|
depends on STM32H5_I2C4_RF_OVERRIDE
|
||||||
|
|
||||||
config STM32H5_I2C4_FALL
|
config STM32H5_I2C4_FALL
|
||||||
int "I2C4 Fall Time (ns)"
|
int "I2C4 Fall Time (ns)"
|
||||||
range 0 300
|
range 0 300
|
||||||
default 20
|
default 20
|
||||||
depends on STM32H5_I2C4_RF_OVERRIDE
|
depends on STM32H5_I2C4_RF_OVERRIDE
|
||||||
endmenu
|
|
||||||
endmenu
|
endmenu # Rise/Fall Values
|
||||||
|
|
||||||
|
endmenu # Rise/Fall Override
|
||||||
|
|
||||||
menu "Filtering"
|
menu "Filtering"
|
||||||
|
|
||||||
menu "Digital Filters"
|
menu "Digital Filters"
|
||||||
|
|
||||||
config STM32H5_I2C1_DNF
|
config STM32H5_I2C1_DNF
|
||||||
int "I2C1 Digital Noise Filter"
|
int "I2C1 Digital Noise Filter"
|
||||||
range 0 15
|
range 0 15
|
||||||
default 0
|
default 0
|
||||||
depends on STM32H5_I2C1
|
depends on STM32H5_I2C1
|
||||||
|
|
||||||
config STM32H5_I2C2_DNF
|
config STM32H5_I2C2_DNF
|
||||||
int "I2C2 Digital Noise Filter"
|
int "I2C2 Digital Noise Filter"
|
||||||
range 0 15
|
range 0 15
|
||||||
default 0
|
default 0
|
||||||
depends on STM32H5_I2C2
|
depends on STM32H5_I2C2
|
||||||
|
|
||||||
config STM32H5_I2C3_DNF
|
config STM32H5_I2C3_DNF
|
||||||
int "I2C3 Digital Noise Filter"
|
int "I2C3 Digital Noise Filter"
|
||||||
range 0 15
|
range 0 15
|
||||||
default 0
|
default 0
|
||||||
depends on STM32H5_I2C3
|
depends on STM32H5_I2C3
|
||||||
|
|
||||||
config STM32H5_I2C4_DNF
|
config STM32H5_I2C4_DNF
|
||||||
int "I2C4 Digital Noise Filter"
|
int "I2C4 Digital Noise Filter"
|
||||||
range 0 15
|
range 0 15
|
||||||
default 0
|
default 0
|
||||||
depends on STM32H5_I2C4
|
depends on STM32H5_I2C4
|
||||||
endmenu
|
|
||||||
|
endmenu # Digital Filters
|
||||||
|
|
||||||
menu "Analog Filters"
|
menu "Analog Filters"
|
||||||
|
|
||||||
config STM32H5_I2C1_ANFOFF
|
config STM32H5_I2C1_ANFOFF
|
||||||
int "Turn off I2C1 Analog Filter (0=on, 1=off)"
|
int "Turn off I2C1 Analog Filter (0=on, 1=off)"
|
||||||
default 1
|
default 1
|
||||||
@@ -1272,9 +1315,10 @@ config STM32H5_I2C4_ANFOFF
|
|||||||
default 1
|
default 1
|
||||||
range 0 1
|
range 0 1
|
||||||
depends on STM32H5_I2C4
|
depends on STM32H5_I2C4
|
||||||
endmenu
|
|
||||||
|
|
||||||
endmenu
|
endmenu # Analog Filters
|
||||||
|
|
||||||
|
endmenu # Filtering
|
||||||
|
|
||||||
config STM32H5_I2C_DYNTIMEO
|
config STM32H5_I2C_DYNTIMEO
|
||||||
bool "Use dynamic timeouts"
|
bool "Use dynamic timeouts"
|
||||||
|
|||||||
+117
-117
@@ -182,7 +182,7 @@ config XMC4_ECAT
|
|||||||
default y
|
default y
|
||||||
depends on ARCH_CHIP_XMC4800
|
depends on ARCH_CHIP_XMC4800
|
||||||
---help---
|
---help---
|
||||||
Enable start up of the EtherCAT interface and configure ports.
|
Enable start up of the EtherCAT interface and configure ports.
|
||||||
|
|
||||||
config XMC4_ECAT_P0
|
config XMC4_ECAT_P0
|
||||||
bool "Enable EtherCAT port 0"
|
bool "Enable EtherCAT port 0"
|
||||||
@@ -630,140 +630,140 @@ endmenu # XMC4xxx USIC Configuration
|
|||||||
menu "XMC4xxx PWM Configuration"
|
menu "XMC4xxx PWM Configuration"
|
||||||
depends on XMC4_PWM
|
depends on XMC4_PWM
|
||||||
|
|
||||||
config XMC4_CCU40
|
config XMC4_CCU40
|
||||||
bool "Enable CCU40"
|
bool "Enable CCU40"
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Support CCU40
|
Support CCU40
|
||||||
|
|
||||||
config XMC4_CCU40_CC40
|
config XMC4_CCU40_CC40
|
||||||
bool "Enable CCU40 Slice 0 (not compatible with tickless)"
|
bool "Enable CCU40 Slice 0 (not compatible with tickless)"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU40 && !CONFIG_SCHED_TICKLESS
|
depends on XMC4_CCU40 && !CONFIG_SCHED_TICKLESS
|
||||||
---help---
|
---help---
|
||||||
Support CCU40 CC40, cannot be activated when tickless OS is enabled
|
Support CCU40 CC40, cannot be activated when tickless OS is enabled
|
||||||
|
|
||||||
config XMC4_CCU40_CC41
|
config XMC4_CCU40_CC41
|
||||||
bool "Enable CCU40 Slice 1"
|
bool "Enable CCU40 Slice 1"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU40
|
depends on XMC4_CCU40
|
||||||
---help---
|
---help---
|
||||||
Support CCU40 CC41
|
Support CCU40 CC41
|
||||||
|
|
||||||
config XMC4_CCU40_CC42
|
config XMC4_CCU40_CC42
|
||||||
bool "Enable CCU40 Slice 2"
|
bool "Enable CCU40 Slice 2"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU40
|
depends on XMC4_CCU40
|
||||||
---help---
|
---help---
|
||||||
Support CCU40 CC42
|
Support CCU40 CC42
|
||||||
|
|
||||||
config XMC4_CCU40_CC43
|
config XMC4_CCU40_CC43
|
||||||
bool "Enable CCU40 Slice 3"
|
bool "Enable CCU40 Slice 3"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU40
|
depends on XMC4_CCU40
|
||||||
---help---
|
---help---
|
||||||
Support CCU40 CC43
|
Support CCU40 CC43
|
||||||
|
|
||||||
config XMC4_CCU41
|
config XMC4_CCU41
|
||||||
bool "Enable CCU41"
|
bool "Enable CCU41"
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Support CCU41
|
Support CCU41
|
||||||
|
|
||||||
config XMC4_CCU41_CC40
|
config XMC4_CCU41_CC40
|
||||||
bool "Enable CCU41 Slice 0 (not compatible with tickless)"
|
bool "Enable CCU41 Slice 0 (not compatible with tickless)"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU41 && !CONFIG_SCHED_TICKLESS
|
depends on XMC4_CCU41 && !CONFIG_SCHED_TICKLESS
|
||||||
---help---
|
---help---
|
||||||
Support CCU41 CC40, cannot be activated when tickless OS is enabled
|
Support CCU41 CC40, cannot be activated when tickless OS is enabled
|
||||||
|
|
||||||
config XMC4_CCU41_CC41
|
config XMC4_CCU41_CC41
|
||||||
bool "Enable CCU41 Slice 1"
|
bool "Enable CCU41 Slice 1"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU41
|
depends on XMC4_CCU41
|
||||||
---help---
|
---help---
|
||||||
Support CCU41 CC41
|
Support CCU41 CC41
|
||||||
|
|
||||||
config XMC4_CCU41_CC42
|
config XMC4_CCU41_CC42
|
||||||
bool "Enable CCU41 Slice 2"
|
bool "Enable CCU41 Slice 2"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU41
|
depends on XMC4_CCU41
|
||||||
---help---
|
---help---
|
||||||
Support CCU41 CC42
|
Support CCU41 CC42
|
||||||
|
|
||||||
config XMC4_CCU41_CC43
|
config XMC4_CCU41_CC43
|
||||||
bool "Enable CCU41 Slice 3"
|
bool "Enable CCU41 Slice 3"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU41
|
depends on XMC4_CCU41
|
||||||
---help---
|
---help---
|
||||||
Support CCU41 CC43
|
Support CCU41 CC43
|
||||||
|
|
||||||
config XMC4_CCU42
|
config XMC4_CCU42
|
||||||
bool "Enable CCU42"
|
bool "Enable CCU42"
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Support CCU42
|
Support CCU42
|
||||||
|
|
||||||
config XMC4_CCU42_CC40
|
config XMC4_CCU42_CC40
|
||||||
bool "Enable CCU42 Slice 0"
|
bool "Enable CCU42 Slice 0"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU42
|
depends on XMC4_CCU42
|
||||||
---help---
|
---help---
|
||||||
Support CCU42 CC40
|
Support CCU42 CC40
|
||||||
|
|
||||||
config XMC4_CCU42_CC41
|
config XMC4_CCU42_CC41
|
||||||
bool "Enable CCU42 Slice 1"
|
bool "Enable CCU42 Slice 1"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU42
|
depends on XMC4_CCU42
|
||||||
---help---
|
---help---
|
||||||
Support CCU42 CC41
|
Support CCU42 CC41
|
||||||
|
|
||||||
config XMC4_CCU42_CC42
|
config XMC4_CCU42_CC42
|
||||||
bool "Enable CCU42 Slice 2"
|
bool "Enable CCU42 Slice 2"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU42
|
depends on XMC4_CCU42
|
||||||
---help---
|
---help---
|
||||||
Support CCU42 CC42
|
Support CCU42 CC42
|
||||||
|
|
||||||
config XMC4_CCU42_CC43
|
config XMC4_CCU42_CC43
|
||||||
bool "Enable CCU42 Slice 3"
|
bool "Enable CCU42 Slice 3"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU42
|
depends on XMC4_CCU42
|
||||||
---help---
|
---help---
|
||||||
Support CCU42 CC43
|
Support CCU42 CC43
|
||||||
|
|
||||||
config XMC4_CCU43
|
config XMC4_CCU43
|
||||||
bool "Enable CCU43"
|
bool "Enable CCU43"
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Support CCU43
|
Support CCU43
|
||||||
|
|
||||||
config XMC4_CCU43_CC40
|
config XMC4_CCU43_CC40
|
||||||
bool "Enable CCU43 Slice 0"
|
bool "Enable CCU43 Slice 0"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU43
|
depends on XMC4_CCU43
|
||||||
---help---
|
---help---
|
||||||
Support CCU43 CC40
|
Support CCU43 CC40
|
||||||
|
|
||||||
config XMC4_CCU43_CC41
|
config XMC4_CCU43_CC41
|
||||||
bool "Enable CCU43 Slice 1"
|
bool "Enable CCU43 Slice 1"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU43
|
depends on XMC4_CCU43
|
||||||
---help---
|
---help---
|
||||||
Support CCU43 CC41
|
Support CCU43 CC41
|
||||||
|
|
||||||
config XMC4_CCU43_CC42
|
config XMC4_CCU43_CC42
|
||||||
bool "Enable CCU43 Slice 2"
|
bool "Enable CCU43 Slice 2"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU43
|
depends on XMC4_CCU43
|
||||||
---help---
|
---help---
|
||||||
Support CCU43 CC42
|
Support CCU43 CC42
|
||||||
|
|
||||||
config XMC4_CCU43_CC43
|
config XMC4_CCU43_CC43
|
||||||
bool "Enable CCU43 Slice 3"
|
bool "Enable CCU43 Slice 3"
|
||||||
default n
|
default n
|
||||||
depends on XMC4_CCU43
|
depends on XMC4_CCU43
|
||||||
---help---
|
---help---
|
||||||
Support CCU43 CC43
|
Support CCU43 CC43
|
||||||
|
|
||||||
endmenu # XMC4xxx PWM Configuration
|
endmenu # XMC4xxx PWM Configuration
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ config ESPRESSIF_SPI_BITBANG
|
|||||||
select ESP32S3_SPI if ARCH_CHIP_ESP32S3
|
select ESP32S3_SPI if ARCH_CHIP_ESP32S3
|
||||||
select SPI
|
select SPI
|
||||||
select SPI_BITBANG
|
select SPI_BITBANG
|
||||||
---help---
|
---help---
|
||||||
Software implemented SPI peripheral with GPIOs. Suggested to use if SPI peripherals are already in use.
|
Software implemented SPI peripheral with GPIOs. Suggested to use if SPI peripherals are already in use.
|
||||||
|
|
||||||
config ESPRESSIF_SPIFLASH
|
config ESPRESSIF_SPIFLASH
|
||||||
|
|||||||
@@ -1708,7 +1708,7 @@ choice ESP32S3_UNIVERSAL_MAC_ADDRESSES
|
|||||||
bool "Number of universally administered (by IEEE) MAC address"
|
bool "Number of universally administered (by IEEE) MAC address"
|
||||||
default ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR
|
default ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR
|
||||||
depends on ESP32S3_WIFI || ESP32S3_BLE
|
depends on ESP32S3_WIFI || ESP32S3_BLE
|
||||||
help
|
---help---
|
||||||
Configure the number of universally administered (by IEEE) MAC addresses.
|
Configure the number of universally administered (by IEEE) MAC addresses.
|
||||||
During initialization, MAC addresses for each network interface are generated or derived from a
|
During initialization, MAC addresses for each network interface are generated or derived from a
|
||||||
single base MAC address.
|
single base MAC address.
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ config BLUETOOTH_UART_GENERIC
|
|||||||
default n
|
default n
|
||||||
|
|
||||||
config BLUETOOTH_UART_SHIM
|
config BLUETOOTH_UART_SHIM
|
||||||
bool "Bluetooth UART SHIM driver"
|
bool "Bluetooth UART SHIM driver"
|
||||||
default n
|
default n
|
||||||
|
|
||||||
if BLUETOOTH_UART
|
if BLUETOOTH_UART
|
||||||
|
|||||||
@@ -18,9 +18,9 @@ config LIB_GDBSTUB_DEBUG
|
|||||||
Add debug info to gdbstub
|
Add debug info to gdbstub
|
||||||
|
|
||||||
config LIB_GDBSTUB_PKTSIZE
|
config LIB_GDBSTUB_PKTSIZE
|
||||||
int "Gdbstub packet size"
|
int "Gdbstub packet size"
|
||||||
default 32768
|
default 32768
|
||||||
---help---
|
---help---
|
||||||
The size of the gdbstub packet buffer.
|
The size of the gdbstub packet buffer.
|
||||||
|
|
||||||
endif
|
endif # LIB_GDBSTUB
|
||||||
|
|||||||
Reference in New Issue
Block a user