mirror of https://github.com/ArduPilot/ardupilot
AP_Bootloader: fix return check for otg2 serial deadline
This commit is contained in:
parent
6ce7e179d7
commit
2363e972bc
|
@ -506,7 +506,7 @@ bool update_otg2_serial_forward()
|
||||||
chnWriteTimeout(&SDU2, data, n, TIME_IMMEDIATE);
|
chnWriteTimeout(&SDU2, data, n, TIME_IMMEDIATE);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (AP_HAL::millis() > otg2_serial_deadline_ms);
|
return (AP_HAL::millis() < otg2_serial_deadline_ms);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue