mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-10 09:58:28 -04:00
Rover: fixed a build warning
This commit is contained in:
parent
8ac95d6034
commit
ca1070f10e
@ -436,7 +436,7 @@ static void NOINLINE send_statustext(mavlink_channel_t chan)
|
||||
static bool telemetry_delayed(mavlink_channel_t chan)
|
||||
{
|
||||
uint32_t tnow = millis() >> 10;
|
||||
if (tnow > g.telem_delay) {
|
||||
if (tnow > (uint32_t)g.telem_delay) {
|
||||
return false;
|
||||
}
|
||||
#if USB_MUX_PIN > 0
|
||||
|
Loading…
Reference in New Issue
Block a user