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

Merge pull request #10319 from mikeller/remove_sram2_define

Remove unused SRAM2 define.
This commit is contained in:
Michael Keller 2020-11-17 07:24:12 +13:00 committed by GitHub
commit 31184af37c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -197,12 +197,6 @@
#define PERSISTENT __attribute__ ((section(".persistent_data"), aligned(4))) #define PERSISTENT __attribute__ ((section(".persistent_data"), aligned(4)))
#endif #endif
#ifdef USE_SRAM2
#define SRAM2 __attribute__ ((section(".sram2"), aligned(4)))
#else
#define SRAM2
#endif
#ifdef USE_DMA_RAM #ifdef USE_DMA_RAM
#if defined(STM32H7) #if defined(STM32H7)
#define DMA_RAM __attribute__((section(".DMA_RAM"))) #define DMA_RAM __attribute__((section(".DMA_RAM")))