void NMI_Handler(void) __attribute__ ((alias("NMIException")));
void HardFault_Handler(void) __attribute__ ((alias("HardFaultException")));
void MemManage_Handler(void) __attribute__ ((alias("MemManageException")));
void BusFault_Handler(void) __attribute__ ((alias("BusFaultException")));
void UsageFault_Handler(void) __attribute__ ((alias("UsageFaultException")));
void DebugMon_Handler(void) __attribute__ ((alias("DebugMonitor")));
void SVC_Handler(void) __attribute__ ((alias("SVCHandler")));
void PendSV_Handler(void) __attribute__ ((alias("PendSVC")));
void SysTick_Handler(void) __attribute__ ((alias("SysTickHandler")));
C:\Keil\ARM\INC\ST\STM32F10x\stm32f10x_it.h(36): error: #1268-D: declaration aliased to undefined entity "SysTickHandler"
C:\Keil\ARM\INC\ST\STM32F10x\stm32f10x_it.h(35): error: #1268-D: declaration aliased to undefined entity "PendSVC"
C:\Keil\ARM\INC\ST\STM32F10x\stm32f10x_it.h(34): error: #1268-D: declaration aliased to undefined entity "SVCHandler"
C:\Keil\ARM\INC\ST\STM32F10x\stm32f10x_it.h(33): error: #1268-D: declaration aliased to undefined entity "DebugMonitor"
C:\Keil\ARM\INC\ST\STM32F10x\stm32f10x_it.h(32): error: #1268-D: declaration aliased to undefined entity "UsageFaultException"
C:\Keil\ARM\INC\ST\STM32F10x\stm32f10x_it.h(31): error: #1268-D: declaration aliased to undefined entity "BusFaultException"
C:\Keil\ARM\INC\ST\STM32F10x\stm32f10x_it.h(30): error: #1268-D: declaration aliased to undefined entity "MemManageException"
C:\Keil\ARM\INC\ST\STM32F10x\stm32f10x_it.h(29): error: #1268-D: declaration aliased to undefined entity "HardFaultException"
C:\Keil\ARM\INC\ST\STM32F10x\stm32f10x_it.h(28): error: #1268-D: declaration aliased to undefined entity "NMIException"
咋回事 源代码没有任何更改哦
|