mirror of https://github.com/ArduPilot/ardupilot
AP_RangeFinder: allow compilation with HAL_LOGGING_ENABLED false
This commit is contained in:
parent
38115bd5fb
commit
330dd7221f
|
@ -786,6 +786,7 @@ bool RangeFinder::get_temp(enum Rotation orientation, float &temp) const
|
|||
return backend->get_temp(temp);
|
||||
}
|
||||
|
||||
#if HAL_LOGGING_ENABLED
|
||||
// Write an RFND (rangefinder) packet
|
||||
void RangeFinder::Log_RFND() const
|
||||
{
|
||||
|
@ -816,6 +817,7 @@ void RangeFinder::Log_RFND() const
|
|||
AP::logger().WriteBlock(&pkt, sizeof(pkt));
|
||||
}
|
||||
}
|
||||
#endif // HAL_LOGGING_ENABLED
|
||||
|
||||
bool RangeFinder::prearm_healthy(char *failure_msg, const uint8_t failure_msg_len) const
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue