<body>
<h2>Basic power supply control</h2>
+<h3 style="color:red">Please don't keep any tabs open! Multi-user is not yet implemented for remote serial devices.</h3>
<p id="content">
Platzhalter
</p>
my $db;
if(-e $file && -r $file) {
$db = lock_retrieve($file);
+ my $waitcnt = 0;
+ while($db->{lock} && $waitcnt < 30) {
+ usleep(100000);
+ $waitcnt++;
+ $db = lock_retrieve($file);
+ }
+ $db->{lock} = 1;
+ lock_store($db,$file) if $db;
}
sub HMP_ethernet {
print strftime("%H:%M:%S &", localtime());
- my $port = IO::Socket::INET->new(PeerAddr => $ser_dev, PeerPort => $ser_speed, Proto => "tcp", Type => SOCK_STREAM, Timeout => 1)
+ my $port = IO::Socket::INET->new(PeerAddr => $ser_dev, PeerPort => $ser_speed, Proto => "tcp", Type => SOCK_STREAM, Timeout => 2)
or (print("Device not found") && return);
while ( my $command = shift(@new_command) ) {
$command = uri_unescape($command);
sub getValue {
my ($fh,$cmd,$cnt,$forceread) = @_;
- if (0 && defined $db->{$cmd.$cnt}{tim} && $db->{$cmd.$cnt}{tim} > time()-10) {
+ if (defined $db->{$cmd.$cnt}{tim} && $db->{$cmd.$cnt}{tim} > time()-5) {
return $db->{$cmd.$cnt}{val};
}
else {
+ usleep(10000);
my $val = serial_rw($fh,$cmd,$forceread);
+ if($val eq "") {
+ return $db->{$cmd.$cnt}{val};
+ }
addDB($cmd.$cnt,$val);
return $val;
}
$db->{$cmd}{val} = $val;
$db->{$cmd}{tim} = time();
}
-
-#lock_store($db,$file);
+
+$db->{lock} = 0;
+lock_store($db,$file) if $db;
print "\n";
exit 1;
<td><input type="text" id="form_v4" name="voltage" value=""><td><input type="button" onClick="set_v(4)" value="set">
<tr><td align="right">Actual[V/A]
- <td> <input type="text" id="vol1" disabled> <td> <input type="text" id="cur1" disabled>
- <td> <input type="text" id="vol2" disabled> <td> <input type="text" id="cur2" disabled>
- <td> <input type="text" id="vol3" disabled> <td> <input type="text" id="cur3" disabled>
- <td> <input type="text" id="vol4" disabled> <td> <input type="text" id="cur4" disabled>
+ <td> <input type="text" id="vol1" disabled style="color:black;"> <td> <input type="text" id="cur1" disabled style="color:black;">
+ <td> <input type="text" id="vol2" disabled style="color:black;"> <td> <input type="text" id="cur2" disabled style="color:black;">
+ <td> <input type="text" id="vol3" disabled style="color:black;"> <td> <input type="text" id="cur3" disabled style="color:black;">
+ <td> <input type="text" id="vol4" disabled style="color:black;"> <td> <input type="text" id="cur4" disabled style="color:black;">
<tr><td align="right">Limits[V/A]
<td><input type="text" id="form_v_lim1" name="voltage_limit" onChange="set_v_lim(1)" value=""><td><input type="text" id="form_c_lim1" name="current_limit" onChange="set_c_lim(1)" value="">
<td class="state"><input type="button" onClick="turn_on(4)" value="on"><td class="state"><input type="button" onClick="turn_off(4)" value="off">
<tr class="sep"><td id="master">Global Switch<td colspan=8><input type="button" onClick="globalOn()" value="ON">
<input type="button" onClick="globalOff()" value="OFF">
-<tr class="sep"><td colspan=5><input type="checkbox" value="1" id="showreadings">Enable read-back of values<td colspan=4>
+<tr class="sep"><td colspan=5><input type="checkbox" value="1" id="showreadings" checked>Enable read-back of values<td colspan=4>
Read settings<input type="button" onClick="readSettings()" value="Go">
<tr><td colspan=9 id="info">
</table>
<script language="javascript">
-var updaterate = 2000;
+var updaterate = 5500;
var updateTask;
var new_commands = new Array();
var ser_dev = getParameterByName("device");
var names = getParameterByName("names");
var readSettingsRequest = 1;
var forceShowReadings = 1;
+var notfirst = -1;
var Vnames = names.split(':');
if (channels<2) {
}
function update(data) {
- updateTask = setTimeout("communication()",updaterate);
+ updateTask = setTimeout("communication()",(notfirst++>0)?updaterate:10);
}
document.getElementById("form_c_lim"+(i+1)).value=(+e[i*3+1]).toFixed(3);
document.getElementById("form_v_lim"+(i+1)).value=(+e[i*3+2]).toFixed(3);
}
- updateTask = setTimeout("communication()",updaterate);
+ updateTask = setTimeout("communication()",(notfirst++>0)?updaterate:10);
}
function communication() {
readSettingsRequest = 1;
}
-updateTask = setTimeout("update()",updaterate);
+updateTask = setTimeout("update()",500);
//document.getElementById("headline").innerHTML = "Power Supply "+'<b>'+dev_id+'</b>'+" [connected to "+'<b>'+ser_dev+'</b>'+"]" ;
for(i=1;i<=channels;i++) {
<script language="javascript">
-var updaterate = 1000;
+var updaterate = 10000;
var updateTask;
var new_commands = new Array();
var ser_dev = getParameterByName("device");
use Time::HiRes qw( usleep);
use Fcntl;
use POSIX qw/floor ceil strftime/;
+use Storable qw(lock_store lock_retrieve retrieve);
+
my $envstring = $ENV{'QUERY_STRING'};
# print $envstring;
my $cnt = 0;
+# Load stored values
+my $file = $ser_dev;
+ $file =~ s/\W//g;
+ $file = "/dev/shm/pwrsup-".$file.".dump";
+my $db;
+if(-e $file && -r $file) {
+ $db = lock_retrieve($file);
+ my $waitcnt = 0;
+ while($db->{lock} && $waitcnt < 30) {
+ usleep(100000);
+ $waitcnt++;
+ $db = lock_retrieve($file);
+ }
+ $db->{lock} = 1;
+ lock_store($db,$file) if $db;
+ }
+
+
+
+
my $port = new Device::SerialPort($ser_dev);
unless ($port)
{
my $x = getValue($fh,$command,$cnt++);
$x =~ s/\&//;
print $x."&" if $command =~ /\?/;
- usleep(40000);# if $ser_type eq "PST";
+ usleep(1000);# if $ser_type eq "PST";
}
close $fh;
return;
chomp $x;
last;
}
- usleep(1000);
+ usleep(5000);
}
}
else {
sub getValue {
my ($fh,$cmd,$cnt,$forceread) = @_;
-# if (0 && defined $db->{$cmd.$cnt}{tim} && $db->{$cmd.$cnt}{tim} > time()-10) {
-# return $db->{$cmd.$cnt}{val};
-# }
-# else {
+ if (defined $db->{$cmd.$cnt}{tim} && $db->{$cmd.$cnt}{tim} > time()-5) {
+ return $db->{$cmd.$cnt}{val};
+ }
+ else {
+ usleep(10000);
my $val = serial_rw($fh,$cmd,$forceread);
-# addDB($cmd.$cnt,$val);
+ if($val eq "") {
+ return $db->{$cmd.$cnt}{val};
+ }
+ addDB($cmd.$cnt,$val);
return $val;
-# }
+ }
}
+
+sub addDB {
+ my ($cmd,$val) = @_;
+ $db->{$cmd}{val} = $val;
+ $db->{$cmd}{tim} = time();
+
+ }
+
+$db->{lock} = 0;
+lock_store($db,$file) if $db;
+# print "\n";
+# exit 1;