- Added some hipadab array math

- Added missing cnvrt files, stolen from Markus
- Debugged the new sinqhttpopt driver for SINQ HTTP HM
- Debugged the driver for the new S7 Siemens SPS
- Added handling of hexadecimal terminators to ascon.c
- Increased the write buffer size in asynnet again
- Fixed  a core dump in lld.c
- Added writing of second gen HM to nxscript.c
- Added doubletime command to SICS
- Fixed a core dump issue in sicshdbadapter.c on dimension changes
- Modified sicsobj to look for lower case keys too


SKIPPED:
	psi/cnvrt.c
	psi/cnvrt.h
	psi/el734hp.c
	psi/make_gen
	psi/sinqhttpopt.c
	psi/sinqhttpprot.c
	psi/spss7.c
	psi/swmotor.c
This commit is contained in:
koennecke
2011-04-08 14:18:42 +00:00
parent 268a7f4141
commit 446b05d6a2
25 changed files with 535 additions and 33 deletions

View File

@ -1274,6 +1274,7 @@ int HistAction(SConnection * pCon, SicsInterp * pSics, void *pData,
iRet = HistConfigure(self, pCon, pSics);
if (iRet) {
self->iInit = 1;
InvokeCallBack(self->pCall,DIMCHANGE,NULL);
SCSendOK(pCon);
} else {
self->iInit = 0;
@ -1657,6 +1658,7 @@ int HistAction(SConnection * pCon, SicsInterp * pSics, void *pData,
}
/* do it */
genTimeBinning(self->pDriv->data, (float) dStart, (float) dStep, iNum);
InvokeCallBack(self->pCall,DIMCHANGE,NULL);
SCparChange(pCon);
SCSendOK(pCon);
return 1;
@ -1693,6 +1695,7 @@ int HistAction(SConnection * pCon, SicsInterp * pSics, void *pData,
return 0;
}
setTimeBin(self->pDriv->data, iNum, (float) dStep);
InvokeCallBack(self->pCall,DIMCHANGE,NULL);
self->iInit = 0;
SCSendOK(pCon);
return 1;
@ -1705,6 +1708,7 @@ int HistAction(SConnection * pCon, SicsInterp * pSics, void *pData,
return 0;
}
clearTimeBinning(self->pDriv->data);
InvokeCallBack(self->pCall,DIMCHANGE,NULL);
SCSendOK(pCon);
return 1;
}