diff --git a/components/driver/test/test_spi_slave.c b/components/driver/test/test_spi_slave.c index c0ebe7ade9..b38eaa1bc5 100644 --- a/components/driver/test/test_spi_slave.c +++ b/components/driver/test/test_spi_slave.c @@ -9,6 +9,9 @@ #include "esp_log.h" #include "sdkconfig.h" +#ifndef CONFIG_SPIRAM_SUPPORT +//This test should be removed once the timing test is merged. + #define PIN_NUM_MISO 25 #define PIN_NUM_MOSI 23 #define PIN_NUM_CLK 19 @@ -75,9 +78,6 @@ static void slave_init() TEST_ESP_OK( spi_slave_initialize(VSPI_HOST, &buscfg, &slvcfg, 2) ); } -#ifndef CONFIG_SPIRAM_SUPPORT -//This test should be removed once the timing test is merged. - TEST_CASE("test slave startup","[spi]") { uint8_t master_txbuf[320]=MASTER_SEND; @@ -144,4 +144,4 @@ TEST_CASE("test slave startup","[spi]") ESP_LOGI(MASTER_TAG, "test passed."); } -#endif \ No newline at end of file +#endif // !CONFIG_SPIRAM_SUPPORT