Explorar el Código

alignment

Gives more free DTCM. 
This is the first iteration - after USB and other things are done we should look at this, again.
teensy4-core
Frank hace 6 años
padre
commit
28facbf3ee
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. +6
    -1
      teensy4/imxrt.ld

+ 6
- 1
teensy4/imxrt.ld Ver fichero

@@ -37,13 +37,18 @@ SECTIONS
. = ALIGN(16);
} > ITCM AT> FLASH

.vectorsRAM (NOLOAD) : {
. = ALIGN(4);
*(.vectorsRAM*)
} > DTCM
.data : {
*(.rodata*)
*(.data*)
. = ALIGN(16);
} > DTCM AT> FLASH

.bss : {
.bss ALIGN(4) : {
*(.bss*)
*(COMMON)
. = ALIGN(32);

Cargando…
Cancelar
Guardar