open(my $lastcounters_fh, ">", $lastcountersfile);
my $run_counter_changed = 0;
my $errors_occured = 0;
+ my $notstarted_or_crcerrors = 0;
foreach my $chain (sort(keys %allchains)) {
my %settings=%{$allchains{$chain}};
my $fpga_addr = hex(substr($settings{'FPGAtrbnetAddr'},2));
else {
$last_run_successful .= ', CRC Error: '. sprintf('%.8X', $v) . ',';
$errors_occured = 1;
+ $notstarted_or_crcerrors = 1;
}
# Check if M26CS is STARTED (waiting for triggers)
my $is_started = trb_register_read(($fpga_addr), ($status2_started_addr));
$last_run_successful .= ' started: '. substr($vstr, 7, 1) . ')';
if(not (substr($vstr, 7, 1) == 1)) {
$errors_occured = 1;
+ $notstarted_or_crcerrors = 1;
}
{"bgcolor"=>"#FFCC99", "text" => ""}, {"bgcolor"=>"#FF0000", "text" => ""}, {"bgcolor"=>"#99FF99", "text" => ""}]];
$status_str .= "<h4>Legend</h4>".colored_table(@legend_table) . "<br><!-- end status //-->";
$str = $status_str . $str;
- if((!($run_counter_changed == 0))||$errors_occured != 0) {
+ if((!($run_counter_changed == 0))||($notstarted_or_crcerrors != 0)) {
Hmon::WriteFile("jtagmonitor_usechainsini",$str);
}