vector.h: Add slot for openblt signature

The openblt boot loader needs one extra slot in the vector table in
order to store the signature and detect a valid boot image.
This commit is contained in:
Harald Welte 2021-03-28 21:40:42 +02:00
parent 0d72e6739c
commit 32da9f931b
1 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,8 @@ typedef struct {
vector_table_entry_t pend_sv;
vector_table_entry_t systick;
vector_table_entry_t irq[NVIC_IRQ_COUNT];
/* https://www.feaser.com/openblt/doku.php?id=manual:ports:armcm3_stm32 */
vector_table_entry_t openblt_signature;
} vector_table_t;
/* Common symbols exported by the linker script(s): */