Parcourir la source

Add FASTRUN

main
PaulStoffregen il y a 10 ans
Parent
révision
f3677fd16d
3 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. +1
    -0
      teensy3/WProgram.h
  2. +1
    -0
      teensy3/mk20dx128.ld
  3. +1
    -0
      teensy3/mk20dx256.ld

+ 1
- 0
teensy3/WProgram.h Voir le fichier

@@ -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 Voir le fichier

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

+ 1
- 0
teensy3/mk20dx256.ld Voir le fichier

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

Chargement…
Annuler
Enregistrer