I am trying to use system modes for a system composed of these nodes: {nav2, manipulator, camera, guard}. guard is a special node that detects if the system has been compromised. In this case, all the nodes should be in mode COMPROMISED and camera in the inactive state. The specification is:
If I change the mode of guard, all the system reacts as I want. BUT if I want to command all the system to go from COMPROMISED to __DEFAULT__ I can't do it because guard is COMPROMISED, and that doesn't let the system reconfigure to __DEFAULT__.
Is there any way to combine the bottom-up rules with the possibility of changing the system mode (an up-bottom reconfiguration)?
Hi all
I am trying to use system modes for a system composed of these nodes:
{nav2, manipulator, camera, guard}
.guard
is a special node that detects if the system has been compromised. In this case, all the nodes should be in modeCOMPROMISED
andcamera
in the inactive state. The specification is:If I change the mode of
guard
, all the system reacts as I want. BUT if I want to command all the system to go fromCOMPROMISED
to__DEFAULT__
I can't do it becauseguard
isCOMPROMISED
, and that doesn't let the system reconfigure to__DEFAULT__
.Is there any way to combine the bottom-up rules with the possibility of changing the system mode (an up-bottom reconfiguration)?
Thanks!!