Add missing wifi targets for some DIY modules (#1210)
[ExpressLRS.git] / src / variants / L432K / ldscript.ld
blob0c0efd54027feb673f45fdc434088cfccf82a055
1 /*
2 **  Abstract    : Linker script for STM32L432KCUx Device with
3 **                256KByte FLASH, 64KByte RAM
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 = 64K - LENGTH(RAM_CODE)
11   CCMRAM (rw)     : ORIGIN = 0x10000000, LENGTH = 0K
12   FLASH (rx)      : ORIGIN = 0x8000000 + FLASH_APP_OFFSET, LENGTH = 128K - FLASH_APP_OFFSET
15 INCLUDE "variants/ldscript_gen.ld"