Correct Kconfigs according to the coding style
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
menu "Example Configuration"
|
||||
|
||||
config CUSTOM_RTC_CLK_8M_DIV
|
||||
bool "Set custom RTC 8 MHz clock divider to lower CW frequency (CHECK HELP FIRST)"
|
||||
default "n"
|
||||
help
|
||||
Set custom / non standard divider for RTC 8 MHz clock.
|
||||
This is to lower minimum frequency of cosine waveform generator (CW)
|
||||
in order to provide sinusoidal signal at about 50 or 60 Hz.
|
||||
|
||||
WARNINIG: setting non standard divider for the RTC 8 MHz clock
|
||||
will affect functionality of RTC peripherals other than CW.
|
||||
config CUSTOM_RTC_CLK_8M_DIV
|
||||
bool "Set custom RTC 8 MHz clock divider to lower CW frequency (CHECK HELP FIRST)"
|
||||
default "n"
|
||||
help
|
||||
Set custom / non standard divider for RTC 8 MHz clock.
|
||||
This is to lower minimum frequency of cosine waveform generator (CW)
|
||||
in order to provide sinusoidal signal at about 50 or 60 Hz.
|
||||
|
||||
This includes ADC sampling, and will in general make
|
||||
all RTC register access slower.
|
||||
WARNINIG: setting non standard divider for the RTC 8 MHz clock
|
||||
will affect functionality of RTC peripherals other than CW.
|
||||
|
||||
DO NOT use this option / change default RTC 8 MHz clock divider
|
||||
in your applications, if you are not sure what you are doing.
|
||||
This includes ADC sampling, and will in general make
|
||||
all RTC register access slower.
|
||||
|
||||
DO NOT use this option / change default RTC 8 MHz clock divider
|
||||
in your applications, if you are not sure what you are doing.
|
||||
|
||||
endmenu
|
||||
|
||||
@@ -1,42 +1,42 @@
|
||||
menu "Example Configuration"
|
||||
|
||||
choice BASE_MAC_ADDRESS_STORAGE
|
||||
prompt "Storage of the base MAC address"
|
||||
default BASE_MAC_STORED_EFUSE_BLK0
|
||||
help
|
||||
Select storage of the base MAC address which is used to generate MAC addresses of all network interfaces
|
||||
when networking is initialized.
|
||||
If "Default (Espressif factory) EFUSE BLK0" is selected, esp32 will use default base MAC address which is
|
||||
written into EFUSE block 0 words 1, 2 when the chip is manufactured.
|
||||
If "Custom EFUSE BLK3" is selected, ESP32 will use customer-defined base MAC address which is written into
|
||||
EFUSE Block 3 words 0, 1. Users must call esp_efuse_mac_get_custom to get base MAC address and
|
||||
esp_base_mac_addr_set to set the base MAC address before network interfaces are initialised.
|
||||
If "Other external storage" is selected, esp32 will use customer-defined base MAC address from external
|
||||
storage(flash, EEPROM, etc). Users must get the base MAC address first and call esp_base_mac_addr_set to
|
||||
set the base MAC address before network interfaces are initialised.
|
||||
choice BASE_MAC_ADDRESS_STORAGE
|
||||
prompt "Storage of the base MAC address"
|
||||
default BASE_MAC_STORED_EFUSE_BLK0
|
||||
help
|
||||
Select storage of the base MAC address which is used to generate MAC addresses of all network interfaces
|
||||
when networking is initialized.
|
||||
If "Default (Espressif factory) eFuse BLK0" is selected, esp32 will use default base MAC address which is
|
||||
written into eFuse block 0 words 1, 2 when the chip is manufactured.
|
||||
If "Custom eFuse BLK3" is selected, ESP32 will use customer-defined base MAC address which is written into
|
||||
eFuse Block 3 words 0, 1. Users must call esp_efuse_mac_get_custom to get base MAC address and
|
||||
esp_base_mac_addr_set to set the base MAC address before network interfaces are initialised.
|
||||
If "Other external storage" is selected, esp32 will use customer-defined base MAC address from external
|
||||
storage(flash, EEPROM, etc). Users must get the base MAC address first and call esp_base_mac_addr_set to
|
||||
set the base MAC address before network interfaces are initialised.
|
||||
|
||||
config BASE_MAC_STORED_EFUSE_BLK0
|
||||
bool "Default (Espressif factory) EFUSE BLK0"
|
||||
config BASE_MAC_STORED_EFUSE_BLK3
|
||||
bool "Custom EFUSE BLK3"
|
||||
config BASE_MAC_STORED_OTHER_EXTERNAL_STORAGE
|
||||
bool "Other external storage"
|
||||
endchoice
|
||||
config BASE_MAC_STORED_EFUSE_BLK0
|
||||
bool "Default (Espressif factory) eFuse BLK0"
|
||||
config BASE_MAC_STORED_EFUSE_BLK3
|
||||
bool "Custom eFuse BLK3"
|
||||
config BASE_MAC_STORED_OTHER_EXTERNAL_STORAGE
|
||||
bool "Other external storage"
|
||||
endchoice
|
||||
|
||||
choice BASE_MAC_STORED_EFUSE_BLK3_ERROR_BEHAVIOR
|
||||
prompt "Read base MAC address from BLK3 of EFUSE error behavior"
|
||||
depends on BASE_MAC_STORED_EFUSE_BLK3
|
||||
default BASE_MAC_STORED_EFUSE_BLK3_ERROR_USE_DEFAULT
|
||||
help
|
||||
Select behavior when reading base MAC address from BLK3 of EFUSE error.
|
||||
If "Abort" is selected, esp32 will abort.
|
||||
If "Use base MAC address from BLK3 of EFUSE" is selected, esp32 will use the base MAC address which is
|
||||
written into EFUSE block 0 words 1, 2 when the chip is manufactured.
|
||||
|
||||
config BASE_MAC_STORED_EFUSE_BLK3_ERROR_ABORT
|
||||
bool "Abort"
|
||||
config BASE_MAC_STORED_EFUSE_BLK3_ERROR_USE_DEFAULT
|
||||
bool "Use base MAC address from BLK3 of EFUSE"
|
||||
endchoice
|
||||
choice BASE_MAC_STORED_EFUSE_BLK3_ERROR_BEHAVIOR
|
||||
prompt "Read base MAC address from BLK3 of eFuse error behavior"
|
||||
depends on BASE_MAC_STORED_EFUSE_BLK3
|
||||
default BASE_MAC_STORED_EFUSE_BLK3_ERROR_USE_DEFAULT
|
||||
help
|
||||
Select behavior when reading base MAC address from BLK3 of eFuse error.
|
||||
If "Abort" is selected, esp32 will abort.
|
||||
If "Use base MAC address from BLK3 of eFuse" is selected, esp32 will use the base MAC address which is
|
||||
written into eFuse block 0 words 1, 2 when the chip is manufactured.
|
||||
|
||||
config BASE_MAC_STORED_EFUSE_BLK3_ERROR_ABORT
|
||||
bool "Abort"
|
||||
config BASE_MAC_STORED_EFUSE_BLK3_ERROR_USE_DEFAULT
|
||||
bool "Use base MAC address from BLK3 of eFuse"
|
||||
endchoice
|
||||
|
||||
endmenu
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
menu "Example Configuration"
|
||||
|
||||
config STORE_HISTORY
|
||||
bool "Store command history in flash"
|
||||
default y
|
||||
help
|
||||
Linenoise line editing library provides functions to save and load
|
||||
command history. If this option is enabled, initalizes a FAT filesystem
|
||||
and uses it to store command history.
|
||||
config STORE_HISTORY
|
||||
bool "Store command history in flash"
|
||||
default y
|
||||
help
|
||||
Linenoise line editing library provides functions to save and load
|
||||
command history. If this option is enabled, initalizes a FAT filesystem
|
||||
and uses it to store command history.
|
||||
|
||||
endmenu
|
||||
@@ -1,20 +1,20 @@
|
||||
menu "Example Configuration"
|
||||
|
||||
config ENABLE_TOUCH_WAKEUP
|
||||
bool "Enable touch wake up"
|
||||
default y
|
||||
help
|
||||
This option enables wake up from deep sleep using touch pads
|
||||
TOUCH8 and TOUCH9, which correspond to GPIO33 and GPIO32.
|
||||
config ENABLE_TOUCH_WAKEUP
|
||||
bool "Enable touch wake up"
|
||||
default y
|
||||
help
|
||||
This option enables wake up from deep sleep using touch pads
|
||||
TOUCH8 and TOUCH9, which correspond to GPIO33 and GPIO32.
|
||||
|
||||
config ENABLE_ULP_TEMPERATURE_WAKEUP
|
||||
bool "Enable temperature monitoring by ULP"
|
||||
default y
|
||||
help
|
||||
This option enables wake up from deep sleep using ULP.
|
||||
ULP program monitors the on-chip temperature sensor and
|
||||
wakes up the chip when the temperature goes outside of
|
||||
the window defined by the initial temperature and a threshold
|
||||
around it.
|
||||
config ENABLE_ULP_TEMPERATURE_WAKEUP
|
||||
bool "Enable temperature monitoring by ULP"
|
||||
default y
|
||||
help
|
||||
This option enables wake up from deep sleep using ULP.
|
||||
ULP program monitors the on-chip temperature sensor and
|
||||
wakes up the chip when the temperature goes outside of
|
||||
the window defined by the initial temperature and a threshold
|
||||
around it.
|
||||
|
||||
endmenu
|
||||
@@ -1,14 +1,14 @@
|
||||
menu "Example Configuration"
|
||||
|
||||
config BLINK_GPIO
|
||||
int "Blink GPIO number"
|
||||
range 0 34
|
||||
default 5
|
||||
help
|
||||
GPIO number (IOxx) to blink on and off.
|
||||
config BLINK_GPIO
|
||||
int "Blink GPIO number"
|
||||
range 0 34
|
||||
default 5
|
||||
help
|
||||
GPIO number (IOxx) to blink on and off.
|
||||
|
||||
Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to blink.
|
||||
Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to blink.
|
||||
|
||||
GPIOs 35-39 are input-only so cannot be used as outputs.
|
||||
GPIOs 35-39 are input-only so cannot be used as outputs.
|
||||
|
||||
endmenu
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
menu "Example Configuration"
|
||||
|
||||
config WIFI_SSID
|
||||
string "WiFi SSID"
|
||||
default "myssid"
|
||||
help
|
||||
SSID (network name) for the example to connect to.
|
||||
config WIFI_SSID
|
||||
string "WiFi SSID"
|
||||
default "myssid"
|
||||
help
|
||||
SSID (network name) for the example to connect to.
|
||||
|
||||
config WIFI_PASSWORD
|
||||
string "WiFi Password"
|
||||
default "mypassword"
|
||||
help
|
||||
WiFi password (WPA or WPA2) for the example to use.
|
||||
config WIFI_PASSWORD
|
||||
string "WiFi Password"
|
||||
default "mypassword"
|
||||
help
|
||||
WiFi password (WPA or WPA2) for the example to use.
|
||||
|
||||
Can be left blank if the network has no security set.
|
||||
Can be left blank if the network has no security set.
|
||||
|
||||
config FIRMWARE_UPG_URL
|
||||
string "HTTP Server URL"
|
||||
default "https://192.168.0.3:8070/hello-world.bin"
|
||||
help
|
||||
HTTP Server IP to download the image file from.
|
||||
config FIRMWARE_UPG_URL
|
||||
string "HTTP Server URL"
|
||||
default "https://192.168.0.3:8070/hello-world.bin"
|
||||
help
|
||||
HTTP Server IP to download the image file from.
|
||||
|
||||
See example README.md for details.
|
||||
See example README.md for details.
|
||||
|
||||
endmenu
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
menu "Example Configuration"
|
||||
|
||||
config WIFI_SSID
|
||||
string "WiFi SSID"
|
||||
default "myssid"
|
||||
help
|
||||
SSID (network name) for the example to connect to.
|
||||
config WIFI_SSID
|
||||
string "WiFi SSID"
|
||||
default "myssid"
|
||||
help
|
||||
SSID (network name) for the example to connect to.
|
||||
|
||||
config WIFI_PASSWORD
|
||||
string "WiFi Password"
|
||||
default "mypassword"
|
||||
help
|
||||
WiFi password (WPA or WPA2) for the example to use.
|
||||
config WIFI_PASSWORD
|
||||
string "WiFi Password"
|
||||
default "mypassword"
|
||||
help
|
||||
WiFi password (WPA or WPA2) for the example to use.
|
||||
|
||||
config FIRMWARE_UPGRADE_URL
|
||||
string "firmware upgrade url endpoint"
|
||||
default "https://192.168.0.3:8070/hello-world.bin"
|
||||
help
|
||||
URL of server which hosts the firmware
|
||||
image.
|
||||
config FIRMWARE_UPGRADE_URL
|
||||
string "firmware upgrade url endpoint"
|
||||
default "https://192.168.0.3:8070/hello-world.bin"
|
||||
help
|
||||
URL of server which hosts the firmware
|
||||
image.
|
||||
endmenu
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
menu "Example Configuration"
|
||||
|
||||
config USE_CUSTOM_EVENT_ID
|
||||
bool "Use custom SystemView event IDs"
|
||||
default "n"
|
||||
help
|
||||
Use custom IDs for user events. If it is enabled, replace `SYSVIEW_FreeRTOS.txt` in SystemView
|
||||
installation directory with the version from example's root directory.
|
||||
|
||||
By default SYSVIEW_EVTID_USER_START/STOP are used for tracing purposes of the example.
|
||||
config USE_CUSTOM_EVENT_ID
|
||||
bool "Use custom SystemView event IDs"
|
||||
default "n"
|
||||
help
|
||||
Use custom IDs for user events. If it is enabled, replace `SYSVIEW_FreeRTOS.txt` in SystemView
|
||||
installation directory with the version from example's root directory.
|
||||
|
||||
By default SYSVIEW_EVTID_USER_START/STOP are used for tracing purposes of the example.
|
||||
|
||||
endmenu
|
||||
|
||||
Reference in New Issue
Block a user