spi-slave: fix single-board: hd test failing due to DMA buffers ending up in PSRAM

This commit is contained in:
Marius Vikhammer
2021-12-07 16:39:33 +08:00
parent 233dc30fb1
commit 44af11f38c

View File

@ -137,7 +137,7 @@ static void init_slave_hd(int mode, bool append_mode, const spi_slave_hd_callbac
static void test_hd_init(void** arg)
{
TEST_ASSERT(*arg==NULL);
*arg = malloc(sizeof(testhd_context_t));
*arg = heap_caps_malloc(sizeof(testhd_context_t), MALLOC_CAP_DMA);
assert(((int)arg%4)==0);
testhd_context_t* context = (testhd_context_t*)*arg;
TEST_ASSERT(context!=NULL);