You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: a2l/fnc_values.go
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,20 @@ import (
7
7
"github.com/rs/zerolog/log"
8
8
)
9
9
10
-
typefncValuesstruct {
10
+
// FncValues defines the way the data of a specific record layout is stored within the hex file.
11
+
typeFncValuesstruct {
11
12
//Position of table values (function values) in the deposit structure (description of sequence of elements in the data record).
12
13
Positionuint16
13
14
PositionSetbool
14
-
//data type of the table values
15
+
//Datatype of the table values
15
16
DatatypedataTypeEnum
16
17
DatatypeSetbool
17
-
//for characteristic maps, curves and value blocks, this field is used to describe how the 2-dimensional table values are mapped onto the 1-dimensional address space
18
+
/*IndexMode for characteristic maps, curves and value blocks,
19
+
this field is used to describe how the 2-dimensional table values
20
+
are mapped onto the 1-dimensional address space*/
18
21
IndexModeindexModeEnum
19
22
IndexModeSetbool
20
-
/*addressing of the table values:
23
+
/*Addresstype defines the addressing of the table values:
21
24
Enumeration for description of the addressing of table
22
25
values or axis point values:
23
26
PBYTE: The relevant memory location has a 1 byte pointer
0 commit comments