]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
more detailed dump information
authorJan Michel <j.michel@gsi.de>
Wed, 1 Dec 2021 11:10:14 +0000 (12:10 +0100)
committerJan Michel <j.michel@gsi.de>
Wed, 1 Dec 2021 11:10:14 +0000 (12:10 +0100)
xml-db/get.pl

index 06bf5c07ae974a1d95b1beed262dd9dd17f770b9..3a13ce6c1eff8afcc3b46f9c0b14247ddb989269 100755 (executable)
@@ -490,7 +490,7 @@ sub generateoutput {
       foreach my $b (sort keys %{$lastboards}) { #for every board
         my $ttmp = "";  #"Line Header" part
         my $ttmp2 = ""; #"Line Content" part
-        my $sl = "";
+        my $sl = "";    #Slice name cell
         my $slicename = "";
         $slicename = " - ".$obj->{sliceName}->{$slice} if (exists $obj->{sliceName}->{$slice});
         next unless defined $data->{$addr}->{$b} || !($obj->{mode} =~ /r/);
@@ -500,7 +500,22 @@ sub generateoutput {
             $iswriteable = $iswriteable || ($db->{$c}->{mode} =~ /w/);
             }
           if($iswriteable) {
-            my $s = sprintf("w 0x%s 0x%04x 0x%08x \t#%s %i%s",$b,$addr,$data->{$addr}->{$b},$name,$slice,$slicename);
+            my $s = sprintf("w 0x%s 0x%04x 0x%08x",
+                          $b,
+                          $addr,
+                          $data->{$addr}->{$b}
+                          );
+            $s .= sprintf(" \t#%s.%i%s",
+                          $name,
+                          $slice,
+                          $slicename);
+            foreach my $c (@{$obj->{children}}) {
+              next unless ($db->{$c}->{mode} =~ /w/);
+              $s .= sprintf(", Bit %i..%i: %s",
+                          $db->{$c}->{start},
+                          $db->{$c}->{start}+$db->{$c}->{bits}-1,
+                          $c);
+              }
             push(@RegisterDump,$s);
             }
           }
@@ -559,7 +574,7 @@ sub generateoutput {
   
   if($StyleDump) {
     print join("\n",@RegisterDump);
-    print("\n");
+    print("\n\n") if scalar @RegisterDump;
     }
   else {  
     print $t;