| 12345678910111213141516171819202122232425262728293031323334353637 |
- menu "SD SPI Example Configuration"
- orsource "$IDF_PATH/examples/common_components/env_caps/$IDF_TARGET/Kconfig.env_caps"
- config PIN_MISO
- int "MISO pin configuration"
- default 19
- range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
- help
- GPIO number where the SD card MISO pin is connected.
- Make sure the pin supports input/output and has pull-up if needed.
- config PIN_MOSI
- int "MOSI pin configuration"
- default 23
- range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
- help
- GPIO number where the SD card MOSI pin is connected.
- Make sure the pin supports input/output and has pull-up if needed.
-
- config PIN_CLK
- int "CLK pin configuration"
- default 18
- range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
- help
- GPIO number where the SD card CLK pin is connected.
- Make sure the pin supports input/output and has pull-up if needed.
-
- config PIN_CS
- int "CS pin configuration"
- default 5
- range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
- help
- GPIO number where the SD card CS pin is connected.
- Make sure the pin supports input/output and has pull-up if needed.
- endmenu
|