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: docs/user-manual/overview/05-enum-arr-ser.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ system unless otherwise noted. Included in this document:
15
15
-[Arrays](#arrays)
16
16
-[Serializables](#serializables)
17
17
-[C++ Classes](#c-classes)
18
+
-[Alias Types](#alias-types)
18
19
-[Conclusion](#conclusion)
19
20
20
21
## Primitive Types
@@ -29,9 +30,11 @@ following table and are available to both the ground system, events, channels, a
29
30
| I8 | int8_t | signed 8-bit integer |
30
31
| I16 | int16_t | signed 16-bit integer |
31
32
| I32 | int32_t | signed 32-bit integer |
33
+
| I64 | int64_t | signed 64-bit integer |
32
34
| U8 | uint8_t | unsigned 8-bit integer |
33
35
| U16 | uint16_t | unsigned 16-bit integer |
34
36
| U32 | uint32_t | unsigned 32-bit integer |
37
+
| U64 | uint64_t | unsigned 64-bit integer |
35
38
| F32 | float | 32-bit floating point |
36
39
| F64 | double | 64-bit floating point |
37
40
@@ -116,6 +119,13 @@ arbitrary C++ `class`/`struct` types. If these types are to be passed through a
116
119
should be defined as subclasses of the `Fw::Serializable` and define `serializeTo` and `deserializeFrom` methods to be called
117
120
to perform the serialization.
118
121
122
+
## Alias Types
123
+
124
+
Alias types provide an alternate name for a type that is defined elsewhere. An alias type can refer to any type, including another alias type (excluding itself).
125
+
126
+
Alias types are designed and used in the modeling of F´ and the C++ implementation is autogenerated.
127
+
128
+
119
129
## Conclusion
120
130
121
131
F´ supports many different types, including autocoded complex types.
0 commit comments