]> jspc29.x-matter.uni-frankfurt.de Git - labtools.git/commitdiff
fix command for current limit (not overcurrent protection) master
authorJan Michel <michel@physik.uni-frankfurt.de>
Fri, 28 Oct 2022 14:38:22 +0000 (16:38 +0200)
committerJan Michel <michel@physik.uni-frankfurt.de>
Fri, 28 Oct 2022 14:38:22 +0000 (16:38 +0200)
powersupplies/web/htdocs/pwr_hmp.htm

index be482bc8a3ce27b95d086b613484bfc16de4d0d4..9bee35abe64768a4e27185bf21695be121a98135 100644 (file)
@@ -104,7 +104,7 @@ function set_c_lim(chan) {
   if(type=="HMP" || type=="HMC") 
                   command = "INST OUT"+chan+"&CURR "+value.toFixed(3);
   if(type=="PST") command = ":CHAN"+chan+":PROT:CURR "+value.toFixed(3);
-  if(type=="DP")  command = ":OUTP:OCP:VAL CH"+chan+","+value.toFixed(3);
+  if(type=="DP")  command = ":SOUR"+chan+":CURR "+value.toFixed(3);
        new_commands.push(command);
   forceShowReadings = 1;
 }
@@ -199,7 +199,7 @@ function communication() {
     if(type=="DP") {
       cmds="&%2AIDN%3F";
       for(i=1;i<=channels;i++)
-        cmds += "&:SOUR"+i+":VOLT%3F&:OUTP:OCP:VAL%3F CH"+i+"&:OUTP:OVP:VAL%3F CH"+i;
+        cmds += "&:SOUR"+i+":VOLT%3F&:SOUR"+i+":CURR%3F&:OUTP:OVP:VAL%3F CH"+i;
       }
     getdata('pwr.pl?'+ser_dev+'&'+type+"&"+speed+cmds,updatesettings);
     }