1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

OP-509: fix for ld symbol reference (also fixes build with 4.5.2 gcc)

This commit is contained in:
Oleg Semyonov 2011-06-01 00:31:27 +03:00
parent 54b7b2186a
commit 6e418735cf

View File

@ -186,7 +186,7 @@ int32_t PIOS_SYS_SerialNumberGet(char *str)
void NVIC_Configuration(void)
{
/* Set the Vector Table base address as specified in .ld file */
extern void pios_isr_vector_table_base;
extern void *pios_isr_vector_table_base;
NVIC_SetVectorTable((uint32_t)&pios_isr_vector_table_base, 0x0);
/* 4 bits for Interrupt priorities so no sub priorities */