We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96be3f8 commit a37c108Copy full SHA for a37c108
libraries/SrcWrapper/inc/uart.h
@@ -138,6 +138,9 @@ struct serial_s {
138
#elif defined(STM32U0xx)
139
#define USART3_IRQn USART3_LPUART1_IRQn
140
#define USART3_IRQHandler USART3_LPUART1_IRQHandler
141
+#elif defined(STM32C0xx)
142
+#define USART3_IRQn USART3_4_IRQn
143
+#define USART3_IRQHandler USART3_4_IRQHandler
144
#endif /* STM32F0xx */
145
#endif
146
@@ -168,6 +171,9 @@ struct serial_s {
168
171
#define USART4_IRQn USART4_LPUART3_IRQn
169
172
#define USART4_IRQHandler USART4_LPUART3_IRQHandler
170
173
#endif /* LPUART3_BASE */
174
175
+#define USART4_IRQn USART3_4_IRQn
176
+#define USART4_IRQHandler USART3_4_IRQHandler
177
#endif /* STM32G0xx */
178
179
0 commit comments