Merge branch 'fix/fix_sd_concurrent_test_issue' into 'master'

test(sdmmc): fixed sdmmc concurrent test issue

Closes IDFCI-2821

See merge request espressif/esp-idf!38057
This commit is contained in:
Armando (Dou Yiwen)
2025-03-27 14:44:07 +08:00

View File

@@ -208,7 +208,7 @@ void sdmmc_test_rw_highprio_task(sdmmc_card_t* card)
.busy_time_us = 250000, .busy_time_us = 250000,
}; };
TEST_ASSERT(xTaskCreate(highprio_busy_task, "highprio_busy_task", 4096, &args, 20, NULL)); TEST_ASSERT(xTaskCreatePinnedToCore(highprio_busy_task, "highprio_busy_task", 4096, &args, 20, NULL, 0));
for (int i = 0; i < 4; ++i) { for (int i = 0; i < 4; ++i) {
do_single_rw_perf_test(card, 0, 64, 0, NULL, 0); do_single_rw_perf_test(card, 0, 64, 0, NULL, 0);