bool glb_bool_FRC_RecMan;
bool glb_bool_FRC_SrvInts;
bool glb_bool_FRC_UpdAInputs;
bool glb_bool_FRC_Action;
bool glb_bool_FRC_UpdateOutputs;
bool glb_bool_FRC_subUpdateFrontEnd;
void setup() {
glb_bool_FRC_RecMan = false;
glb_bool_FRC_SrvInts = false;
glb_bool_FRC_UpdAInputs = false;
glb_bool_FRC_Action = false;
glb_bool_FRC_UpdateOutputs = false;
glb_bool_FRC_subUpdateFrontEnd = false;
}
void loop() {
subFRC();
if(glb_bool_FRC_RecMan)
{
subRecMan();
}
if(glb_bool_FRC_SrvInts)
{
subSrvInts();
}
if( glb_bool_FRC_UpdAInputs)
{
subUpdAInputs();
}
if( glb_bool_FRC_Action){
subAction();
}
if( glb_bool_FRC_UpdateOutputs){
subUpdateOutputs();
}
if( glb_bool_FRC_subUpdateFrontEnd){
subUpdateFrontEnd();
}
}