mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ed0a85ab4d
In some Kconfig file, both 4 spaces and 1 tab are used mix, let's just use 4 space, it will be clean in some editor.
17 lines
438 B
Plaintext
17 lines
438 B
Plaintext
menu "SPI Flash driver"
|
|
|
|
config SPI_FLASH_ENABLE_COUNTERS
|
|
bool "Enable operation counters"
|
|
default 0
|
|
help
|
|
This option enables the following APIs:
|
|
spi_flash_reset_counters
|
|
spi_flash_dump_counters
|
|
spi_flash_get_counters
|
|
These APIs may be used to collect performance data for spi_flash APIs
|
|
and to help understand behaviour of libraries which use SPI flash.
|
|
|
|
endmenu
|
|
|
|
|