Fix Kconfig style

Replace help => ---help---
Remove spaces from Kconfig
Add comments
This commit is contained in:
simbit18 2024-03-21 12:19:15 +01:00 committed by Xiang Xiao
parent a65cdce281
commit ac2021b906
2 changed files with 19 additions and 17 deletions

View File

@ -252,20 +252,21 @@ config ESP32_OPENETH
Disable this if you are using the real device.
if ESP32_OPENETH
config ESP32_OPENETH_DMA_RX_BUFFER_NUM
int "Number of Ethernet DMA Rx buffers"
range 1 64
default 4
help
Number of DMA receive buffers, each buffer is 1600 bytes.
config ESP32_OPENETH_DMA_RX_BUFFER_NUM
int "Number of Ethernet DMA Rx buffers"
range 1 64
default 4
---help---
Number of DMA receive buffers, each buffer is 1600 bytes.
config ESP32_OPENETH_DMA_TX_BUFFER_NUM
int "Number of Ethernet DMA Tx buffers"
range 1 64
default 1
help
Number of DMA transmit buffers, each buffer is 1600 bytes.
endif
config ESP32_OPENETH_DMA_TX_BUFFER_NUM
int "Number of Ethernet DMA Tx buffers"
range 1 64
default 1
---help---
Number of DMA transmit buffers, each buffer is 1600 bytes.
endif # ESP32_OPENETH
config ESP32_I2C
bool

View File

@ -6,8 +6,9 @@
if ARCH_BOARD_XMC4800RELAX
config ECAT
bool "Enable EtherCAT interface"
default y
---help---
Enable start up of the EtherCAT interface and configure ports.
bool "Enable EtherCAT interface"
default y
---help---
Enable start up of the EtherCAT interface and configure ports.
endif