mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 03:40:04 +02:00
changed logger.h to clogger.h for c files
This commit is contained in:
parent
29c788b9f7
commit
51a3f3fd4d
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
#include "slsDetectorFunctionList.h"
|
#include "slsDetectorFunctionList.h"
|
||||||
#include "versionAPI.h"
|
#include "versionAPI.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
|
|
||||||
#include "communication_funcs_UDP.h"
|
#include "communication_funcs_UDP.h"
|
||||||
#include "UDPPacketHeaderGenerator.h"
|
#include "UDPPacketHeaderGenerator.h"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
#include "Beb.h"
|
#include "Beb.h"
|
||||||
#include "FebRegisterDefs.h"
|
#include "FebRegisterDefs.h"
|
||||||
#include "xparameters.h"
|
#include "xparameters.h"
|
||||||
|
@ -1,8 +1,13 @@
|
|||||||
set(src
|
set(src
|
||||||
slsDetectorFunctionList.c
|
slsDetectorFunctionList.c
|
||||||
slsDetectorServer.c
|
../slsDetectorServer/slsDetectorServer.c
|
||||||
slsDetectorServer_funcs.c
|
../slsDetectorServer/slsDetectorServer_funcs.c
|
||||||
communication_funcs.c
|
../slsDetectorServer/communication_funcs.c
|
||||||
|
)
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
../slsDetectorServer
|
||||||
|
../../slsSupportLib/include
|
||||||
)
|
)
|
||||||
|
|
||||||
add_executable(eigerDetectorServerMaster
|
add_executable(eigerDetectorServerMaster
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "FebControl.h"
|
#include "FebControl.h"
|
||||||
#include "FebRegisterDefs.h"
|
#include "FebRegisterDefs.h"
|
||||||
#include "slsDetectorServer_defs.h"
|
#include "slsDetectorServer_defs.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
#include "Beb.h"
|
#include "Beb.h"
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "FebInterface.h"
|
#include "FebInterface.h"
|
||||||
#include "LocalLinkInterface.h"
|
#include "LocalLinkInterface.h"
|
||||||
#include "xparameters.h"
|
#include "xparameters.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "LocalLinkInterface.h"
|
#include "LocalLinkInterface.h"
|
||||||
#include "HardwareMMappingDefs.h"
|
#include "HardwareMMappingDefs.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
#include "slsDetectorFunctionList.h"
|
#include "slsDetectorFunctionList.h"
|
||||||
#include "versionAPI.h"
|
#include "versionAPI.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
#ifndef VIRTUAL
|
#ifndef VIRTUAL
|
||||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
#include "slsDetectorFunctionList.h"
|
#include "slsDetectorFunctionList.h"
|
||||||
#include "versionAPI.h"
|
#include "versionAPI.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
#include "RegisterDefs.h"
|
#include "RegisterDefs.h"
|
||||||
|
|
||||||
#ifndef VIRTUAL
|
#ifndef VIRTUAL
|
||||||
|
@ -1,8 +1,13 @@
|
|||||||
add_executable(jungfrauDetectorServer
|
add_executable(jungfrauDetectorServer
|
||||||
slsDetectorFunctionList.c
|
slsDetectorFunctionList.c
|
||||||
slsDetectorServer.c
|
../slsDetectorServer/slsDetectorServer.c
|
||||||
slsDetectorServer_funcs.c
|
../slsDetectorServer/slsDetectorServer_funcs.c
|
||||||
communication_funcs.c
|
../slsDetectorServer/communication_funcs.c
|
||||||
|
)
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
../slsDetectorServer/
|
||||||
|
../../slsSupportLib/include
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(jungfrauDetectorServer
|
target_include_directories(jungfrauDetectorServer
|
||||||
|
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
#include "slsDetectorFunctionList.h"
|
#include "slsDetectorFunctionList.h"
|
||||||
#include "versionAPI.h"
|
#include "versionAPI.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
#include <sys/select.h>
|
#include <sys/select.h>
|
||||||
#include "AD9257.h" // commonServerFunctions.h, blackfin.h, ansi.h
|
#include "AD9257.h" // commonServerFunctions.h, blackfin.h, ansi.h
|
||||||
#include "LTC2620.h" // dacs
|
#include "LTC2620.h" // dacs
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "slsDetectorFunctionList.h"
|
#include "slsDetectorFunctionList.h"
|
||||||
#include "versionAPI.h"
|
#include "versionAPI.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
|
|
||||||
#include "communication_funcs_UDP.h"
|
#include "communication_funcs_UDP.h"
|
||||||
#include "UDPPacketHeaderGenerator.h"
|
#include "UDPPacketHeaderGenerator.h"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
#include "sls_detector_defs.h"
|
#include "sls_detector_defs.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include "communication_funcs.h"
|
#include "communication_funcs.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
#include "sls_detector_defs.h"
|
#include "sls_detector_defs.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "sls_detector_defs.h"
|
#include "sls_detector_defs.h"
|
||||||
#include "slsDetectorServer_defs.h" // DAC_INDEX, ADC_INDEX, also include RegisterDefs.h
|
#include "slsDetectorServer_defs.h" // DAC_INDEX, ADC_INDEX, also include RegisterDefs.h
|
||||||
#ifdef GOTTHARDD
|
#ifdef GOTTHARDD
|
||||||
#include "logger.h" // runState(enum TLogLevel)
|
#include "clogger.h" // runState(enum TLogLevel)
|
||||||
#endif
|
#endif
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h> // FILE
|
#include <stdio.h> // FILE
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
The port number is passed as an argument */
|
The port number is passed as an argument */
|
||||||
|
|
||||||
#include "sls_detector_defs.h"
|
#include "sls_detector_defs.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
#include "communication_funcs.h"
|
#include "communication_funcs.h"
|
||||||
#include "slsDetectorServer_funcs.h"
|
#include "slsDetectorServer_funcs.h"
|
||||||
#include "slsDetectorServer_defs.h"
|
#include "slsDetectorServer_defs.h"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "slsDetectorServer_funcs.h"
|
#include "slsDetectorServer_funcs.h"
|
||||||
#include "slsDetectorFunctionList.h"
|
#include "slsDetectorFunctionList.h"
|
||||||
#include "communication_funcs.h"
|
#include "communication_funcs.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "sls_detector_defs.h"
|
#include "sls_detector_defs.h"
|
||||||
#include "logger.h"
|
#include "clogger.h"
|
||||||
|
|
||||||
enum numberMode {DEC, HEX};
|
enum numberMode {DEC, HEX};
|
||||||
#define GOODBYE (-200)
|
#define GOODBYE (-200)
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
#define APILIB 0x190723
|
#define APILIB 0x190723
|
||||||
#define APIRECEIVER 0x190722
|
#define APIRECEIVER 0x190722
|
||||||
#define APIGUI 0x190723
|
#define APIGUI 0x190723
|
||||||
#define APIJUNGFRAU 0x190819
|
#define APICTB 0x190820
|
||||||
#define APIGOTTHARD 0x190819
|
#define APIGOTTHARD 0x190820
|
||||||
#define APICTB 0x190819
|
#define APIJUNGFRAU 0x190820
|
||||||
#define APIMOENCH 0x190819
|
#define APIMOENCH 0x190820
|
||||||
#define APIEIGER 0x190819
|
#define APIEIGER 0x190820
|
||||||
|
Loading…
x
Reference in New Issue
Block a user