forked from claudiacor/imcpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.py
More file actions
32 lines (22 loc) · 715 Bytes
/
Constants.py
File metadata and controls
32 lines (22 loc) · 715 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 = "5.4.11"
# Git repository information.
DUNE_IMC_CONST_GIT_INFO = ""
# D5 sum of XML specification file.
DUNE_IMC_CONST_MD5 = "0a8e4d9f66cf472c35c9abd3c58fd140"
# Synchronization number.
DUNE_IMC_CONST_SYNC = 0xFE54
# Reversed synchronization number.
DUNE_IMC_CONST_SYNC_REV = 0x54FE
# Size of the header in bytes.
DUNE_IMC_CONST_HEADER_SIZE = 20
# Size of the footer in bytes.
DUNE_IMC_CONST_FOOTER_SIZE = 2
# Identification number of the null message.
DUNE_IMC_CONST_NULL_ID = 65535
# Maximum message data size.
DUNE_IMC_CONST_MAX_SIZE = 65535
# Unknown entity identifier.
DUNE_IMC_CONST_UNK_EID = 255
# System entity identifier.
DUNE_IMC_CONST_SYS_EID = 0