File tree 2 files changed +11
-0
lines changed 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ SPDX-License-Identifier: CC0-1.0
20
20
21
21
## Data classes & types
22
22
23
+ ::: pykmp.codec.PhysicalBytes
24
+ ::: pykmp.codec.DataLinkBytes
25
+ ::: pykmp.codec.ApplicationBytes
26
+ ::: pykmp.codec.ApplicationDataBytes
23
27
::: pykmp.codec.ApplicationData
24
28
::: pykmp.codec.DataLinkData
25
29
::: pykmp.codec.PhysicalDirection
Original file line number Diff line number Diff line change 30
30
31
31
32
32
PhysicalBytes = NewType ("PhysicalBytes" , bytes )
33
+ """Distinct type (bytes) representing serialized bytes on the physical layer."""
34
+
33
35
DataLinkBytes = NewType ("DataLinkBytes" , bytes )
36
+ """Distinct type (bytes) representing serialized bytes on the data link layer."""
37
+
34
38
ApplicationBytes = NewType ("ApplicationBytes" , bytes )
39
+ """Distinct type (bytes) representing serialized data on the application layer."""
40
+
35
41
ApplicationDataBytes = NewType ("ApplicationDataBytes" , bytes )
42
+ """Distinct type (bytes) representing serialized application (message) data."""
36
43
37
44
38
45
class AckReceivedException (Exception ): # noqa: N818
You can’t perform that action at this time.
0 commit comments