Browse Source

Allow programs to preserve HAB logged events without taking 8K from everyone

teensy4-core
PaulStoffregen 4 years ago
parent
commit
077f18e123
2 changed files with 4 additions and 2 deletions
  1. +2
    -1
      teensy4/imxrt1062.ld
  2. +2
    -1
      teensy4/imxrt1062_t41.ld

+ 2
- 1
teensy4/imxrt1062.ld View File

{ {
ITCM (rwx): ORIGIN = 0x00000000, LENGTH = 512K ITCM (rwx): ORIGIN = 0x00000000, LENGTH = 512K
DTCM (rwx): ORIGIN = 0x20000000, LENGTH = 512K DTCM (rwx): ORIGIN = 0x20000000, LENGTH = 512K
RAM (rwx): ORIGIN = 0x20202000, LENGTH = 504K
RAM (rwx): ORIGIN = 0x20200000, LENGTH = 512K
FLASH (rwx): ORIGIN = 0x60000000, LENGTH = 1984K FLASH (rwx): ORIGIN = 0x60000000, LENGTH = 1984K
} }


} > DTCM } > DTCM


.bss.dma (NOLOAD) : { .bss.dma (NOLOAD) : {
*(.hab_log)
*(.dmabuffers) *(.dmabuffers)
. = ALIGN(32); . = ALIGN(32);
} > RAM } > RAM

+ 2
- 1
teensy4/imxrt1062_t41.ld View File

{ {
ITCM (rwx): ORIGIN = 0x00000000, LENGTH = 512K ITCM (rwx): ORIGIN = 0x00000000, LENGTH = 512K
DTCM (rwx): ORIGIN = 0x20000000, LENGTH = 512K DTCM (rwx): ORIGIN = 0x20000000, LENGTH = 512K
RAM (rwx): ORIGIN = 0x20202000, LENGTH = 504K
RAM (rwx): ORIGIN = 0x20200000, LENGTH = 512K
FLASH (rwx): ORIGIN = 0x60000000, LENGTH = 7936K FLASH (rwx): ORIGIN = 0x60000000, LENGTH = 7936K
ERAM (rwx): ORIGIN = 0x70000000, LENGTH = 16384K ERAM (rwx): ORIGIN = 0x70000000, LENGTH = 16384K
} }
} > DTCM } > DTCM


.bss.dma (NOLOAD) : { .bss.dma (NOLOAD) : {
*(.hab_log)
*(.dmabuffers) *(.dmabuffers)
. = ALIGN(32); . = ALIGN(32);
} > RAM } > RAM

Loading…
Cancel
Save