forked from claudiacor/imcpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConst_temp.py
More file actions
32 lines (22 loc) · 779 Bytes
/
Const_temp.py
File metadata and controls
32 lines (22 loc) · 779 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
# IMC version string.
DUNE_IMC_CONST_VERSION = "{{version}}"
# Git repository information.
DUNE_IMC_CONST_GIT_INFO = "{{git_info}}"
# D5 sum of XML specification file.
DUNE_IMC_CONST_MD5 = "{{const_md5}}"
# Synchronization number.
DUNE_IMC_CONST_SYNC = {{sync}}
# Reversed synchronization number.
DUNE_IMC_CONST_SYNC_REV = {{sync_rev}}
# Size of the header in bytes.
DUNE_IMC_CONST_HEADER_SIZE = {{header_size}}
# Size of the footer in bytes.
DUNE_IMC_CONST_FOOTER_SIZE = {{footer_size}}
# Identification number of the null message.
DUNE_IMC_CONST_NULL_ID = {{null_id}}
# Maximum message data size.
DUNE_IMC_CONST_MAX_SIZE = {{max_size}}
# Unknown entity identifier.
DUNE_IMC_CONST_UNK_EID = {{unk_eid}}
# System entity identifier.
DUNE_IMC_CONST_SYS_EID = {{sys_eid}}