HAL_VRBrain: fix compile warning re member init order

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

View File

@ -26,9 +26,9 @@ VRBRAINUARTDriver::VRBRAINUARTDriver(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)
{
}