Reputation: 177
I want to use interrupt handlers
void EXTI3_IRQHandler(void)
{
//body
}
but when I build the project, I get the following error:
Symbol
EXTI3_IRQHandler
multiply defined (by stm32f10x_it.o and main.o)
I have included library stm32f10x_exti.h
Upvotes: 0
Views: 1583
Reputation: 1009
Handler void EXTI3_IRQHandler(void)
already defined in file stm32f10x_it.c
.
You can replace code of your handler from main.c
to this special file or comment blank handler in stm32f10x_it.c
.
Upvotes: 2