mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
Rover: allow for compilation without AP_RTC_ENABLED
This commit is contained in:
parent
bb6287893d
commit
7393876217
@ -788,7 +788,11 @@ void ModeAuto::do_nav_delay(const AP_Mission::Mission_Command& cmd)
|
||||
nav_delay_time_max_ms = cmd.content.nav_delay.seconds * 1000; // convert seconds to milliseconds
|
||||
} else {
|
||||
// absolute delay to utc time
|
||||
#if AP_RTC_ENABLED
|
||||
nav_delay_time_max_ms = AP::rtc().get_time_utc(cmd.content.nav_delay.hour_utc, cmd.content.nav_delay.min_utc, cmd.content.nav_delay.sec_utc, 0);
|
||||
#else
|
||||
nav_delay_time_max_ms = 0;
|
||||
#endif
|
||||
}
|
||||
gcs().send_text(MAV_SEVERITY_INFO, "Delaying %u sec", (unsigned)(nav_delay_time_max_ms/1000));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user