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