-
Notifications
You must be signed in to change notification settings - Fork 3k
STM32F0: fix issue with usarts sharing the same irq vector #5907
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
{ | ||
uart_irq(2); | ||
} | ||
#if defined(TARGET_STM32F091RC) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this problem only affect the STM32F091RC, or are more targets affected?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All STM32F09x devices support this but there is only the STM32F091RC device on mbed actually.
/morph build |
Build : SUCCESSBuild number : 925 Triggering tests/morph test |
Exporter Build : SUCCESSBuild number : 612 |
Test : FAILUREBuild number : 766 |
dda50cf
to
9714c2c
Compare
/morph build |
Build : SUCCESSBuild number : 930 Triggering tests/morph test |
Exporter Build : SUCCESSBuild number : 617 |
/morph uvisor-test |
testing it again /morph uvisor-test |
/morph uvisor-test |
Test : FAILUREBuild number : 769 |
Manage the case where both uart3 and uart4 interrupts are arriving at the same time.
9714c2c
to
7ff1cf5
Compare
/morph build |
Build : SUCCESSBuild number : 944 Triggering tests/morph test |
Test : SUCCESSBuild number : 775 |
Exporter Build : SUCCESSBuild number : 632 |
Description
Issue flagged here: https://os.mbed.com/forum/mbed/topic/28545/
On some F0 devices, multiple USART are sharing the same IRQ vector and this case was not managed.
Tested on NUCLEO_F091RC and NUCLEO_F070RB boards using two usarts (USART3 and USART4).
Status
READY
Migrations
NO