Skip to content
Snippets Groups Projects
Commit 131e46e0 authored by Rolf Bork's avatar Rolf Bork
Browse files

Fix for controllerIopUser code.

git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@4828 6dcd42c9-f523-4c6d-aada-af552506706e
parent 95b3f8ac
No related branches found
No related tags found
No related merge requests found
......@@ -153,6 +153,7 @@ unsigned int getGpsTimeProc() {
mytime = atoi(line);
printf("GPS TIME is %d\n",mytime);
fclose(timef);
mytime -= 1;
return (mytime);
}
void initAdcModules(adcInfo_t *adcinfo) {
......@@ -827,7 +828,7 @@ printf("cycle time = %d\n",cycleTime);
/// \> Cycle 21, Update ADC/DAC status to EPICS.
if(cycleNum == HKP_ADC_DAC_STAT_UPDATES)
{
pLocalEpics->epicsOutput.ovAccum = adcInfo.overflowAdc;
pLocalEpics->epicsOutput.ovAccum = overflowAcc;
for(jj=0;jj<cdsPciModules.adcCount;jj++)
{
// SET/CLR Channel Hopping Error
......
......@@ -148,15 +148,6 @@ int main (int argc, char **argv)
printf("DAQSM at 0x%lx\n",_daq_shm);
daqPtr = (struct rmIpcStr *) _daq_shm;
// Open new GDS TP data shared memory in support of ZMQ
sprintf(shm_name, "%s_gds", sysname);
findSharedMemory(shm_name);
_gds_shm = (char *)addr;
if (_gds_shm < 0) {
printf("mbuf_allocate_area() failed; ret = %d\n", _gds_shm);
return -1;
}
printf("GDSSM at 0x%lx\n",_gds_shm);
// Open new IO shared memory in support of no hardware I/O
sprintf(shm_name, "%s_io_space", sysname);
......
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