mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-23 23:10:02 +02:00

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@439 951219d9-93cf-4727-9268-0efd64621fa3
32 lines
554 B
C
32 lines
554 B
C
/*
|
|
* slsDetectorServer_defs.h
|
|
*
|
|
* Created on: Jan 24, 2013
|
|
* Author: l_maliakal_d
|
|
*/
|
|
|
|
#ifndef SLSDETECTORSERVER_DEFS_H_
|
|
#define SLSDETECTORSERVER_DEFS_H_
|
|
|
|
#include "sls_detector_defs.h"
|
|
#include <stdint.h>
|
|
|
|
#define GOODBYE -200
|
|
|
|
|
|
#define NCHAN 1
|
|
#define NCHIP 1
|
|
#define NDAC 1
|
|
#define NADC 1
|
|
#define NMAXMODX 1
|
|
#define NMAXMODY 1
|
|
#define NMAXMOD NMAXMODX*NMAXMODY
|
|
#define NCHANS NCHAN*NCHIP*NMAXMOD
|
|
#define NDACS NDAC*NMAXMOD
|
|
|
|
#define DYNAMIC_RANGE 16
|
|
|
|
#define CLK_FREQ 100E+6
|
|
|
|
#endif /* SLSDETECTORSERVER_DEFS_H_ */
|