1# ESP32 SPI configuration
2
3# Copyright (c) 2020 Espressif Systems (Shanghai) Co., Ltd.
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig ESP32_SPIM
7	bool "ESP32 SPI Master driver"
8	default y
9	depends on DT_HAS_ESPRESSIF_ESP32_SPI_ENABLED
10	help
11	  Enables support for ESP32 SPI Master driver.
12
13if ESP32_SPIM
14
15config SPI_ESP32_INTERRUPT
16	bool "ESP32 SPI interrupt mode"
17	help
18	  Enables interrupt support for ESP32 SPI driver.
19
20endif # ESP32_SPIM
21