Skip to content
Snippets Groups Projects
Commit eccf99ee authored by ELATTAOUI's avatar ELATTAOUI
Browse files

xavier :

 Bug : for DDC devices, the status returned an error "Invalid staus string", now fixed.
parent 35d59683
No related merge requests found
...@@ -398,9 +398,6 @@ std::stringstream cmd_to_send; ...@@ -398,9 +398,6 @@ std::stringstream cmd_to_send;
std::string argout("no data"); std::string argout("no data");
//- send command : G0X -> show prefix ( = keithley type ) //- send command : G0X -> show prefix ( = keithley type )
cmd_to_send << "G0X" << std::endl;
_communication_link->write(cmd_to_send.str());
cmd_to_send.str(""); cmd_to_send.str("");
//- get status word //- get status word
cmd_to_send << "U1X" << std::endl; cmd_to_send << "U1X" << std::endl;
...@@ -420,9 +417,6 @@ std::stringstream cmd_to_send; ...@@ -420,9 +417,6 @@ std::stringstream cmd_to_send;
std::string argout("no data"); std::string argout("no data");
//- send command : G0X -> show prefix ( = keithley type ) //- send command : G0X -> show prefix ( = keithley type )
cmd_to_send << "G0X" << std::endl;
_communication_link->write(cmd_to_send.str());
cmd_to_send.str(""); cmd_to_send.str("");
//- get status word //- get status word
cmd_to_send << "U0X" << std::endl; cmd_to_send << "U0X" << std::endl;
......
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