HAL_PX4: fix compile warning re member init order

This commit is contained in:
Tom Pittenger 2015-04-24 14:12:33 +09:00 committed by Randy Mackay
parent ee1a415baa
commit 179c72bfa9
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{
}