From 424310d957cb04bfacba9c711ee7f074fd41f962 Mon Sep 17 00:00:00 2001 From: jaseg Date: Fri, 27 Nov 2020 13:38:56 +0100 Subject: demo fw WIP --- prototype/fw/generic_stm32.ld | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'prototype/fw/generic_stm32.ld') diff --git a/prototype/fw/generic_stm32.ld b/prototype/fw/generic_stm32.ld index 8fe2da8..72a9c72 100644 --- a/prototype/fw/generic_stm32.ld +++ b/prototype/fw/generic_stm32.ld @@ -94,26 +94,6 @@ SECTIONS _edata = .; /* define a global symbol at data end */ } >RAM AT> FLASH - _siccmram = LOADADDR(.ccmram); - - /* CCM-RAM section - * - * IMPORTANT NOTE! - * If initialized variables will be placed in this section, - * the startup code needs to be modified to copy the init-values. - */ - .ccmram : - { - . = ALIGN(4); - _sccmram = .; /* create a global symbol at ccmram start */ - *(.ccmram) - *(.ccmram*) - - . = ALIGN(4); - _eccmram = .; /* create a global symbol at ccmram end */ - } >CCMRAM AT> FLASH - - /* Uninitialized data section */ . = ALIGN(4); .bss : -- cgit