crash data support for NUC472 with armcc

pull/10349/head
Shrikant Tudavekar 2019-04-10 10:30:22 -05:00
parent 3769ec4acc
commit 9d5617c54a
2 changed files with 10 additions and 0 deletions

View File

@ -47,6 +47,9 @@ LR_IROM1 MBED_APP_START MBED_APP_SIZE {
ER_IRAMVEC AlignExpr(+0, 1024) EMPTY VECTOR_SIZE { ; Reserve for vectors
}
RW_m_crash_data AlignExpr(+0, 0x100) EMPTY 0x100 { ; Reserve for crash data storage
}
RW_IRAM1 AlignExpr(+0, 16) { ; 16 byte-aligned
.ANY (+RW +ZI)
}

View File

@ -31,6 +31,13 @@ LR_IROM1 MBED_APP_START {
ER_IRAMVEC AlignExpr(+0, 1024) EMPTY (4*(16 + 142)) { ; Reserve for vectors
}
RW_m_crash_data AlignExpr(+0, 0x100) EMPTY 0x100 { ; Reserve for crash data storage
}
RW_IRAM1 AlignExpr(+0, 16) { ; 16 byte-aligned
.ANY (+RW +ZI)
}
RW_IRAM1 AlignExpr(+0, 16) { ; 16 byte-aligned
.ANY (+RW +ZI)
}