return ocontrol.setTestData(puPhysChannel, on, data);
}
BError TmsControlServer::setPupeConfig(PuChannel puPhysChannel, PupeConfig pupeConfig){
return ocontrol.setPupeConfig(puPhysChannel, pupeConfig);
}
BError TmsControlServer::getPupeConfig(PuChannel puPhysChannel, PupeConfig& pupeConfig){
return ocontrol.getPupeConfig(puPhysChannel, pupeConfig);
}
TmsProcessServer::TmsProcessServer(Control& control, BoapServer& server, BString name) : TmsProcessService(server, name), ocontrol(control){
}
BError TmsProcessServer::getVersion(BString& version){
BError err;
version = VERSION;
return err;
}