mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_ChibiOS: remove superfluous linefeed from panic strings
panic adds this within the HAL layer.
This commit is contained in:
parent
14b29cf7de
commit
e6796c1e96
|
@ -191,7 +191,7 @@ void UARTDriver::thread_rx_init(void)
|
|||
uart_rx_thread,
|
||||
nullptr);
|
||||
if (uart_rx_thread_ctx == nullptr) {
|
||||
AP_HAL::panic("Could not create UART RX thread\n");
|
||||
AP_HAL::panic("Could not create UART RX thread");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -209,7 +209,7 @@ void UARTDriver::thread_init(void)
|
|||
uart_thread_trampoline,
|
||||
this);
|
||||
if (uart_thread_ctx == nullptr) {
|
||||
AP_HAL::panic("Could not create UART TX thread\n");
|
||||
AP_HAL::panic("Could not create UART TX thread");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue