//PWRSPLY:/path/to/device:speed:Name:Type:Channels
-//type can be HMP, HMC, PSP, PST
+//type can be HMP, HMC, PSP, PST, KA3000
//PWRSPLY:/dev/ttyUSB0:9600:PST3202:PST:3
//PWRSPLY:/dev/ttyUSB0:115200:HMP4030:HMP:3
//PWRSPLY:/dev/TRB3_Power48_00002:0:Rack48:PWRSW:4:Desk:::
PWRSPLY:/dev/FTDI_FT232R_USB_UART_AH02HFZW:2400:PSP2010:PSP:1
-PWRSPLY:/dev/FTDI_Xmatter_TTL_ALR1AJS:57600:Desk:PWRSW:6:TestAdrian:Pulser:::TrgDistr:ADC
-PWRSPLY:/dev/HAMEG_HO732_VCP023842636:0:HMP4040:HMP:4
-PWRSPLY:IP192.168.0.56:5050:HMP4040 DiRich:HMP:4:LP1:LP2:LP3:DCDC
+PWRSPLY:/dev/FTDI_Xmatter_TTL_ALR1AJS:57600:Desk:PWRSW:4:::Trb160:TrgDistr
+PWRSPLY:IP192.168.0.56:5050:HMP4040 OEP:HMP:4:MBO1:MBO2:Trb3sc:DCDC
+PWRSPLY:IP192.168.0.57:5025:HMP4040 Trigger:HMP:4
+PWRSPLY:IP192.168.0.58:5025:HMP4040 MVD:HMP:4
PWRSPLY:IP192.168.0.139:5025:HMC8043:HMC:3:::
+PWRSPLY:/dev/HAMEG_HAMEG_HO720_018442435:0:HMP4030_TRB:HMP:3:TRB:TRB:
+PWRSPLY:/dev/Nuvoton_USB_Virtual_COM_A02014090305:9600:KA3000:KA3000:1
+PWRSPLY:SERhadaq@jspc76/dev/FTDI_FT232R_USB_UART_AH18PT33:2400:PSP405:PSP:1
+
+
+//PWRSPLY:/dev/HAMEG_HO732_VCP023842636:0:HMP4040:HMP:4
if (chan > channels) return;
var value = parseFloat(document.getElementById("form_v"+chan).value);
var command;
- if(type=="HMP" || type=="HMC") command = "INST OUT"+chan+"&VOLT "+value.toFixed(3);
+ if(type=="HMP" || type=="HMC")
+ command = "INST OUT"+chan+"&VOLT "+value.toFixed(3);
if(type=="PST") command = ":CHAN"+chan+":VOLT "+value.toFixed(3);
+ if(type=="DP") command = ":SOUR"+chan+":VOLT "+value.toFixed(3);
new_commands.push(command);
forceShowReadings = 1;
}
if(type=="HMP") command = "INST OUT"+chan+"&VOLT:PROT "+value.toFixed(3);
if(type=="HMC") command = "INST OUT"+chan+"&VOLT:PROT ON&VOLT:PROT:LEV "+value.toFixed(3);
if(type=="PST") command = ":CHAN"+chan+":PROT:VOLT "+value.toFixed(3);
+ if(type=="DP") command = ":OUTP:OVP:VAL CH"+chan+","+value.toFixed(3);
new_commands.push(command);
forceShowReadings = 1;
}
if (chan > channels) return;
var value = parseFloat(document.getElementById("form_c_lim"+chan).value);
var command;
- if(type=="HMP" || type=="HMC") command = "INST OUT"+chan+"&CURR "+value.toFixed(3);
+ 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);
new_commands.push(command);
forceShowReadings = 1;
}
if(type=="HMP") new_commands.push("INST OUT"+chan+"&OUTP:SEL ON");
if(type=="HMC") new_commands.push("INST OUT"+chan+"&OUTP:CHAN ON");
if(type=="PST") new_commands.push(":OUTP:STAT ON");
+ if(type=="DP") new_commands.push(":OUTP CH"+chan+",ON");
forceShowReadings = 1;
}
if(type=="HMP") new_commands.push("INST OUT"+chan+"&OUTP:SEL OFF");
if(type=="HMC") new_commands.push("INST OUT"+chan+"&OUTP:CHAN OFF");
if(type=="PST") new_commands.push(":OUTP:STAT OFF");
+ if(type=="DP") new_commands.push(":OUTP CH"+chan+",OFF");
forceShowReadings = 1;
}
function globalOn() {
if(type=="HMP") new_commands.push("OUTP:GEN ON");
if(type=="HMC") new_commands.push("OUTP:MAST ON");
+ if(type=="DP") new_commands.push(":OUTP ALL,ON");
forceShowReadings = 1;
}
function globalOff() {
if(type=="HMP") new_commands.push("OUTP:GEN OFF");
if(type=="HMC") new_commands.push("OUTP:MAST OFF");
+ if(type=="DP") new_commands.push(":OUTP ALL,OFF");
forceShowReadings = 1;
}
function updatereads(data) {
var e = data.split("&");
document.getElementById("info").innerHTML = e.shift();
- document.getElementById("master").style.background=(e.shift()=='1')?"limegreen":"#C00";
+ if(type!="DP")
+ document.getElementById("master").style.background=(e.shift()=='1')?"limegreen":"#C00";
for(i=0;i<channels;i++) {
document.getElementById("vol"+(i+1)).value=(+e[i*3+0]).toFixed(3);
document.getElementById("cur"+(i+1)).value=(+e[i*3+1]).toFixed(3);
- document.getElementById("chan"+(i+1)).style.background=(e[i*3+2]=="1")?"limegreen":"#C00";
+ document.getElementById("chan"+(i+1)).style.background=(+e[i*3+2]==1)?"limegreen":"#C00";
+ console.log(e[i*3+2]);
}
updateTask = setTimeout("communication()",updaterate);
}
// var id = e.shift();
// e.shift();
document.getElementById("info").innerHTML = e.shift()+" Device Info: "+e.shift();
- document.getElementById("master").style.background=(e.shift()=='1')?"limegreen":"#C00";
+ if(type!="DP")
+ document.getElementById("master").style.background=(e.shift()=='1')?"limegreen":"#C00";
for(i=0;i<channels;i++) {
document.getElementById("form_v"+(i+1)).value=(+e[i*3+0]).toFixed(3);
document.getElementById("form_c_lim"+(i+1)).value=(+e[i*3+1]).toFixed(3);
else if(readSettingsRequest == 1) {
readSettingsRequest = 0;
if(type=="HMP" || type=="HMC") {
- cmds = "&SYST:MIX&%2AIDN%3F";
+ cmds = "&SYST:MIX&%2AIDN%3F";
if(type=="HMP") cmds += '&OUTP:GEN%3F';
if(type=="HMC") cmds += '&OUTP:MAST%3F';
for(i=1;i<=channels;i++){
for(i=1;i<=channels;i++)
cmds +="&:CHAN"+i+":VOLT%3F&:CHAN"+i+":CURR%3F&:CHAN"+i+":PROT:VOLT%3F";
}
+ 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;
+ }
getdata('pwr.pl?'+ser_dev+'&'+type+"&"+speed+cmds,updatesettings);
}
else if(document.getElementById("showreadings").checked || forceShowReadings) {
for(i=1;i<=channels;i++)
cmds +="&:CHAN"+i+":MEAS:VOLT%3F&:CHAN"+i+":MEAS:CURR%3F&OUTP:STAT%3F";
}
+ if(type=="DP") {
+ for(i=1;i<=channels;i++)
+ cmds +="&:MEAS:VOLT%3F CH"+i+"&:MEAS:CURR%3F CH"+i+"&:OUTP%3F CH"+i;
+ }
getdata('pwr.pl?'+ser_dev+'&'+type+"&"+speed+cmds,updatereads);
}
else {