Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
advLigoRTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CDS
software
advLigoRTS
Commits
87f1fb0e
Commit
87f1fb0e
authored
5 years ago
by
Rolf Bork
Browse files
Options
Downloads
Patches
Plain Diff
Updates and cleanup in controllerApp, controllerIop and timing.c.
parent
07e82ccd
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/fe/controllerApp.c
+3
-6
3 additions, 6 deletions
src/fe/controllerApp.c
src/fe/controllerIop.c
+6
-29
6 additions, 29 deletions
src/fe/controllerIop.c
src/fe/timing.c
+2
-1
2 additions, 1 deletion
src/fe/timing.c
with
11 additions
and
36 deletions
src/fe/controllerApp.c
+
3
−
6
View file @
87f1fb0e
...
...
@@ -412,9 +412,6 @@ udelay(1000);
// Calculate how many CPU cycles per code cycle
cpc
=
cpu_khz
*
1000
;
cpc
/=
CYCLE_PER_SECOND
;
#ifdef NO_CPU_SHUTDOWN
usleep_range
(
2
,
4
);
#endif
// *******************************************************************************
...
...
@@ -494,7 +491,9 @@ udelay(1000);
pLocalEpics
->
epicsOutput
.
cycle
=
cycleNum
;
// **********************************************************************
/// \> Cycle 18, Send timing info to EPICS at 1Hz
// **********************************************************************
if
(
cycleNum
==
HKP_TIMING_UPDATES
)
{
sendTimingDiags2Epics
(
pLocalEpics
,
&
timeinfo
,
&
adcinfo
);
...
...
@@ -587,8 +586,7 @@ udelay(1000);
#endif
pLocalEpics
->
epicsOutput
.
fbNetStat
=
mxStat
;
mxDiag
=
mxDiagR
;
if
(
mxStat
!=
MX_OK
)
feStatus
|=
FE_ERROR_DAQ
;;
if
(
mxStat
!=
MX_OK
)
feStatus
|=
FE_ERROR_DAQ
;;
if
(
pLocalEpics
->
epicsInput
.
overflowReset
)
{
if
(
pLocalEpics
->
epicsInput
.
overflowReset
)
{
...
...
@@ -599,7 +597,6 @@ udelay(1000);
pLocalEpics
->
epicsOutput
.
overflowAdcAcc
[
jj
][
ii
]
=
0
;
pLocalEpics
->
epicsOutput
.
overflowAdcAcc
[
jj
][
ii
+
16
]
=
0
;
}
for
(
jj
=
0
;
jj
<
cdsPciModules
.
dacCount
;
jj
++
)
{
pLocalEpics
->
epicsOutput
.
overflowDacAcc
[
jj
][
ii
]
=
0
;
}
...
...
This diff is collapsed.
Click to expand it.
src/fe/controllerIop.c
+
6
−
29
View file @
87f1fb0e
...
...
@@ -191,7 +191,6 @@ void *fe_start(void *arg)
static
int
cpuClock
[
CPU_TIMER_CNT
];
/// @param cpuClock[] Code timing diag variables
int
sync21ppsCycles
=
0
;
/// @param sync32ppsCycles Number of attempts to sync to 1PPS
// int dkiTrip = 0;
RFM_FE_COMMS
*
pEpicsComms
;
/// @param *pEpicsComms Pointer to EPICS shared memory space
int
status
;
/// @param status Typical function return value
float
onePps
;
/// @param onePps Value of 1PPS signal, if used, for diagnostics
...
...
@@ -214,9 +213,6 @@ void *fe_start(void *arg)
int
feStatus
=
0
;
int
dkiTrip
=
0
;
int
adcInAlarm
=
0
;
int
adcMissedCycle
=
0
;
int
dac_restore
=
0
;
unsigned
int
usec
=
0
;
unsigned
long
cpc
;
...
...
@@ -502,18 +498,6 @@ adcInfo_t *padcinfo = (adcInfo_t *)&adcinfo;
// Start of ADC Read **********************************************************************
// Read ADC data
status
=
iop_adc_read
(
padcinfo
,
cpuClock
);
if
(
status
==
ADC_BUS_DELAY
&&
dacWriteEnable
>
8
)
{
adcInAlarm
=
10
;
adcMissedCycle
=
0
;
status
=
gsc16ao16ClearDacBuffer
(
0
);
status
=
iop_dac_recover
(
1
,
dacPtr
);
}
if
(
status
==
ADC_SHORT_CYCLE
&&
adcInAlarm
)
adcMissedCycle
++
;
if
(
adcInAlarm
>
1
)
adcInAlarm
--
;
if
(
status
==
0
&&
adcInAlarm
==
1
)
{
adcInAlarm
=
0
;
dac_restore
=
adcMissedCycle
;
}
// Try synching to 1PPS on ADC[0][31] if not using IRIG-B or TDS
// Only try for 1 sec.
...
...
@@ -561,20 +545,13 @@ adcInfo_t *padcinfo = (adcInfo_t *)&adcinfo;
/// WRITE DAC OUTPUTS ***************************************** \n
// ********************************************************************
// COMMENT OUT NEX LINE FOR TEST STAND w/bad DAC cards.
#ifndef DAC_WD_OVERRIDE
// If a DAC module has bad timing then quit writing outputs
// if(dacTimingError) iopDacEnable = 0;
// COMMENT OUT NEXT LINE FOR TEST STAND w/bad DAC cards.
if
(
dacTimingError
)
iopDacEnable
=
0
;
#endif
// Write out data to DAC modules
if
(
dac_restore
==
4
)
{
status
=
gsc16ao16ClearDacBuffer
(
0
);
status
=
iop_dac_recover
(
7
,
dacPtr
);
}
dkiTrip
=
0
;
if
(
dac_restore
>
4
)
dacWriteEnable
=
0
;
dkiTrip
=
iop_dac_write
();
if
(
dac_restore
)
dac_restore
--
;
// ***********************************************************************
...
...
@@ -622,9 +599,6 @@ adcInfo_t *padcinfo = (adcInfo_t *)&adcinfo;
diagWord
|=
TIME_ERR_IRIGB
;;
}
}
#ifdef NO_CPU_SHUTDOWN
// schedule();
#endif
}
/// \> Update duotone diag information
...
...
@@ -742,6 +716,8 @@ adcInfo_t *padcinfo = (adcInfo_t *)&adcinfo;
// If not, set sync error flag
if
(
onePpsTime
>
1
)
pLocalEpics
->
epicsOutput
.
timeErr
|=
TIME_ERR_1PPS
;
}
// Following is only used on automated test system
#ifdef DIAG_TEST
for
(
ii
=
0
;
ii
<
10
;
ii
++
)
{
...
...
@@ -778,9 +754,10 @@ adcInfo_t *padcinfo = (adcInfo_t *)&adcinfo;
if
(
pLocalEpics
->
epicsOutput
.
daqByteCnt
>
DAQ_DCU_RATE_WARNING
)
feStatus
|=
FE_ERROR_DAQ
;
#endif
// *****************************************************************
// *****************************************************************
/// \> Cycle 19, write updated diag info to EPICS
// *****************************************************************
if
(
cycleNum
==
HKP_DIAG_UPDATES
)
{
pLocalEpics
->
epicsOutput
.
ipcStat
=
ipcErrBits
;
...
...
This diff is collapsed.
Click to expand it.
src/fe/timing.c
+
2
−
1
View file @
87f1fb0e
...
...
@@ -149,7 +149,8 @@ inline void captureEocTiming(int cycle, unsigned int cycle_gps, timing_diag_t *t
// Hold the max cycle time since last diag reset
if
(
timeinfo
->
cycleTime
>
timeinfo
->
timeHoldMax
)
timeinfo
->
timeHoldMax
=
timeinfo
->
cycleTime
;
// Avoid calculating the max hold time for the first few seconds
if
(
cycle
!=
0
&&
(
timeinfo
->
startGpsTime
+
3
)
<
cycle_gps
)
{
// if (cycle != 0 && (timeinfo->startGpsTime+3) < cycle_gps) {
if
((
timeinfo
->
startGpsTime
+
3
)
<
cycle_gps
)
{
if
(
adcinfo
->
adcHoldTime
>
adcinfo
->
adcHoldTimeMax
)
adcinfo
->
adcHoldTimeMax
=
adcinfo
->
adcHoldTime
;
if
(
adcinfo
->
adcHoldTime
<
adcinfo
->
adcHoldTimeMin
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment