mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-29 18:27:20 +02:00
Merge branch 'bugfix/driver_spi_poll_test_stack_v41' into 'release/v4.1'
driver test: Increase stack for the "spi poll tasks" test See merge request espressif/esp-idf!12117
This commit is contained in:
@ -1210,9 +1210,9 @@ TEST_CASE("spi poll tasks","[spi]")
|
||||
ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, &context3.handle);
|
||||
TEST_ASSERT(ret==ESP_OK);
|
||||
|
||||
xTaskCreate( spi_task1, "task1", 2048, &context1, 0, &task1 );
|
||||
xTaskCreate( spi_task2, "task2", 2048, &context2, 0, &task2 );
|
||||
xTaskCreate( spi_task3, "task3", 2048, &context3, 0, &task3 );
|
||||
xTaskCreate( spi_task1, "task1", 3072, &context1, 0, &task1 );
|
||||
xTaskCreate( spi_task2, "task2", 3072, &context2, 0, &task2 );
|
||||
xTaskCreate( spi_task3, "task3", 3072, &context3, 0, &task3 );
|
||||
|
||||
for(;;){
|
||||
vTaskDelay(10);
|
||||
|
Reference in New Issue
Block a user