Skip to content

Commit e0b8530

Browse files
committed
fix astyle
1 parent 37d3807 commit e0b8530

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/arduino/stm32/uart.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ void HAL_UART_ErrorCallback(UART_HandleTypeDef *huart)
808808
#endif
809809
/* Restart receive interrupt after any error */
810810
uint8_t index = uart_index(huart);
811-
if(index < UART_NUM) {
811+
if (index < UART_NUM) {
812812
serial_t *obj = rx_callback_obj[index];
813813
if (!serial_rx_active(obj)) {
814814
HAL_UART_Receive_IT(uart_handlers[obj->index], &(obj->recv), 1);

0 commit comments

Comments
 (0)