File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
targets/TARGET_Silicon_Labs/TARGET_EFM32/common Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ extern uint32_t __start_vector_table__; // Dynamic vector positioning in GCC
1212#define NVIC_RAM_VECTOR_ADDRESS (0x20000000) // Vectors positioned at start of RAM
1313#define NVIC_FLASH_VECTOR_ADDRESS (0x0) // Initial vector position in flash
1414
15- void NVIC_SetVector (IRQn_Type IRQn , uint32_t vector ) {
15+ void __NVIC_SetVector (IRQn_Type IRQn , uint32_t vector ) {
1616 uint32_t * vectors = (uint32_t * )SCB -> VTOR ;
1717 uint32_t i ;
1818
@@ -41,7 +41,7 @@ void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector) {
4141 vectors [IRQn + 16 ] = vector ;
4242}
4343
44- uint32_t NVIC_GetVector (IRQn_Type IRQn ) {
44+ uint32_t __NVIC_GetVector (IRQn_Type IRQn ) {
4545 uint32_t * vectors = (uint32_t * )SCB -> VTOR ;
4646 return vectors [IRQn + 16 ];
4747}
You can’t perform that action at this time.
0 commit comments