spi_master, ulp: fix aliasing errors in unit tests

This commit is contained in:
Ivan Grokhotkov
2018-06-26 14:37:36 +08:00
committed by bot
parent 497b123958
commit 3fcc3689ce
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -759,7 +759,7 @@ static void task_slave(void* arg)
do {
TEST_ESP_OK( spi_slave_transmit( context->spi, &t, portMAX_DELAY ) );
} while ( t.trans_len == 0 );
*(uint32_t*)recvbuf = t.trans_len;
memcpy(recvbuf, &t.trans_len, sizeof(uint32_t));
*(uint8_t**)(recvbuf+4) = txdata.start;
ESP_LOGI( SLAVE_TAG, "received: %d", t.trans_len );
xRingbufferSend( ringbuf, recvbuf, 8+(t.trans_len+7)/8, portMAX_DELAY );