Skip to content

Commit

Permalink
AP_RangeFinder: Notify different alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
muramura committed Mar 23, 2024
1 parent 85d25b2 commit 26180e4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
19 changes: 13 additions & 6 deletions libraries/AP_RangeFinder/AP_RangeFinder_Ainstein_LR_D1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ bool AP_RangeFinder_Ainstein_LR_D1::get_reading(float &reading_m)
#if AP_RANGEFINDER_AINSTEIN_LR_D1_SHOW_MALFUNCTIONS
const uint32_t now_ms = AP_HAL::millis();
if (malfunction_alert_prev != malfunction_alert && now_ms - malfunction_alert_last_send_ms >= 1000) {
report_malfunction(malfunction_alert, malfunction_alert_prev);
malfunction_alert_prev = malfunction_alert;
malfunction_alert_last_send_ms = now_ms;
report_malfunction(malfunction_alert);
}
#endif

Expand Down Expand Up @@ -110,17 +110,24 @@ bool AP_RangeFinder_Ainstein_LR_D1::get_reading(float &reading_m)
}

#if AP_RANGEFINDER_AINSTEIN_LR_D1_SHOW_MALFUNCTIONS
void AP_RangeFinder_Ainstein_LR_D1::report_malfunction(const uint8_t _malfunction_alert_) {
if (_malfunction_alert_ & static_cast<uint8_t>(MalfunctionAlert::Temperature)) {
void AP_RangeFinder_Ainstein_LR_D1::report_malfunction(const uint8_t _malfunction_alert_, const uint8_t _malfunction_alert_prev_)
{
// _malfunction_alert_ _malfunction_alert_prev_
// 0 0 : not message
// 1 0 : message
// 0 1 : not message
// 1 1 : not message
const uint8_t alert = _malfunction_alert_ & (_malfunction_alert_ ^ _malfunction_alert_prev_);
if (alert & static_cast<uint8_t>(MalfunctionAlert::Temperature)) {
GCS_SEND_TEXT(MAV_SEVERITY_WARNING, "RangeFinder: Temperature alert");
}
if (_malfunction_alert_ & static_cast<uint8_t>(MalfunctionAlert::Voltage)) {
if (alert & static_cast<uint8_t>(MalfunctionAlert::Voltage)) {
GCS_SEND_TEXT(MAV_SEVERITY_WARNING, "RangeFinder: Voltage alert");
}
if (_malfunction_alert_ & static_cast<uint8_t>(MalfunctionAlert::IFSignalSaturation)) {
if (alert & static_cast<uint8_t>(MalfunctionAlert::IFSignalSaturation)) {
GCS_SEND_TEXT(MAV_SEVERITY_WARNING, "RangeFinder: IF signal saturation alert");
}
if (_malfunction_alert_ & static_cast<uint8_t>(MalfunctionAlert::AltitudeReading)) {
if (alert & static_cast<uint8_t>(MalfunctionAlert::AltitudeReading)) {
GCS_SEND_TEXT(MAV_SEVERITY_WARNING, "RangeFinder: Altitude reading overflow alert");
}
}
Expand Down
2 changes: 1 addition & 1 deletion libraries/AP_RangeFinder/AP_RangeFinder_Ainstein_LR_D1.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class AP_RangeFinder_Ainstein_LR_D1 : public AP_RangeFinder_Backend_Serial
// quality is not available
int8_t get_signal_quality_pct() const override { return signal_quality_pct; };

static void report_malfunction(const uint8_t _malfunction_alert_);
static void report_malfunction(const uint8_t _malfunction_alert_, const uint8_t _malfunction_alert_prev_);

enum class MalfunctionAlert : uint8_t {
Temperature = (1U << 0), // 0x01
Expand Down

0 comments on commit 26180e4

Please sign in to comment.