add device object id to event
This commit is contained in:
parent
b7699b327b
commit
1e12753533
@ -250,7 +250,7 @@ bool AssemblyBase::checkAndHandleRecovery() {
|
|||||||
doStartTransition(targetMode, targetSubmode);
|
doStartTransition(targetMode, targetSubmode);
|
||||||
return true;
|
return true;
|
||||||
case RECOVERY_ONGOING_2:
|
case RECOVERY_ONGOING_2:
|
||||||
triggerEvent(RECOVERY_DONE);
|
triggerEvent(RECOVERY_DONE, recoveringDevice->first);
|
||||||
// Now we're through, but not sure if it was successful.
|
// Now we're through, but not sure if it was successful.
|
||||||
recoveryState = RECOVERY_IDLE;
|
recoveryState = RECOVERY_IDLE;
|
||||||
return false;
|
return false;
|
||||||
|
@ -34,6 +34,7 @@ class HasHealthIF {
|
|||||||
//! P1: 0 for the first, 1 for the second event. P2: 0
|
//! P1: 0 for the first, 1 for the second event. P2: 0
|
||||||
static const Event RECOVERY_STEP = MAKE_EVENT(11, severity::MEDIUM);
|
static const Event RECOVERY_STEP = MAKE_EVENT(11, severity::MEDIUM);
|
||||||
//! Recovery was completed. Not necessarily successful. No parameters.
|
//! Recovery was completed. Not necessarily successful. No parameters.
|
||||||
|
//! P1: Object Id of the recovering device.
|
||||||
static const Event RECOVERY_DONE = MAKE_EVENT(12, severity::MEDIUM);
|
static const Event RECOVERY_DONE = MAKE_EVENT(12, severity::MEDIUM);
|
||||||
//! Recovery is ongoing. The recovering device is currently OFF, waiting for restart.
|
//! Recovery is ongoing. The recovering device is currently OFF, waiting for restart.
|
||||||
//! P1: Object Id of the recovering device.
|
//! P1: Object Id of the recovering device.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user