소스 검색

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 5 년 전
부모
커밋
28facbf3ee
No account linked to committer's email address
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. +6
    -1
      teensy4/imxrt.ld

+ 6
- 1
teensy4/imxrt.ld 파일 보기

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

Loading…
취소
저장