From 0e278fe13b830105d37d33d7d65ce4d82de47964 Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Thu, 10 Jun 2021 19:35:33 +0200 Subject: [PATCH] Remove SPI3_HOST that does not exist on esp32c3 --- include/fix_esp32c3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fix_esp32c3.h b/include/fix_esp32c3.h index 96e994159..d1e0bcb80 100644 --- a/include/fix_esp32c3.h +++ b/include/fix_esp32c3.h @@ -50,5 +50,5 @@ //alias for different chips, deprecated for the chips after esp32s2 #define SPI_HOST SPI1_HOST #define HSPI_HOST SPI2_HOST -#define VSPI_HOST SPI3_HOST -#endif \ No newline at end of file +#define VSPI_HOST SPI2_HOST /* No SPI3_host on C3 */ +#endif