ConstantParamData.hh
620 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* ConstantParamData.hh
*
* Created on: Jan 30, 2019
* Author: AKKA
*/
#ifndef CONSTANTPARAMDATA_H_
#define CONSTANTPARAMDATA_H_
namespace AMDA {
namespace ConstantInterface {
/*
* @brief Container type
*/
enum ConstantContainerType
{
CONTAINER_SCALAR,
CONTAINER_VECTOR,
CONTAINER_MATRIX
};
/*
* @brief Param type
*/
enum ConstantParamType
{
TYPE_FLOAT,
TYPE_DOUBLE,
TYPE_SHORT,
TYPE_INT
};
/*
* @brief Define the maximum bytes available for one packet
*/
#define PARAMPACKET_MAX_DATABYTES 80000
#define PARAMPACKET_MIN_NBDATABYPACKET 1000
} /* ConstantInterface */
} /* AMDA */
#endif