Skip to main content
This topic has been closed for replies.

2 replies

KnarfB
Super User
January 10, 2020

Your stm32f7xx_it.c defines void USARTx_IRQHandler(void), but there is no such interrupt handler.

main.c contains the correct define:

#define USARTx_IRQHandler               USART6_IRQHandler

but, that's not visible/effective in stm32f7xx_it.c

Move all those defines from main.c to main.h

RLedw.1
RLedw.1Author
Associate
January 10, 2020

Okay thanks, it works!