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

@ -256,16 +256,17 @@ if ESP32_OPENETH
int "Number of Ethernet DMA Rx buffers" int "Number of Ethernet DMA Rx buffers"
range 1 64 range 1 64
default 4 default 4
help ---help---
Number of DMA receive buffers, each buffer is 1600 bytes. Number of DMA receive buffers, each buffer is 1600 bytes.
config ESP32_OPENETH_DMA_TX_BUFFER_NUM config ESP32_OPENETH_DMA_TX_BUFFER_NUM
int "Number of Ethernet DMA Tx buffers" int "Number of Ethernet DMA Tx buffers"
range 1 64 range 1 64
default 1 default 1
help ---help---
Number of DMA transmit buffers, each buffer is 1600 bytes. Number of DMA transmit buffers, each buffer is 1600 bytes.
endif
endif # ESP32_OPENETH
config ESP32_I2C config ESP32_I2C
bool bool

View File

@ -10,4 +10,5 @@ config ECAT
default y default y
---help--- ---help---
Enable start up of the EtherCAT interface and configure ports. Enable start up of the EtherCAT interface and configure ports.
endif endif