Fix Kconfig style

Remove spaces from Kconfig
Add comments
This commit is contained in:
simbit18 2023-09-07 14:41:17 +02:00 committed by Xiang Xiao
parent c2bc3dfb12
commit 74b4672b76
2 changed files with 45 additions and 45 deletions

View File

@ -6,62 +6,62 @@
if ARCH_BOARD_MEADOW_F7MICRO
config HCOM_FILESYSTEM_INIT
bool "Enables HCOM FS initialization support"
default y
bool "Enables HCOM FS initialization support"
default y
config HCOM_MTD_STRESS_TEST
bool "Enables HCOM MTD stress testing support"
default n
bool "Enables HCOM MTD stress testing support"
default n
config HCOM_MONO_STDERR_STDOUT
bool "Enables HCOM routing of Mono stdout and stderr to PC/Mac"
default y
bool "Enables HCOM routing of Mono stdout and stderr to PC/Mac"
default y
config HCOM_MONO_REMOTE_DEBUGGING
bool "Enables HCOM Mono remote debugging support"
default y
bool "Enables HCOM Mono remote debugging support"
default y
config HCOM_COMMS_DEVICE_NAME
string "Specifies the device name for HCOM communications"
default "/dev/ttyACM0"
string "Specifies the device name for HCOM communications"
default "/dev/ttyACM0"
config MEADOW_CLOUD
string "Enables Meadow Cloud support"
default y
string "Enables Meadow Cloud support"
default y
config MEADOW_ETHNET_INCLUDE_IN_BUILD
bool "Build Meadow and include Ethernet for compute module"
default n
---help---
This must be used with a 'defconfig' file that includes the correct Ethernet configuration.
bool "Build Meadow and include Ethernet for compute module"
default n
---help---
This must be used with a 'defconfig' file that includes the correct Ethernet configuration.
config HCOM_ESP32_COMMS
bool "Enables HCOM file download to the ESP32"
default y
bool "Enables HCOM file download to the ESP32"
default y
menu "ESP32 Coprocessor Configuration"
source "boards/arm/stm32f7/stm32f777zit6-meadow/Kconfig-ESP32"
endmenu
config ARCH_BOARD_MEADOW
bool "Enables Meadow board features"
default y
bool "Enables Meadow board features"
default y
# See meadow-adc.c file, currently unused.
config MEADOW_ADC
bool "Enables Meadow ADC support"
bool "Enables Meadow ADC support"
config MEADOW_HCOM
bool "Enables Meadow HCOM support"
default n
bool "Enables Meadow HCOM support"
default n
config MEADOW_TIMER_SUPPORT
bool "Enables Meadow timer support"
default n
bool "Enables Meadow timer support"
default n
config MEADOW_PWR_MGMT_SUPPORT
bool "Enables Meadow power management support"
default n
bool "Enables Meadow power management support"
default n
config BOARD_MEADOW_PROJECTLAB

View File

@ -4,28 +4,28 @@
#
config MEADOW_ESPCP_MANAGER
bool "Enable ESP32 Coprocessor"
default y
---help---
Enable or disable ESP32 coprocessor support.
bool "Enable ESP32 Coprocessor"
default y
---help---
Enable or disable ESP32 coprocessor support.
if MEADOW_ESPCP_MANAGER
config MEADOW_ESPCP_USE_EXTERNAL_ESP32_BOARD
bool "Use external ESP32 chip"
default n
---help---
Use an external ESP32 for debugging purposes.
bool "Use external ESP32 chip"
default n
---help---
Use an external ESP32 for debugging purposes.
config MEADOW_ESPCP_RESET_ESP32_AT_STARTUP
bool "Reset the ESP32 at startup?"
default y
---help---
Should the ESP32 be reset as part of the startup process. The default for production
is "Y". For development it is sometimes necessary to attach a debugger to the ESP32
and in this case resetting the chip interferes with debugging.
bool "Reset the ESP32 at startup?"
default y
---help---
Should the ESP32 be reset as part of the startup process. The default for production
is "Y". For development it is sometimes necessary to attach a debugger to the ESP32
and in this case resetting the chip interferes with debugging.
For debugging set this to Y
For production set this to N (default).
endif
For debugging set this to Y
For production set this to N (default).
endif # MEADOW_ESPCP_MANAGER