From 5b6c965e9956784d0331a959a4f7a38ffcb0b342 Mon Sep 17 00:00:00 2001 From: "Michael (XIAO Xufeng)" Date: Thu, 12 Nov 2020 10:29:42 +0800 Subject: [PATCH] soc_caps.h: remove spi cap that is defined to 0 According to the caps rule, for unsupported feature we don't define anything. Remove the define 0 that violates this rule. --- components/soc/esp32/include/soc/soc_caps.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/soc/esp32/include/soc/soc_caps.h b/components/soc/esp32/include/soc/soc_caps.h index b882876526..4cf1b87b96 100644 --- a/components/soc/esp32/include/soc/soc_caps.h +++ b/components/soc/esp32/include/soc/soc_caps.h @@ -186,9 +186,6 @@ // Peripheral supports DIO, DOUT, QIO, or QOUT #define SOC_SPI_PERIPH_SUPPORT_MULTILINE_MODE(spi_host) ({(void)spi_host; 1;}) -// Peripheral doesn't support output given level during its "dummy phase" -#define SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUTPUT 0 - /*-------------------------- TIMER GROUP CAPS --------------------------------*/ #define SOC_TIMER_GROUP_COUNTER_BIT_WIDTH (64) #define SOC_TIMER_GROUP_PRESCALE_BIT_WIDTH (16)