somewhere

This commit is contained in:
Dhanya Maliakal
2017-10-27 14:00:57 +02:00
parent 91fece87b2
commit 92f988ddc1
5 changed files with 22 additions and 20 deletions

View File

@ -1,9 +1,9 @@
Path: slsDetectorsPackage/slsDetectorSoftware/jungfrauDetectorServer
URL: origin git@git.psi.ch:sls_detectors_software/sls_detector_software.git
Repository Root: origin git@git.psi.ch:sls_detectors_software/sls_detector_software.git
Repsitory UUID: c58dfe801770ceb63a9baab0be5b4cd16794b57e
Revision: 89
Branch: 3.0-rc
Repsitory UUID: 3c1eb747d1930d6d38030a5a607f72d3b58a7a21
Revision: 90
Branch: 3.0
Last Changed Author: Dhanya_Maliakal
Last Changed Rev: 1495
Last Changed Date: 2017-08-15 14:14:32.000000002 +0200 ./RegisterDefs.h
Last Changed Rev: 1549
Last Changed Date: 2017-10-25 16:48:35.000000002 +0200 ./RegisterDefs.h

View File

@ -1,11 +1,11 @@
//#define SVNPATH ""
#define SVNURL "git@git.psi.ch:sls_detectors_software/sls_detector_software.git"
//#define SVNREPPATH ""
#define SVNREPUUID "c58dfe801770ceb63a9baab0be5b4cd16794b57e"
//#define SVNREV 0x1495
#define SVNREPUUID "3c1eb747d1930d6d38030a5a607f72d3b58a7a21"
//#define SVNREV 0x1549
//#define SVNKIND ""
//#define SVNSCHED ""
#define SVNAUTH "Dhanya_Maliakal"
#define SVNREV 0x1495
#define SVNDATE 0x20170815
#define SVNREV 0x1549
#define SVNDATE 0x20171025
//

View File

@ -645,7 +645,7 @@ int getModule(sls_detector_module *myMod){
for(i=0;i<NDAC;i++)
setDAC((enum DACINDEX)i,-1,-1,0,retval);
//copy to local copy as well
//copy from local copy
if (detectorModules)
copyModule(myMod,detectorModules);
else
@ -870,7 +870,7 @@ int setHighVoltage(int val){
// limit values
if (val < 60) {
dacvalue = 0;
val = 60;
val = 0;
} else if (val >= 200) {
dacvalue = 0x1;
val = 200;