瀏覽代碼

test_spi_slave: fix warnings about unused identifiers

Anton Maklakov 7 年之前
父節點
當前提交
e3fce506b8
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      components/driver/test/test_spi_slave.c

+ 4 - 4
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
+#endif // !CONFIG_SPIRAM_SUPPORT