2018-10-14 22:19:02 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2019-05-09 10:43:06 -04:00
|
|
|
config EXAMPLE_STORE_HISTORY
|
2019-01-25 11:10:53 -05: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 03:57:33 -05: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-14 22:19:02 -04:00
|
|
|
endmenu
|