mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-10 09:58:28 -04:00
HAL_PX4: fix compile warning re member init order
This commit is contained in:
parent
ee1a415baa
commit
179c72bfa9
@ -26,9 +26,9 @@ PX4UARTDriver::PX4UARTDriver(const char *devpath, const char *perf_name) :
|
||||
_devpath(devpath),
|
||||
_fd(-1),
|
||||
_baudrate(57600),
|
||||
_perf_uart(perf_alloc(PC_ELAPSED, perf_name)),
|
||||
_initialised(false),
|
||||
_in_timer(false),
|
||||
_perf_uart(perf_alloc(PC_ELAPSED, perf_name)),
|
||||
_flow_control(FLOW_CONTROL_DISABLE)
|
||||
{
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user