mirror of https://github.com/ARMmbed/mbed-os.git
rtos: fix iar vector table type
Following IAR guide for RAM vector table, this is in the code snippet there: ``` extern void * __vector_RAM_table []; void main(void) ``` Found in https://github.com/ARMmbed/mbed-os/pull/12547pull/12696/head
parent
b62fdaed1f
commit
5cbf666347
|
@ -28,7 +28,7 @@
|
|||
#pragma section="CSTACK"
|
||||
#pragma section="HEAP"
|
||||
|
||||
extern void *__vector_table;
|
||||
extern void *__vector_table[];
|
||||
extern int __low_level_init(void);
|
||||
extern void __iar_data_init3(void);
|
||||
extern __weak void __iar_init_core(void);
|
||||
|
|
Loading…
Reference in New Issue