Quellcode durchsuchen

alignment

Gives more free DTCM. 
This is the first iteration - after USB and other things are done we should look at this, again.
main
Frank vor 5 Jahren
Ursprung
Commit
28facbf3ee
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. +6
    -1
      teensy4/imxrt.ld

+ 6
- 1
teensy4/imxrt.ld Datei anzeigen

@@ -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);

Laden…
Abbrechen
Speichern