mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
Fix DMA SPI memory increment define (#3075)
This commit is contained in:
@@ -283,7 +283,7 @@ bool furi_hal_spi_bus_trx_dma(
|
|||||||
if(tx_buffer == NULL) {
|
if(tx_buffer == NULL) {
|
||||||
// RX mode, use dummy data instead of TX buffer
|
// RX mode, use dummy data instead of TX buffer
|
||||||
tx_buffer = (uint8_t*)&dma_dummy_u32;
|
tx_buffer = (uint8_t*)&dma_dummy_u32;
|
||||||
tx_mem_increase_mode = LL_DMA_PERIPH_NOINCREMENT;
|
tx_mem_increase_mode = LL_DMA_MEMORY_NOINCREMENT;
|
||||||
} else {
|
} else {
|
||||||
tx_mem_increase_mode = LL_DMA_MEMORY_INCREMENT;
|
tx_mem_increase_mode = LL_DMA_MEMORY_INCREMENT;
|
||||||
}
|
}
|
||||||
@@ -373,4 +373,4 @@ bool furi_hal_spi_bus_trx_dma(
|
|||||||
furi_check(furi_semaphore_release(spi_dma_lock) == FuriStatusOk);
|
furi_check(furi_semaphore_release(spi_dma_lock) == FuriStatusOk);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user