@@ -16,6 +16,7 @@ | |||
#include "HardwareSerial.h" | |||
#define DMAMEM __attribute__ ((section(".dmabuffers"), used)) | |||
#define FASTRUN __attribute__ ((section(".fastrun"))) | |||
#ifdef __cplusplus | |||
@@ -84,6 +84,7 @@ SECTIONS | |||
.data : AT (_etext) { | |||
. = ALIGN(4); | |||
_sdata = .; | |||
*(.fastrun*) | |||
*(.data*) | |||
. = ALIGN(4); | |||
_edata = .; |
@@ -119,6 +119,7 @@ SECTIONS | |||
.data : AT (_etext) { | |||
. = ALIGN(4); | |||
_sdata = .; | |||
*(.fastrun*) | |||
*(.data*) | |||
. = ALIGN(4); | |||
_edata = .; |