From 9526b100a40f26369a97f1f0c1313ac8a3b543e5 Mon Sep 17 00:00:00 2001 From: wanlei Date: Mon, 12 Dec 2022 11:42:50 +0800 Subject: [PATCH] spi: fix micro SPI_HOST_MAX error Closes https://github.com/espressif/esp-idf/issues/10349 --- components/hal/include/hal/spi_types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/hal/include/hal/spi_types.h b/components/hal/include/hal/spi_types.h index 9c008838a1..c7caa95df9 100644 --- a/components/hal/include/hal/spi_types.h +++ b/components/hal/include/hal/spi_types.h @@ -27,7 +27,9 @@ typedef enum { //SPI1 can be used as GPSPI only on ESP32 SPI1_HOST=0, ///< SPI1 SPI2_HOST=1, ///< SPI2 +#if SOC_SPI_PERIPH_NUM > 2 SPI3_HOST=2, ///< SPI3 +#endif } spi_host_device_t; /// SPI Events