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 4c5d783 commit c476e62Copy full SHA for c476e62
Marlin/src/HAL/STM32/HardwareSerial.cpp
@@ -126,7 +126,7 @@
126
void serialEvent2() __attribute__((weak));
127
#endif
128
#ifdef USING_HW_SERIAL3
129
- HAL_HardwareSerial Serial3(USART3);
+ HAL_HardwareSerial HSerial3(USART3);
130
void serialEvent3() __attribute__((weak));
131
132
#ifdef USING_HW_SERIAL4
@@ -147,9 +147,9 @@
147
148
#ifdef USING_HW_SERIAL6
149
#ifdef USART6
150
- HAL_HardwareSerial HSerial5(USART6);
+ HAL_HardwareSerial HSerial6(USART6);
151
#else
152
- HAL_HardwareSerial HSerial5(UART6);
+ HAL_HardwareSerial HSerial6(UART6);
153
154
void serialEvent5() __attribute__((weak));
155
0 commit comments