Quellcode durchsuchen

Add FASTRUN

main
PaulStoffregen vor 10 Jahren
Ursprung
Commit
f3677fd16d
3 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. +1
    -0
      teensy3/WProgram.h
  2. +1
    -0
      teensy3/mk20dx128.ld
  3. +1
    -0
      teensy3/mk20dx256.ld

+ 1
- 0
teensy3/WProgram.h Datei anzeigen

@@ -16,6 +16,7 @@
#include "HardwareSerial.h"

#define DMAMEM __attribute__ ((section(".dmabuffers"), used))
#define FASTRUN __attribute__ ((section(".fastrun")))

#ifdef __cplusplus


+ 1
- 0
teensy3/mk20dx128.ld Datei anzeigen

@@ -84,6 +84,7 @@ SECTIONS
.data : AT (_etext) {
. = ALIGN(4);
_sdata = .;
*(.fastrun*)
*(.data*)
. = ALIGN(4);
_edata = .;

+ 1
- 0
teensy3/mk20dx256.ld Datei anzeigen

@@ -119,6 +119,7 @@ SECTIONS
.data : AT (_etext) {
. = ALIGN(4);
_sdata = .;
*(.fastrun*)
*(.data*)
. = ALIGN(4);
_edata = .;

Laden…
Abbrechen
Speichern