mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
Merge branch 'contrib/github_pr_18990' into 'master'
Bool Kconfig options must use 'y'/'n' for defaults, not '0'/'1'. (GitHub PR) Closes IDFGH-18162 See merge request espressif/esp-idf!51886
This commit is contained in:
@@ -6,7 +6,7 @@ menu "TWAI Configuration"
|
||||
config EXAMPLE_ENABLE_TWAI_FD
|
||||
bool "Enable TWAI-FD Support"
|
||||
depends on SOC_TWAI_FD_SUPPORTED
|
||||
default false
|
||||
default n
|
||||
help
|
||||
Enable TWAI-FD (Flexible Data-rate) support.
|
||||
Allows up to 64 bytes of data per frame and dual bit rates.
|
||||
|
||||
@@ -9,7 +9,7 @@ menu "Example Configuration"
|
||||
|
||||
config EXAMPLE_USE_SCAN_CHANNEL_BITMAP
|
||||
bool "Scan only non overlapping channels using Channel bitmap"
|
||||
default 0
|
||||
default n
|
||||
help
|
||||
Enable this to scan only the non overlapping channels i.e 1,6,11 by mentioning a channel bitmap
|
||||
in scan config. If you wish to scan a different set of specific channels, please edit the channel_list
|
||||
|
||||
Reference in New Issue
Block a user