Skip to content
Snippets Groups Projects
Commit abd4a98a authored by Ruud Overeem's avatar Ruud Overeem
Browse files

BugID:810

Removed 'status' and 'functionality' fields and replaced them with
'status', 'childStatus', and 'currentAction'.
parent 65f52028
No related branches found
No related tags found
No related merge requests found
status int
functionality bool
statisticsSubbandPower floatArr statisticsSubbandPower floatArr
statisticsBeamletPower floatArr statisticsBeamletPower floatArr
statisticsCrosslet floatArr statisticsCrosslet floatArr
......
status int
functionality bool
VddVccEn bool VddVccEn bool
VhEnable bool VhEnable bool
VlEnable bool VlEnable bool
...@@ -11,11 +9,8 @@ HBAEnable bool ...@@ -11,11 +9,8 @@ HBAEnable bool
LBLEnable bool LBLEnable bool
LBHEnable bool LBHEnable bool
nofOverflow uint nofOverflow uint
LBL.status int LBL.state int
LBL.functionality bool LBH.state int
LBH.status int HBA.state int
LBH.functionality bool
HBA.status int
HBA.functionality bool
ADCStatistics.overflow bool ADCStatistics.overflow bool
Attenuating uint Attenuating uint
status int
functionality bool
voltage12 float voltage12 float
voltage25 float voltage25 float
voltage33 float voltage33 float
version string version string
alert int alert int
Ethernet.status int Ethernet.state int
Ethernet.functionality bool
Ethernet.packetsReceived uint Ethernet.packetsReceived uint
Ethernet.packetsError uint Ethernet.packetsError uint
Ethernet.lastError uint Ethernet.lastError uint
MEP.seqnr uint MEP.seqnr uint
MEP.error uint MEP.error uint
BP.status int BP.state int
BP.functionality bool
BP.temperature float BP.temperature float
BP.version string BP.version string
BP.SYNC.sampleCount uint BP.SYNC.sampleCount uint
BP.SYNC.syncCount uint BP.SYNC.syncCount uint
BP.SYNC.errorCount uint BP.SYNC.errorCount uint
AP0.status int AP0.state int
AP0.functionality bool
AP0.temperature float AP0.temperature float
AP0.version string AP0.version string
AP0.SYNC.sampleCount uint AP0.SYNC.sampleCount uint
AP0.SYNC.syncCount uint AP0.SYNC.syncCount uint
AP0.SYNC.errorCount uint AP0.SYNC.errorCount uint
AP1.status int AP1.state int
AP1.functionality bool
AP1.temperature float AP1.temperature float
AP1.version string AP1.version string
AP1.SYNC.sampleCount uint AP1.SYNC.sampleCount uint
AP1.SYNC.syncCount uint AP1.SYNC.syncCount uint
AP1.SYNC.errorCount uint AP1.SYNC.errorCount uint
AP2.status int AP2.state int
AP2.functionality bool
AP2.temperature float AP2.temperature float
AP2.version string AP2.version string
AP2.SYNC.sampleCount uint AP2.SYNC.sampleCount uint
AP2.SYNC.syncCount uint AP2.SYNC.syncCount uint
AP2.SYNC.errorCount uint AP2.SYNC.errorCount uint
AP3.status int AP3.state int
AP3.functionality bool
AP3.temperature float AP3.temperature float
AP3.version string AP3.version string
AP3.SYNC.sampleCount uint AP3.SYNC.sampleCount uint
......
...@@ -2,10 +2,10 @@ SPU.Vhba float ...@@ -2,10 +2,10 @@ SPU.Vhba float
SPU.Vlba float SPU.Vlba float
SPU.Vdig float SPU.Vdig float
SPU.temperature float SPU.temperature float
clock.Vfsp float clockBoard.Vfsp float
clock.Vclock float clockBoard.Vclock float
clock.version string clockBoard.version string
clock.freq int clockBoard.freq int
clock.lock160 bool clockBoard.lock160 bool
clock.lock200 bool clockBoard.lock200 bool
clock.temperature float clockBoard.temperature float
...@@ -488,19 +488,23 @@ create_dpt_file() ...@@ -488,19 +488,23 @@ create_dpt_file()
if [ ! -f ${dpt}.dpdef ]; then if [ ! -f ${dpt}.dpdef ]; then
echo "TypeName" echo "TypeName"
echo "${dpt}.${dpt} 1#1" echo "${dpt}.${dpt} 1#1"
echo " state 25#2" echo " state 21#2"
echo " childState 21#3"
if [ ${prefix} != "-" ]; then if [ ${prefix} != "-" ]; then
echo "No definition file for ${dpt}" >> ${ERRORFILE} echo "No definition file for ${dpt}" >> ${ERRORFILE}
echo " error 25#3" echo " currentAction 25#4"
echo " logmsg 25#4" echo " error 25#5"
echo " logMsg 25#6"
fi fi
else else
echo "TypeName" echo "TypeName"
echo "${dpt}.${dpt} 1#1" echo "${dpt}.${dpt} 1#1"
echo " state 25#2" echo " currentAction 25#2"
echo " error 25#3" echo " error 25#3"
echo " logmsg 25#4" echo " logMsg 25#4"
let count=5 echo " state 21#5"
echo " childState 21#6"
let count=7
let depth=1 let depth=1
oldnode="" oldnode=""
cleanlist ${dpt}.dpdef | awk -v elemNr=$count ' cleanlist ${dpt}.dpdef | awk -v elemNr=$count '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment