Silence unused-variable warning (#2872)
[ExpressLRS.git] / src / variants / stm32f303xx.ld
blob1d65cf7bd5ea4a0c33829ddcf3fa0dcfe6717d80
1 /*
2 *****************************************************************************
3 **
5 **  Abstract    : Linker script for STM32F303CC Device with
6 **                256KByte FLASH, 40KByte RAM, 8KByte CCMRAM
7 **
9 /* Specify the memory areas */
10 MEMORY
12 RAM_CODE (rx)   : ORIGIN = 0x20000000, LENGTH = 1K
13 RAM_DATA (xrw)  : ORIGIN = 0x20000000 + LENGTH(RAM_CODE), LENGTH = 40K - LENGTH(RAM_CODE)
14 CCMRAM (rw)     : ORIGIN = 0x10000000, LENGTH = 8K
15 FLASH (rx)      : ORIGIN = 0x8008000, LENGTH = 256K - 0x8000
18 INCLUDE "variants/ldscript_gen.ld"