1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 12:55:19 +03:00

fix Burst Dshot not working on F3 #7347

This commit is contained in:
Thorsten Laux 2019-01-08 21:27:00 +01:00
parent 3c49588687
commit 5e37165645

View file

@ -506,7 +506,7 @@ void pwmDshotMotorHardwareConfig(const timerHardware_t *timerHardware, uint8_t m
DMAINIT.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
DMAINIT.DMA_MemoryInc = DMA_MemoryInc_Enable;
DMAINIT.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Word;
DMAINIT.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte;
DMAINIT.DMA_MemoryDataSize = DMA_MemoryDataSize_Word;
DMAINIT.DMA_Mode = DMA_Mode_Normal;
DMAINIT.DMA_Priority = DMA_Priority_High;
} else