25 lines
715 B
C
25 lines
715 B
C
/*************************************************************************\
|
|
* Copyright (c) 2024 PSI
|
|
* ecmc is distributed subject to a Software License Agreement found
|
|
* in file LICENSE that is included with this distribution.
|
|
*
|
|
* ecmcDAQDefs.h
|
|
*
|
|
* Created on: Mar. 04, 2024
|
|
* Author: anderssandstrom
|
|
* Credits to https://github.com/sgreg/dynamic-loading
|
|
*
|
|
\*************************************************************************/
|
|
|
|
#ifndef ECMC_SCOPE_DEFS_H_
|
|
#define ECMC_SCOPE_DEFS_H_
|
|
|
|
// Options
|
|
#define ECMC_PLUGIN_DBG_PRINT_OPTION_CMD "DBG_PRINT="
|
|
#define ECMC_PLUGIN_ENABLE_OPTION_CMD "ENABLE="
|
|
|
|
|
|
#define ERROR_DAQ_MEM_INVALID_DATA_TYPE 1000;
|
|
|
|
#endif /* ECMC_SCOPE_DEFS_H_ */
|