2018-10-15 10:19:02 +08:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
|
2019-05-09 16:43:06 +02:00
|
|
|
config EXAMPLE_STORE_HISTORY
|
2019-01-25 17:10:53 +01:00
|
|
|
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.
|
2024-01-03 16:57:33 +08:00
|
|
|
|
|
|
|
|
config EXAMPLE_I2C_MASTER_SCL
|
|
|
|
|
int "SCL GPIO Num"
|
|
|
|
|
default 19 if IDF_TARGET_ESP32
|
|
|
|
|
default 4
|
|
|
|
|
help
|
|
|
|
|
GPIO number for I2C Master clock line.
|
|
|
|
|
|
|
|
|
|
config EXAMPLE_I2C_MASTER_SDA
|
|
|
|
|
int "SDA GPIO Num"
|
|
|
|
|
default 18 if IDF_TARGET_ESP32
|
|
|
|
|
default 5
|
|
|
|
|
help
|
|
|
|
|
GPIO number for I2C Master data line.
|
|
|
|
|
|
2018-10-15 10:19:02 +08:00
|
|
|
endmenu
|