AP_Bootloader: fix return check for otg2 serial deadline

This commit is contained in:
bugobliterator 2024-06-24 11:22:58 +10:00 committed by Randy Mackay
parent 021510e446
commit aaf2394602
1 changed files with 1 additions and 1 deletions

View File

@ -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