Skip to content
Snippets Groups Projects
Commit d73e6872 authored by Joakim Nohlgård's avatar Joakim Nohlgård
Browse files

kinetis: Refactor interrupt vector definition

... to match the vector definition in other Cortex-M platforms
parent 4dc2028c
No related branches found
No related tags found
No related merge requests found
......@@ -157,8 +157,7 @@ WEAK_DEFAULT void isr_software(void);
/**
* @brief Interrupt vector definition
*/
__attribute__((used, section(".vector_table")))
const void *interrupt_vector[] = {
ISR_VECTORS const void *interrupt_vector[] = {
/* Stack pointer */
(void *)(&_estack), /* pointer to the top of the empty stack */
/* Cortex-M4 handlers */
......
......@@ -132,8 +132,7 @@ WEAK_DEFAULT void isr_enet_receive(void);
WEAK_DEFAULT void isr_enet_error(void);
/* interrupt vector table */
__attribute__((used, section(".vector_table")))
const void *interrupt_vector[] = {
ISR_VECTORS const void *interrupt_vector[] = {
/* Stack pointer */
(void *)(&_estack), /* pointer to the top of the empty stack */
/* Cortex-M4 handlers */
......
......@@ -23,14 +23,14 @@
SECTIONS
{
/* Interrupt vectors 0x00-0x3ff. */
.vector_table :
.vectors :
{
_isr_vectors = .;
KEEP(*(.vector_table))
KEEP(*(.vectors .vectors.*))
} > vectors
ASSERT (SIZEOF(.vector_table) == 0x400, "Interrupt vector table of invalid size.")
ASSERT (ADDR(.vector_table) == 0x00000000, "Interrupt vector table at invalid location (linker-script error?)")
ASSERT (LOADADDR(.vector_table) == 0x00000000, "Interrupt vector table at invalid location (linker-script error?)")
ASSERT (SIZEOF(.vectors) == 0x400, "Interrupt vector table of invalid size.")
ASSERT (ADDR(.vectors) == 0x00000000, "Interrupt vector table at invalid location (linker-script error?)")
ASSERT (LOADADDR(.vectors) == 0x00000000, "Interrupt vector table at invalid location (linker-script error?)")
/* Flash configuration field, very important in order to not accidentally lock the device */
/* Flash configuration field 0x400-0x40f. */
......
......@@ -108,8 +108,7 @@ WEAK_DEFAULT void isr_porte(void);
WEAK_DEFAULT void isr_swi(void);
/* interrupt vector table */
__attribute__((used, section(".vector_table")))
const void *interrupt_vector[] = {
ISR_VECTORS const void *interrupt_vector[] = {
/* Stack pointer */
(void *)(&_estack), /* pointer to the top of the empty stack */
/* Cortex-M4 handlers */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment