Skip to content
Snippets Groups Projects
Commit accd83b4 authored by Nadeem Shehzad's avatar Nadeem Shehzad
Browse files

DeviceError variable names adjusted.

parent d4ac41ee
No related branches found
No related tags found
No related merge requests found
......@@ -102,7 +102,7 @@ class DeviceModule : public Module {
struct DeviceError : public VariableGroup {
using VariableGroup::VariableGroup;
ScalarOutput<int> status{this,"status","",""};
ScalarOutput<std::string> message{this,"errMsg","",""};
ScalarOutput<std::string> message{this,"message","",""};
};
DeviceError deviceError{this, "deviceError", "Error"};
......
......@@ -256,7 +256,7 @@ namespace ChimeraTK {
void DeviceModule::defineConnections(){
std::string prefix = "Device."+deviceAliasOrURI+"/";
std::string prefix = "Devices."+deviceAliasOrURI+"/";
ControlSystemModule cs(prefix);
deviceError.connectTo(cs["DeviceError"]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment