2022-02-08 12:14:47 -05:00
|
|
|
menu "SD SPI Example Configuration"
|
2020-03-30 10:26:21 -04:00
|
|
|
|
|
|
|
config EXAMPLE_FORMAT_IF_MOUNT_FAILED
|
|
|
|
bool "Format the card if mount failed"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
If this config item is set, format_if_mount_failed will be set to true and the card will be formatted if
|
|
|
|
the mount has failed.
|
2022-02-08 12:14:47 -05:00
|
|
|
|
2024-02-07 07:40:40 -05:00
|
|
|
config EXAMPLE_FORMAT_SD_CARD
|
|
|
|
bool "Format the card as a part of the example"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
If this config item is set, the card will be formatted as a part of the example.
|
|
|
|
|
2022-02-08 12:14:47 -05:00
|
|
|
config EXAMPLE_PIN_MOSI
|
|
|
|
int "MOSI GPIO number"
|
|
|
|
default 15 if IDF_TARGET_ESP32
|
|
|
|
default 35 if IDF_TARGET_ESP32S2
|
|
|
|
default 35 if IDF_TARGET_ESP32S3
|
2023-02-24 01:34:34 -05:00
|
|
|
default 5 if IDF_TARGET_ESP32H2
|
2023-10-13 03:44:15 -04:00
|
|
|
default 11 if IDF_TARGET_ESP32P4
|
2022-02-08 12:14:47 -05:00
|
|
|
default 4 # C3 and others
|
|
|
|
|
|
|
|
config EXAMPLE_PIN_MISO
|
|
|
|
int "MISO GPIO number"
|
|
|
|
default 2 if IDF_TARGET_ESP32
|
|
|
|
default 37 if IDF_TARGET_ESP32S2
|
|
|
|
default 37 if IDF_TARGET_ESP32S3
|
2023-02-24 01:34:34 -05:00
|
|
|
default 0 if IDF_TARGET_ESP32H2
|
2023-10-13 03:44:15 -04:00
|
|
|
default 13 if IDF_TARGET_ESP32P4
|
2022-02-08 12:14:47 -05:00
|
|
|
default 6 # C3 and others
|
|
|
|
|
|
|
|
config EXAMPLE_PIN_CLK
|
|
|
|
int "CLK GPIO number"
|
|
|
|
default 14 if IDF_TARGET_ESP32
|
|
|
|
default 36 if IDF_TARGET_ESP32S2
|
|
|
|
default 36 if IDF_TARGET_ESP32S3
|
2023-02-24 01:34:34 -05:00
|
|
|
default 4 if IDF_TARGET_ESP32H2
|
2023-10-13 03:44:15 -04:00
|
|
|
default 12 if IDF_TARGET_ESP32P4
|
2022-02-08 12:14:47 -05:00
|
|
|
default 5 # C3 and others
|
|
|
|
|
|
|
|
config EXAMPLE_PIN_CS
|
|
|
|
int "CS GPIO number"
|
|
|
|
default 13 if IDF_TARGET_ESP32
|
|
|
|
default 34 if IDF_TARGET_ESP32S2
|
|
|
|
default 34 if IDF_TARGET_ESP32S3
|
2023-10-13 03:44:15 -04:00
|
|
|
default 10 if IDF_TARGET_ESP32P4
|
2022-02-08 12:14:47 -05:00
|
|
|
default 1 # C3 and others
|
|
|
|
|
2023-11-27 05:13:48 -05:00
|
|
|
config EXAMPLE_DEBUG_PIN_CONNECTIONS
|
|
|
|
bool "Debug sd pin connections and pullup strength"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config EXAMPLE_ENABLE_ADC_FEATURE
|
|
|
|
bool "Enable ADC feature"
|
|
|
|
depends on EXAMPLE_DEBUG_PIN_CONNECTIONS
|
|
|
|
default y if IDF_TARGET_ESP32
|
|
|
|
default n
|
|
|
|
|
|
|
|
config EXAMPLE_ADC_UNIT
|
|
|
|
int "ADC Unit"
|
|
|
|
depends on EXAMPLE_DEBUG_PIN_CONNECTIONS
|
|
|
|
default 1 if IDF_TARGET_ESP32
|
|
|
|
default 0 if IDF_TARGET_ESP32S3
|
|
|
|
default 1
|
|
|
|
|
|
|
|
config EXAMPLE_ADC_PIN_MOSI
|
|
|
|
int "MOSI mapped ADC pin"
|
|
|
|
depends on EXAMPLE_ENABLE_ADC_FEATURE
|
|
|
|
default 3 if IDF_TARGET_ESP32
|
|
|
|
default 7 if IDF_TARGET_ESP32S3
|
|
|
|
default 1
|
|
|
|
|
|
|
|
config EXAMPLE_ADC_PIN_MISO
|
|
|
|
int "MISO mapped ADC pin"
|
|
|
|
depends on EXAMPLE_ENABLE_ADC_FEATURE
|
|
|
|
default 2 if IDF_TARGET_ESP32
|
|
|
|
default 1 if IDF_TARGET_ESP32S3
|
|
|
|
default 1
|
|
|
|
|
|
|
|
config EXAMPLE_ADC_PIN_CLK
|
|
|
|
int "CLK mapped ADC pin"
|
|
|
|
depends on EXAMPLE_ENABLE_ADC_FEATURE
|
|
|
|
default 6 if IDF_TARGET_ESP32
|
|
|
|
default 0 if IDF_TARGET_ESP32S3
|
|
|
|
default 1
|
|
|
|
|
|
|
|
config EXAMPLE_ADC_PIN_CS
|
|
|
|
int "CS mapped ADC pin"
|
|
|
|
depends on EXAMPLE_ENABLE_ADC_FEATURE
|
|
|
|
default 4 if IDF_TARGET_ESP32
|
|
|
|
default 6 if IDF_TARGET_ESP32S3
|
|
|
|
default 1
|
|
|
|
|
2020-03-30 10:26:21 -04:00
|
|
|
endmenu
|