return ocontrol.setTestData(puChannel, on, data);
}
BError PuControlServer::setPupeConfig(PuChannel puPhysChannel, PupeConfig pupeConfig){
return ocontrol.setPupeConfig(puPhysChannel, pupeConfig);
}
BError PuControlServer::getPupeConfig(PuChannel puPhysChannel, PupeConfig& pupeConfig){
return ocontrol.getPupeConfig(puPhysChannel, pupeConfig);
}
PuProcessServer::PuProcessServer(Control& control, BoapServer& server, BString name) : PuProcessService(server, name), ocontrol(control){
}
BError PuProcessServer::getVersion(BString& version){
BError err;
version = VERSION;
return err;
}
BError PuProcessServer::addEventServer(BString name){
return ocontrol.addEventServer(name);
}
BError PuProcessServer::getStatus(PuChannel puChannel, PuStatus& puStatus){
return ocontrol.getStatus(puChannel, puStatus);
}