1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-19 22:35:12 +03:00

Compilation fix for X9E

This commit is contained in:
Damjan Adamic 2015-10-12 22:52:57 +02:00
parent 94efa965da
commit cd16b4da0e

View file

@ -224,7 +224,7 @@
#elif defined(PCBSKY9X)
#define __DMA __attribute__((aligned(32)))
#elif defined(STM32F4)
#define __DMA __attribute__((section(".ram")) __attribute__((aligned(32))))
#define __DMA __attribute__((section(".ram"), aligned(32)))
#else
#define __DMA __attribute__((aligned(32)))
#endif