mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-01 09:24:10 +01:00
LP-291 Fixed alert severity translation to MSP alarm levels.
This commit is contained in:
parent
7925f115df
commit
2a668d0615
@ -785,14 +785,21 @@ static void msp_send_alarms(__attribute__((unused)) struct msp_bridge *m)
|
||||
data.alarm.state = ALARM_OK;
|
||||
int32_t len = AlarmString(&alarm, data.alarm.msg,
|
||||
sizeof(data.alarm.msg), SYSTEMALARMS_ALARM_CRITICAL, &state); // Include only CRITICAL and ERROR
|
||||
|
||||
// NOTE: LP alarm severity levels and MSP levels do not match. ERROR and CRITICAL are swapped.
|
||||
// So far, MW-OSD code (MSP consumer) does not make difference between ALARM_ERROR and ALARM_CRITICAL.
|
||||
// ALARM_WARN should be blinking if thats the highest severity level at the moment.
|
||||
// There might be other types of MSP consumers.
|
||||
|
||||
switch (state) {
|
||||
case SYSTEMALARMS_ALARM_WARNING:
|
||||
data.alarm.state = ALARM_WARN;
|
||||
break;
|
||||
case SYSTEMALARMS_ALARM_ERROR:
|
||||
data.alarm.state = ALARM_CRIT;
|
||||
break;
|
||||
case SYSTEMALARMS_ALARM_CRITICAL:
|
||||
data.alarm.state = ALARM_CRIT;;
|
||||
data.alarm.state = ALARM_ERROR;
|
||||
}
|
||||
|
||||
msp_send(m, MSP_ALARMS, data.buf, len + 1);
|
||||
|
Loading…
Reference in New Issue
Block a user