Add missing wifi targets for some DIY modules (#1210)
[ExpressLRS.git] / src / variants / GHOST_TX / ldscript.ld
blobe7fe85fc43c273afdb2cb0ad570a0a5cea59f2ed
1 /*
2 **  Abstract    : Linker script for STM32F303CC Device with
3 **                256KByte FLASH, 40KByte RAM, 8KByte CCMRAM
4 */
6 /* Specify the memory areas */
7 MEMORY
9 RAM_CODE (rx)   : ORIGIN = 0x20000000, LENGTH = 0K
10 RAM_DATA (xrw)  : ORIGIN = 0x20000000 + LENGTH(RAM_CODE), LENGTH = 40K - LENGTH(RAM_CODE)
11 CCMRAM (rw)     : ORIGIN = 0x10000000, LENGTH = 8K
12 FLASH (rx)      : ORIGIN = 0x8000000 + 16K, LENGTH = 256K - 16K
15 INCLUDE "variants/ldscript_gen.ld"