]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
add registers for Scalers Readout
authorJan Michel <michel@physik.uni-frankfurt.de>
Wed, 27 Dec 2023 12:51:28 +0000 (13:51 +0100)
committerJan Michel <michel@physik.uni-frankfurt.de>
Wed, 27 Dec 2023 12:52:57 +0000 (13:52 +0100)
xml-db/database/ScalersReadout.xml [new file with mode: 0644]

diff --git a/xml-db/database/ScalersReadout.xml b/xml-db/database/ScalersReadout.xml
new file mode 100644 (file)
index 0000000..1e279f2
--- /dev/null
@@ -0,0 +1,43 @@
+<?xml version="1.0"  encoding="utf-8" ?>
+<TrbNetEntity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+              xsi:noNamespaceSchemaLocation="../schema/TrbNetEntity.xsd"
+              name="ScalersReadout"
+              address="9e00"
+              >
+  <description>Registers for the Scaler Readout</description>
+
+
+  <group name="Registers" address="0000"  size="64" purpose="status" mode="rw" continuous="false">
+    <register name="Config" address="0000" >
+      <description>Config and Triggers</description>
+      <field name="Reset" start="0" bits="1" format="bitmask" mode="w">
+        <description>Resets the scalers. Takes about 700 µs</description>
+      </field>  
+      <field name="ScalerCount" start="8" bits="3" format="unsigned" > 
+        <description>Number of scalers (0..4) to be added to data</description>
+      </field>
+    </register>       
+    <register name="Delay" address="0001" >
+      <description>Delay of signals until end of scaler window</description>
+      <field name="Delay" start="0" bits="12" format="unsigned" scale="10" unit="ns" />
+    </register>    
+    <register name="IntegrationTime" address="0010" repeat="4"  continuous="true">
+      <description>Integration time for each scaler</description>
+      <field name="IntegrationTime" start="0" bits="16" format="unsigned" scale="10" unit="ns" />
+    </register>  
+    <register name="InputSelect" address="0020" repeat="2"  continuous="true">
+      <description>Select Inputs taken for each of the two parallel scalers</description>
+      <field name="InputSelect" start="0" bits="32" format="bitmask"  />
+    </register> 
+    <register name="Scaler" address="0030" repeat="5" mode="r"  continuous="true">
+      <description>Current Scaler values</description>
+      <field name="Scaler0" start="0" bits="16" format="unsigned"  />
+      <field name="Scaler1" start="16" bits="16" format="unsigned"  />
+    </register> 
+    <register name="Differences" address="0038" repeat="5" mode="r"  continuous="true">
+      <description>Current Scaler differences</description>
+      <field name="Difference0" start="0" bits="16" format="unsigned"  />
+      <field name="Difference1" start="16" bits="16" format="unsigned"  />
+    </register> 
+  </group>
+</TrbNetEntity>