mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_SITL: Fixes bug with uartF.
uartF _timer_tick() was not being called in the scheduler.
This commit is contained in:
parent
d934088660
commit
4394c5145b
|
@ -70,7 +70,7 @@ public:
|
|||
"tcp:2",
|
||||
"tcp:3",
|
||||
"GPS2",
|
||||
"tcp:4",
|
||||
"tcp:5",
|
||||
};
|
||||
|
||||
private:
|
||||
|
|
|
@ -210,6 +210,7 @@ void Scheduler::_run_io_procs(bool called_from_isr)
|
|||
UARTDriver::from(hal.uartC)->_timer_tick();
|
||||
UARTDriver::from(hal.uartD)->_timer_tick();
|
||||
UARTDriver::from(hal.uartE)->_timer_tick();
|
||||
UARTDriver::from(hal.uartF)->_timer_tick();
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue