mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
test: disable the spi slave startup test when psram is enabled
This commit is contained in:
parent
607d899503
commit
f4d4183000
@ -7,6 +7,7 @@
|
|||||||
#include "driver/spi_master.h"
|
#include "driver/spi_master.h"
|
||||||
#include "driver/spi_slave.h"
|
#include "driver/spi_slave.h"
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
|
#include "sdkconfig.h"
|
||||||
|
|
||||||
#define PIN_NUM_MISO 25
|
#define PIN_NUM_MISO 25
|
||||||
#define PIN_NUM_MOSI 23
|
#define PIN_NUM_MOSI 23
|
||||||
@ -74,6 +75,9 @@ static void slave_init()
|
|||||||
TEST_ESP_OK( spi_slave_initialize(VSPI_HOST, &buscfg, &slvcfg, 2) );
|
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]")
|
TEST_CASE("test slave startup","[spi]")
|
||||||
{
|
{
|
||||||
uint8_t master_txbuf[320]=MASTER_SEND;
|
uint8_t master_txbuf[320]=MASTER_SEND;
|
||||||
@ -139,3 +143,5 @@ TEST_CASE("test slave startup","[spi]")
|
|||||||
|
|
||||||
ESP_LOGI(MASTER_TAG, "test passed.");
|
ESP_LOGI(MASTER_TAG, "test passed.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user