]> jspc29.x-matter.uni-frankfurt.de Git - hadesdaq.git/commitdiff
status, mt
authorhadaq@countinghouse <hadaq@CountingHouse>
Thu, 28 Aug 2014 15:28:08 +0000 (17:28 +0200)
committerhadaq@countinghouse <hadaq@CountingHouse>
Thu, 28 Aug 2014 15:28:08 +0000 (17:28 +0200)
pion/config/nxyter/display_channels.sh [deleted file]

diff --git a/pion/config/nxyter/display_channels.sh b/pion/config/nxyter/display_channels.sh
deleted file mode 100755 (executable)
index ea95d8f..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-export PATH=/home/rich/TRB/trbsoft/trbnettools/binlocal:${PATH}
-
-# first disable test_trigger_mode to allow reading
-#REG20=$(trb_i2c r 0x3800 0x08 0x20 | awk '{print $2}')
-#trb_i2c w 0x3800 0x08 0x20 0x00
-
-echo "      01234567"
-#echo "      --------"
-for REG in 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
-do
-
-VALUE=$(trb_i2c r 0x3800 0x08 $REG | awk '{print $2}' | base)
-CHANNEL=$((8*$REG))
-printf "%03d:  " $CHANNEL
-
-for i in 0 1 2 3 4 5 6 7
-do
-       BIT=$(($VALUE>>$i&1))
-       if [ $BIT -eq 0 ]
-       then
-               echo -n "*"
-       else
-               echo -n "_"
-       fi
-done
-echo
-done
-
-# Restore Register 20
-#trb_i2c w 0x3800 0x08 0x20 $REG20