1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

Disable F7 D-cache until more knowledge is acquired

This commit is contained in:
Sami Korhonen 2017-02-14 20:13:17 +02:00 committed by borisbstyle
parent a135e9cbb2
commit 1102df5d68
5 changed files with 8 additions and 8 deletions

View file

@ -266,7 +266,7 @@ void uartStartTxDMA(uartPort_t *s)
s->port.txBufferTail = 0;
}
s->txDMAEmpty = false;
HAL_CLEANCACHE((uint8_t *)&s->port.txBuffer[fromwhere],size);
//HAL_CLEANCACHE((uint8_t *)&s->port.txBuffer[fromwhere],size);
HAL_UART_Transmit_DMA(&s->Handle, (uint8_t *)&s->port.txBuffer[fromwhere], size);
}