icsneopy 1.1.0.post1.dev42__cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of icsneopy might be problematic. Click here for more details.
- icsneopy/__init__.py +1 -0
- icsneopy/icsneopy.cpython-314t-x86_64-linux-gnu.so +0 -0
- icsneopy/icsneopy.pyi +1772 -0
- icsneopy/py.typed +0 -0
- icsneopy-1.1.0.post1.dev42.dist-info/METADATA +105 -0
- icsneopy-1.1.0.post1.dev42.dist-info/RECORD +8 -0
- icsneopy-1.1.0.post1.dev42.dist-info/WHEEL +6 -0
- icsneopy-1.1.0.post1.dev42.dist-info/licenses/LICENSE +29 -0
icsneopy/icsneopy.pyi
ADDED
|
@@ -0,0 +1,1772 @@
|
|
|
1
|
+
import datetime
|
|
2
|
+
from _typeshed import Incomplete
|
|
3
|
+
from typing import Callable, ClassVar, overload
|
|
4
|
+
|
|
5
|
+
class APIEvent:
|
|
6
|
+
class Severity:
|
|
7
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
8
|
+
Any: ClassVar[APIEvent.Severity] = ...
|
|
9
|
+
Error: ClassVar[APIEvent.Severity] = ...
|
|
10
|
+
EventInfo: ClassVar[APIEvent.Severity] = ...
|
|
11
|
+
EventWarning: ClassVar[APIEvent.Severity] = ...
|
|
12
|
+
__entries: ClassVar[dict] = ...
|
|
13
|
+
def __init__(self, value: int) -> None: ...
|
|
14
|
+
def __eq__(self, other: object) -> bool: ...
|
|
15
|
+
def __hash__(self) -> int: ...
|
|
16
|
+
def __index__(self) -> int: ...
|
|
17
|
+
def __int__(self) -> int: ...
|
|
18
|
+
def __ne__(self, other: object) -> bool: ...
|
|
19
|
+
@property
|
|
20
|
+
def name(self) -> str: ...
|
|
21
|
+
@property
|
|
22
|
+
def value(self) -> int: ...
|
|
23
|
+
|
|
24
|
+
class Type:
|
|
25
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
26
|
+
A2BMessageIncompleteFrame: ClassVar[APIEvent.Type] = ...
|
|
27
|
+
AnotherInTerminationGroupEnabled: ClassVar[APIEvent.Type] = ...
|
|
28
|
+
Any: ClassVar[APIEvent.Type] = ...
|
|
29
|
+
AppErrorParsingFailed: ClassVar[APIEvent.Type] = ...
|
|
30
|
+
AtomicOperationCompletedNonatomically: ClassVar[APIEvent.Type] = ...
|
|
31
|
+
AtomicOperationRetried: ClassVar[APIEvent.Type] = ...
|
|
32
|
+
BaudrateNotFound: ClassVar[APIEvent.Type] = ...
|
|
33
|
+
BufferInsufficient: ClassVar[APIEvent.Type] = ...
|
|
34
|
+
CANFDNotSupported: ClassVar[APIEvent.Type] = ...
|
|
35
|
+
CANFDSettingsNotAvailable: ClassVar[APIEvent.Type] = ...
|
|
36
|
+
CANSettingsNotAvailable: ClassVar[APIEvent.Type] = ...
|
|
37
|
+
CoreminiUploadVersionMismatch: ClassVar[APIEvent.Type] = ...
|
|
38
|
+
DXXErrorArg: ClassVar[APIEvent.Type] = ...
|
|
39
|
+
DXXErrorIO: ClassVar[APIEvent.Type] = ...
|
|
40
|
+
DXXErrorInt: ClassVar[APIEvent.Type] = ...
|
|
41
|
+
DXXErrorOverflow: ClassVar[APIEvent.Type] = ...
|
|
42
|
+
DXXErrorSys: ClassVar[APIEvent.Type] = ...
|
|
43
|
+
DeviceCurrentlyClosed: ClassVar[APIEvent.Type] = ...
|
|
44
|
+
DeviceCurrentlyOffline: ClassVar[APIEvent.Type] = ...
|
|
45
|
+
DeviceCurrentlyOnline: ClassVar[APIEvent.Type] = ...
|
|
46
|
+
DeviceCurrentlyOpen: ClassVar[APIEvent.Type] = ...
|
|
47
|
+
DeviceCurrentlyPolling: ClassVar[APIEvent.Type] = ...
|
|
48
|
+
DeviceDisconnected: ClassVar[APIEvent.Type] = ...
|
|
49
|
+
DeviceFirmwareOutOfDate: ClassVar[APIEvent.Type] = ...
|
|
50
|
+
DeviceInUse: ClassVar[APIEvent.Type] = ...
|
|
51
|
+
DeviceNotCurrentlyPolling: ClassVar[APIEvent.Type] = ...
|
|
52
|
+
DiskFormatInvalidCount: ClassVar[APIEvent.Type] = ...
|
|
53
|
+
DiskFormatNotSupported: ClassVar[APIEvent.Type] = ...
|
|
54
|
+
DiskNotConnected: ClassVar[APIEvent.Type] = ...
|
|
55
|
+
DiskNotSupported: ClassVar[APIEvent.Type] = ...
|
|
56
|
+
DriverFailedToClose: ClassVar[APIEvent.Type] = ...
|
|
57
|
+
DriverFailedToOpen: ClassVar[APIEvent.Type] = ...
|
|
58
|
+
EOFReached: ClassVar[APIEvent.Type] = ...
|
|
59
|
+
ErrorSettingSocketOption: ClassVar[APIEvent.Type] = ...
|
|
60
|
+
EthPhyRegisterControlNotAvailable: ClassVar[APIEvent.Type] = ...
|
|
61
|
+
FailedToBind: ClassVar[APIEvent.Type] = ...
|
|
62
|
+
FailedToRead: ClassVar[APIEvent.Type] = ...
|
|
63
|
+
FailedToWrite: ClassVar[APIEvent.Type] = ...
|
|
64
|
+
FixedPointOverflow: ClassVar[APIEvent.Type] = ...
|
|
65
|
+
FixedPointPrecision: ClassVar[APIEvent.Type] = ...
|
|
66
|
+
GPTPNotSupported: ClassVar[APIEvent.Type] = ...
|
|
67
|
+
GetIfAddrsError: ClassVar[APIEvent.Type] = ...
|
|
68
|
+
I2CMessageExceedsMaxLength: ClassVar[APIEvent.Type] = ...
|
|
69
|
+
IncorrectSerialNumber: ClassVar[APIEvent.Type] = ...
|
|
70
|
+
InvalidNeoDevice: ClassVar[APIEvent.Type] = ...
|
|
71
|
+
LINSettingsNotAvailable: ClassVar[APIEvent.Type] = ...
|
|
72
|
+
LSFTCANSettingsNotAvailable: ClassVar[APIEvent.Type] = ...
|
|
73
|
+
LiveDataCommandFailed: ClassVar[APIEvent.Type] = ...
|
|
74
|
+
LiveDataDecoderError: ClassVar[APIEvent.Type] = ...
|
|
75
|
+
LiveDataEncoderError: ClassVar[APIEvent.Type] = ...
|
|
76
|
+
LiveDataInvalidArgument: ClassVar[APIEvent.Type] = ...
|
|
77
|
+
LiveDataInvalidCommand: ClassVar[APIEvent.Type] = ...
|
|
78
|
+
LiveDataInvalidHandle: ClassVar[APIEvent.Type] = ...
|
|
79
|
+
LiveDataMaxSignalsReached: ClassVar[APIEvent.Type] = ...
|
|
80
|
+
LiveDataNoDeviceResponse: ClassVar[APIEvent.Type] = ...
|
|
81
|
+
LiveDataNotSupported: ClassVar[APIEvent.Type] = ...
|
|
82
|
+
LiveDataVersionMismatch: ClassVar[APIEvent.Type] = ...
|
|
83
|
+
MDIOMessageExceedsMaxLength: ClassVar[APIEvent.Type] = ...
|
|
84
|
+
MessageFormattingError: ClassVar[APIEvent.Type] = ...
|
|
85
|
+
MessageMaxLengthExceeded: ClassVar[APIEvent.Type] = ...
|
|
86
|
+
ModeNotFound: ClassVar[APIEvent.Type] = ...
|
|
87
|
+
NoDeviceResponse: ClassVar[APIEvent.Type] = ...
|
|
88
|
+
NoErrorFound: ClassVar[APIEvent.Type] = ...
|
|
89
|
+
NoSerialNumber: ClassVar[APIEvent.Type] = ...
|
|
90
|
+
NoSerialNumber12V: ClassVar[APIEvent.Type] = ...
|
|
91
|
+
NoSerialNumberFW: ClassVar[APIEvent.Type] = ...
|
|
92
|
+
NoSerialNumberFW12V: ClassVar[APIEvent.Type] = ...
|
|
93
|
+
NotSupported: ClassVar[APIEvent.Type] = ...
|
|
94
|
+
OnlineNotSupported: ClassVar[APIEvent.Type] = ...
|
|
95
|
+
OutputTruncated: ClassVar[APIEvent.Type] = ...
|
|
96
|
+
PCAPCouldNotFindDevices: ClassVar[APIEvent.Type] = ...
|
|
97
|
+
PCAPCouldNotStart: ClassVar[APIEvent.Type] = ...
|
|
98
|
+
PacketChecksumError: ClassVar[APIEvent.Type] = ...
|
|
99
|
+
PacketDecodingError: ClassVar[APIEvent.Type] = ...
|
|
100
|
+
ParameterOutOfRange: ClassVar[APIEvent.Type] = ...
|
|
101
|
+
PollingMessageOverflow: ClassVar[APIEvent.Type] = ...
|
|
102
|
+
RTRNotSupported: ClassVar[APIEvent.Type] = ...
|
|
103
|
+
RequiredParameterNull: ClassVar[APIEvent.Type] = ...
|
|
104
|
+
RestrictedEntryFlag: ClassVar[APIEvent.Type] = ...
|
|
105
|
+
SWCANSettingsNotAvailable: ClassVar[APIEvent.Type] = ...
|
|
106
|
+
SendToError: ClassVar[APIEvent.Type] = ...
|
|
107
|
+
ServdBindError: ClassVar[APIEvent.Type] = ...
|
|
108
|
+
ServdInvalidResponseError: ClassVar[APIEvent.Type] = ...
|
|
109
|
+
ServdJoinMulticastError: ClassVar[APIEvent.Type] = ...
|
|
110
|
+
ServdLockError: ClassVar[APIEvent.Type] = ...
|
|
111
|
+
ServdNoDataError: ClassVar[APIEvent.Type] = ...
|
|
112
|
+
ServdNonblockError: ClassVar[APIEvent.Type] = ...
|
|
113
|
+
ServdOutdatedError: ClassVar[APIEvent.Type] = ...
|
|
114
|
+
ServdPollError: ClassVar[APIEvent.Type] = ...
|
|
115
|
+
ServdRecvError: ClassVar[APIEvent.Type] = ...
|
|
116
|
+
ServdSendError: ClassVar[APIEvent.Type] = ...
|
|
117
|
+
ServdTransceiveError: ClassVar[APIEvent.Type] = ...
|
|
118
|
+
SettingNotAvaiableDevice: ClassVar[APIEvent.Type] = ...
|
|
119
|
+
SettingsChecksumError: ClassVar[APIEvent.Type] = ...
|
|
120
|
+
SettingsDefaultsUsed: ClassVar[APIEvent.Type] = ...
|
|
121
|
+
SettingsLengthError: ClassVar[APIEvent.Type] = ...
|
|
122
|
+
SettingsNotAvailable: ClassVar[APIEvent.Type] = ...
|
|
123
|
+
SettingsReadError: ClassVar[APIEvent.Type] = ...
|
|
124
|
+
SettingsReadOnly: ClassVar[APIEvent.Type] = ...
|
|
125
|
+
SettingsStructureMismatch: ClassVar[APIEvent.Type] = ...
|
|
126
|
+
SettingsStructureTruncated: ClassVar[APIEvent.Type] = ...
|
|
127
|
+
SettingsVersionError: ClassVar[APIEvent.Type] = ...
|
|
128
|
+
SocketFailedToOpen: ClassVar[APIEvent.Type] = ...
|
|
129
|
+
SyscallError: ClassVar[APIEvent.Type] = ...
|
|
130
|
+
TerminationNotSupportedDevice: ClassVar[APIEvent.Type] = ...
|
|
131
|
+
TerminationNotSupportedNetwork: ClassVar[APIEvent.Type] = ...
|
|
132
|
+
Timeout: ClassVar[APIEvent.Type] = ...
|
|
133
|
+
TooManyEvents: ClassVar[APIEvent.Type] = ...
|
|
134
|
+
TransmitBufferFull: ClassVar[APIEvent.Type] = ...
|
|
135
|
+
UnexpectedNetworkType: ClassVar[APIEvent.Type] = ...
|
|
136
|
+
UnexpectedResponse: ClassVar[APIEvent.Type] = ...
|
|
137
|
+
Unknown: ClassVar[APIEvent.Type] = ...
|
|
138
|
+
UnsupportedTXNetwork: ClassVar[APIEvent.Type] = ...
|
|
139
|
+
VSABufferCorrupted: ClassVar[APIEvent.Type] = ...
|
|
140
|
+
VSABufferFormatError: ClassVar[APIEvent.Type] = ...
|
|
141
|
+
VSAByteParseFailure: ClassVar[APIEvent.Type] = ...
|
|
142
|
+
VSAExtendedMessageError: ClassVar[APIEvent.Type] = ...
|
|
143
|
+
VSAMaxReadAttemptsReached: ClassVar[APIEvent.Type] = ...
|
|
144
|
+
VSAOtherError: ClassVar[APIEvent.Type] = ...
|
|
145
|
+
VSATimestampNotFound: ClassVar[APIEvent.Type] = ...
|
|
146
|
+
ValueNotYetPresent: ClassVar[APIEvent.Type] = ...
|
|
147
|
+
WiVINotSupported: ClassVar[APIEvent.Type] = ...
|
|
148
|
+
WiVIStackRefreshFailed: ClassVar[APIEvent.Type] = ...
|
|
149
|
+
WiVIUploadStackOverflow: ClassVar[APIEvent.Type] = ...
|
|
150
|
+
__entries: ClassVar[dict] = ...
|
|
151
|
+
def __init__(self, value: int) -> None: ...
|
|
152
|
+
def __eq__(self, other: object) -> bool: ...
|
|
153
|
+
def __hash__(self) -> int: ...
|
|
154
|
+
def __index__(self) -> int: ...
|
|
155
|
+
def __int__(self) -> int: ...
|
|
156
|
+
def __ne__(self, other: object) -> bool: ...
|
|
157
|
+
@property
|
|
158
|
+
def name(self) -> str: ...
|
|
159
|
+
@property
|
|
160
|
+
def value(self) -> int: ...
|
|
161
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
162
|
+
def describe(self) -> str: ...
|
|
163
|
+
def get_description(self) -> str: ...
|
|
164
|
+
def get_severity(self) -> APIEvent.Severity: ...
|
|
165
|
+
def get_type(self) -> APIEvent.Type: ...
|
|
166
|
+
|
|
167
|
+
class CANErrorCode:
|
|
168
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
169
|
+
AckError: ClassVar[CANErrorCode] = ...
|
|
170
|
+
Bit0Error: ClassVar[CANErrorCode] = ...
|
|
171
|
+
Bit1Error: ClassVar[CANErrorCode] = ...
|
|
172
|
+
CRCError: ClassVar[CANErrorCode] = ...
|
|
173
|
+
FormError: ClassVar[CANErrorCode] = ...
|
|
174
|
+
NoChange: ClassVar[CANErrorCode] = ...
|
|
175
|
+
NoError: ClassVar[CANErrorCode] = ...
|
|
176
|
+
StuffError: ClassVar[CANErrorCode] = ...
|
|
177
|
+
__entries: ClassVar[dict] = ...
|
|
178
|
+
def __init__(self, value: int) -> None: ...
|
|
179
|
+
def __eq__(self, other: object) -> bool: ...
|
|
180
|
+
def __hash__(self) -> int: ...
|
|
181
|
+
def __index__(self) -> int: ...
|
|
182
|
+
def __int__(self) -> int: ...
|
|
183
|
+
def __ne__(self, other: object) -> bool: ...
|
|
184
|
+
@property
|
|
185
|
+
def name(self) -> str: ...
|
|
186
|
+
@property
|
|
187
|
+
def value(self) -> int: ...
|
|
188
|
+
|
|
189
|
+
class CANErrorCountMessage(Message):
|
|
190
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
191
|
+
@property
|
|
192
|
+
def busOff(self) -> bool: ...
|
|
193
|
+
@property
|
|
194
|
+
def dataErrorCode(self) -> CANErrorCode: ...
|
|
195
|
+
@property
|
|
196
|
+
def errorCode(self) -> CANErrorCode: ...
|
|
197
|
+
@property
|
|
198
|
+
def errorPassive(self) -> bool: ...
|
|
199
|
+
@property
|
|
200
|
+
def errorWarn(self) -> bool: ...
|
|
201
|
+
@property
|
|
202
|
+
def network(self) -> Network: ...
|
|
203
|
+
@property
|
|
204
|
+
def receiveErrorCount(self) -> int: ...
|
|
205
|
+
@property
|
|
206
|
+
def transmitErrorCount(self) -> int: ...
|
|
207
|
+
|
|
208
|
+
class CANErrorMessage(Message):
|
|
209
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
210
|
+
@property
|
|
211
|
+
def busOff(self) -> bool: ...
|
|
212
|
+
@property
|
|
213
|
+
def dataErrorCode(self) -> CANErrorCode: ...
|
|
214
|
+
@property
|
|
215
|
+
def errorCode(self) -> CANErrorCode: ...
|
|
216
|
+
@property
|
|
217
|
+
def errorPassive(self) -> bool: ...
|
|
218
|
+
@property
|
|
219
|
+
def errorWarn(self) -> bool: ...
|
|
220
|
+
@property
|
|
221
|
+
def network(self) -> Network: ...
|
|
222
|
+
@property
|
|
223
|
+
def receiveErrorCount(self) -> int: ...
|
|
224
|
+
@property
|
|
225
|
+
def transmitErrorCount(self) -> int: ...
|
|
226
|
+
|
|
227
|
+
class CANMessage(Frame):
|
|
228
|
+
arbid: int
|
|
229
|
+
baudrateSwitch: bool
|
|
230
|
+
dlcOnWire: int
|
|
231
|
+
errorStateIndicator: bool
|
|
232
|
+
isCANFD: bool
|
|
233
|
+
isExtended: bool
|
|
234
|
+
isRemote: bool
|
|
235
|
+
def __init__(self) -> None: ...
|
|
236
|
+
|
|
237
|
+
class ChipID:
|
|
238
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
239
|
+
Connect_LINUX: ClassVar[ChipID] = ...
|
|
240
|
+
Connect_ZCHIP: ClassVar[ChipID] = ...
|
|
241
|
+
EEVB_STM32: ClassVar[ChipID] = ...
|
|
242
|
+
EtherBADGE_MCHIP: ClassVar[ChipID] = ...
|
|
243
|
+
FlexRay_VNETZ_FCHIP: ClassVar[ChipID] = ...
|
|
244
|
+
FlexRay_VNETZ_ZCHIP: ClassVar[ChipID] = ...
|
|
245
|
+
Invalid: ClassVar[ChipID] = ...
|
|
246
|
+
NewDevice57_ZCHIP: ClassVar[ChipID] = ...
|
|
247
|
+
NewDevice59_MCHIP: ClassVar[ChipID] = ...
|
|
248
|
+
RAD4G_MCHIP: ClassVar[ChipID] = ...
|
|
249
|
+
RADA2B_REVB_ZCHIP: ClassVar[ChipID] = ...
|
|
250
|
+
RADA2B_ZCHIP: ClassVar[ChipID] = ...
|
|
251
|
+
RADBMS_MCHIP: ClassVar[ChipID] = ...
|
|
252
|
+
RADCOMET3_ZCHIP: ClassVar[ChipID] = ...
|
|
253
|
+
RADComet_ZYNQ: ClassVar[ChipID] = ...
|
|
254
|
+
RADEpsilonExpress_MCHIP: ClassVar[ChipID] = ...
|
|
255
|
+
RADEpsilonT_MCHIP: ClassVar[ChipID] = ...
|
|
256
|
+
RADEpsilon_MCHIP: ClassVar[ChipID] = ...
|
|
257
|
+
RADGALAXY2_SYSMON_CHIP: ClassVar[ChipID] = ...
|
|
258
|
+
RADGalaxy_FFG_Zynq: ClassVar[ChipID] = ...
|
|
259
|
+
RADGalaxy_ZYNQ: ClassVar[ChipID] = ...
|
|
260
|
+
RADGemini_MCHIP: ClassVar[ChipID] = ...
|
|
261
|
+
RADGigastar2_ZYNQ: ClassVar[ChipID] = ...
|
|
262
|
+
RADGigastar_FFG_ZYNQ: ClassVar[ChipID] = ...
|
|
263
|
+
RADGigastar_USBZ_Z7007S_ZYNQ: ClassVar[ChipID] = ...
|
|
264
|
+
RADGigastar_USBZ_Z7010_ZYNQ: ClassVar[ChipID] = ...
|
|
265
|
+
RADGigastar_USBZ_ZYNQ: ClassVar[ChipID] = ...
|
|
266
|
+
RADGigastar_ZYNQ: ClassVar[ChipID] = ...
|
|
267
|
+
RADIOCANHUB_MCHIP: ClassVar[ChipID] = ...
|
|
268
|
+
RADJupiter_MCHIP: ClassVar[ChipID] = ...
|
|
269
|
+
RADMars_3_ZYNQ: ClassVar[ChipID] = ...
|
|
270
|
+
RADMars_ZYNQ: ClassVar[ChipID] = ...
|
|
271
|
+
RADMoon2_Z7010_ZYNQ: ClassVar[ChipID] = ...
|
|
272
|
+
RADMoon2_ZL_MCHIP: ClassVar[ChipID] = ...
|
|
273
|
+
RADMoon2_ZYNQ: ClassVar[ChipID] = ...
|
|
274
|
+
RADMoon3_MCHIP: ClassVar[ChipID] = ...
|
|
275
|
+
RADMoonDuo_MCHIP: ClassVar[ChipID] = ...
|
|
276
|
+
RADPluto_MCHIP: ClassVar[ChipID] = ...
|
|
277
|
+
RADProxima_MCHIP: ClassVar[ChipID] = ...
|
|
278
|
+
RADStar2_ZYNQ: ClassVar[ChipID] = ...
|
|
279
|
+
RADStar_MCHIP: ClassVar[ChipID] = ...
|
|
280
|
+
RADSupermoon_ZYNQ: ClassVar[ChipID] = ...
|
|
281
|
+
RAD_GALAXY_2_ZMPCHIP_ID: ClassVar[ChipID] = ...
|
|
282
|
+
SFPModule_MCHIP: ClassVar[ChipID] = ...
|
|
283
|
+
VEM_01_8DW_ZCHIP: ClassVar[ChipID] = ...
|
|
284
|
+
VEM_02_FR_FCHIP: ClassVar[ChipID] = ...
|
|
285
|
+
VEM_02_FR_ZCHIP: ClassVar[ChipID] = ...
|
|
286
|
+
ValueCAN3_MCHIP: ClassVar[ChipID] = ...
|
|
287
|
+
ValueCAN4Industrial_MCHIP: ClassVar[ChipID] = ...
|
|
288
|
+
ValueCAN4_1_MCHIP: ClassVar[ChipID] = ...
|
|
289
|
+
ValueCAN4_2EL_MCHIP: ClassVar[ChipID] = ...
|
|
290
|
+
ValueCAN4_2_MCHIP: ClassVar[ChipID] = ...
|
|
291
|
+
ValueCAN4_4_2EL_Core: ClassVar[ChipID] = ...
|
|
292
|
+
ValueCAN4_4_MCHIP: ClassVar[ChipID] = ...
|
|
293
|
+
ValueCAN4_4_SCHIP: ClassVar[ChipID] = ...
|
|
294
|
+
ValueCANrf_MCHIP: ClassVar[ChipID] = ...
|
|
295
|
+
VividCANPRO_EXT_FLASH: ClassVar[ChipID] = ...
|
|
296
|
+
VividCANPRO_MCHIP: ClassVar[ChipID] = ...
|
|
297
|
+
VividCAN_EXT_FLASH: ClassVar[ChipID] = ...
|
|
298
|
+
VividCAN_MCHIP: ClassVar[ChipID] = ...
|
|
299
|
+
VividCAN_NRF52: ClassVar[ChipID] = ...
|
|
300
|
+
__entries: ClassVar[dict] = ...
|
|
301
|
+
cmProbe_ZYNQ: ClassVar[ChipID] = ...
|
|
302
|
+
cmProbe_ZYNQ_Unused: ClassVar[ChipID] = ...
|
|
303
|
+
neoECU12_MCHIP: ClassVar[ChipID] = ...
|
|
304
|
+
neoECUAVBTSN_MCHIP: ClassVar[ChipID] = ...
|
|
305
|
+
neoOBD2Dev_MCHIP: ClassVar[ChipID] = ...
|
|
306
|
+
neoOBD2Dev_SCHIP: ClassVar[ChipID] = ...
|
|
307
|
+
neoOBD2PRO_Core: ClassVar[ChipID] = ...
|
|
308
|
+
neoOBD2PRO_MCHIP: ClassVar[ChipID] = ...
|
|
309
|
+
neoOBD2PRO_SCHIP: ClassVar[ChipID] = ...
|
|
310
|
+
neoOBD2SIMDoIP_MCHIP: ClassVar[ChipID] = ...
|
|
311
|
+
neoOBD2SIM_MCHIP: ClassVar[ChipID] = ...
|
|
312
|
+
neoOBD2_LCBADGE_MCHIP: ClassVar[ChipID] = ...
|
|
313
|
+
neoOBD2_LCBADGE_SCHIP: ClassVar[ChipID] = ...
|
|
314
|
+
neoVIANALOG_MPIC: ClassVar[ChipID] = ...
|
|
315
|
+
neoVIAnalogOut_MCHIP: ClassVar[ChipID] = ...
|
|
316
|
+
neoVIECU_MPIC: ClassVar[ChipID] = ...
|
|
317
|
+
neoVIFIRE2_BLECHIP: ClassVar[ChipID] = ...
|
|
318
|
+
neoVIFIRE2_CCHIP: ClassVar[ChipID] = ...
|
|
319
|
+
neoVIFIRE2_CORE_SG4: ClassVar[ChipID] = ...
|
|
320
|
+
neoVIFIRE2_Core: ClassVar[ChipID] = ...
|
|
321
|
+
neoVIFIRE2_MCHIP: ClassVar[ChipID] = ...
|
|
322
|
+
neoVIFIRE2_SECURITYCHIP: ClassVar[ChipID] = ...
|
|
323
|
+
neoVIFIRE2_Slave_VNETZ_A_MCHIP: ClassVar[ChipID] = ...
|
|
324
|
+
neoVIFIRE2_Slave_VNETZ_A_ZYNQ: ClassVar[ChipID] = ...
|
|
325
|
+
neoVIFIRE2_Slave_VNET_A_CCHIP: ClassVar[ChipID] = ...
|
|
326
|
+
neoVIFIRE2_Slave_VNET_A_MCHIP: ClassVar[ChipID] = ...
|
|
327
|
+
neoVIFIRE2_VNETZ_MCHIP: ClassVar[ChipID] = ...
|
|
328
|
+
neoVIFIRE2_VNETZ_ZYNQ: ClassVar[ChipID] = ...
|
|
329
|
+
neoVIFIRE2_VNET_CCHIP: ClassVar[ChipID] = ...
|
|
330
|
+
neoVIFIRE2_VNET_Core: ClassVar[ChipID] = ...
|
|
331
|
+
neoVIFIRE2_VNET_MCHIP: ClassVar[ChipID] = ...
|
|
332
|
+
neoVIFIRE2_ZYNQ: ClassVar[ChipID] = ...
|
|
333
|
+
neoVIFIRE3_LINUX: ClassVar[ChipID] = ...
|
|
334
|
+
neoVIFIRE3_SCHIP: ClassVar[ChipID] = ...
|
|
335
|
+
neoVIFIRE3_ZCHIP: ClassVar[ChipID] = ...
|
|
336
|
+
neoVIFIRE_JCHIP: ClassVar[ChipID] = ...
|
|
337
|
+
neoVIFIRE_LCHIP: ClassVar[ChipID] = ...
|
|
338
|
+
neoVIFIRE_MCHIP: ClassVar[ChipID] = ...
|
|
339
|
+
neoVIFIRE_Slave_VNET_EP_LCHIP: ClassVar[ChipID] = ...
|
|
340
|
+
neoVIFIRE_Slave_VNET_EP_MCHIP: ClassVar[ChipID] = ...
|
|
341
|
+
neoVIFIRE_Slave_VNET_LCHIP: ClassVar[ChipID] = ...
|
|
342
|
+
neoVIFIRE_Slave_VNET_MCHIP: ClassVar[ChipID] = ...
|
|
343
|
+
neoVIFIRE_UCHIP: ClassVar[ChipID] = ...
|
|
344
|
+
neoVIFIRE_VNET_EP_LCHIP: ClassVar[ChipID] = ...
|
|
345
|
+
neoVIFIRE_VNET_EP_MCHIP: ClassVar[ChipID] = ...
|
|
346
|
+
neoVIFIRE_VNET_LCHIP: ClassVar[ChipID] = ...
|
|
347
|
+
neoVIFIRE_VNET_MCHIP: ClassVar[ChipID] = ...
|
|
348
|
+
neoVIIEVB_MPIC: ClassVar[ChipID] = ...
|
|
349
|
+
neoVIION_Core: ClassVar[ChipID] = ...
|
|
350
|
+
neoVIION_Core_Loader: ClassVar[ChipID] = ...
|
|
351
|
+
neoVIION_FPGA_BIT: ClassVar[ChipID] = ...
|
|
352
|
+
neoVIION_HID: ClassVar[ChipID] = ...
|
|
353
|
+
neoVIION_HID_Loader: ClassVar[ChipID] = ...
|
|
354
|
+
neoVIMOST150_MCHIP: ClassVar[ChipID] = ...
|
|
355
|
+
neoVIMOST25_MCHIP: ClassVar[ChipID] = ...
|
|
356
|
+
neoVIMOST50_MCHIP: ClassVar[ChipID] = ...
|
|
357
|
+
neoVIPENDANT_MPIC: ClassVar[ChipID] = ...
|
|
358
|
+
neoVIPLASMA_ANALOG_Core: ClassVar[ChipID] = ...
|
|
359
|
+
neoVIPLASMA_Core: ClassVar[ChipID] = ...
|
|
360
|
+
neoVIPLASMA_Core_1_12: ClassVar[ChipID] = ...
|
|
361
|
+
neoVIPLASMA_FlexRay_Core: ClassVar[ChipID] = ...
|
|
362
|
+
neoVIPLASMA_HID: ClassVar[ChipID] = ...
|
|
363
|
+
def __init__(self, value: int) -> None: ...
|
|
364
|
+
def __eq__(self, other: object) -> bool: ...
|
|
365
|
+
def __hash__(self) -> int: ...
|
|
366
|
+
def __index__(self) -> int: ...
|
|
367
|
+
def __int__(self) -> int: ...
|
|
368
|
+
def __ne__(self, other: object) -> bool: ...
|
|
369
|
+
@property
|
|
370
|
+
def name(self) -> str: ...
|
|
371
|
+
@property
|
|
372
|
+
def value(self) -> int: ...
|
|
373
|
+
|
|
374
|
+
class Clause22Message:
|
|
375
|
+
page: int
|
|
376
|
+
phyAddr: int
|
|
377
|
+
regAddr: int
|
|
378
|
+
regVal: int
|
|
379
|
+
def __init__(self) -> None: ...
|
|
380
|
+
|
|
381
|
+
class Clause45Message:
|
|
382
|
+
device: int
|
|
383
|
+
port: int
|
|
384
|
+
regAddr: int
|
|
385
|
+
regVal: int
|
|
386
|
+
def __init__(self) -> None: ...
|
|
387
|
+
|
|
388
|
+
class Device:
|
|
389
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
390
|
+
def add_message_callback(self, arg0: MessageCallback) -> int: ...
|
|
391
|
+
def clear_script(self, arg0: Disk.MemoryType) -> bool: ...
|
|
392
|
+
def close(self) -> bool: ...
|
|
393
|
+
def describe(self) -> str: ...
|
|
394
|
+
def disable_message_polling(self) -> bool: ...
|
|
395
|
+
def enable_message_polling(self, filter: MessageFilter | None = ...) -> bool: ...
|
|
396
|
+
def get_chip_versions(self, refreshComponents: bool = ...) -> list[VersionReport]: ...
|
|
397
|
+
def get_current_message_count(self) -> int: ...
|
|
398
|
+
def get_digital_io(self, type: IO, number: int) -> bool | None: ...
|
|
399
|
+
def get_extension(self, *args, **kwargs): ...
|
|
400
|
+
def get_flexray_controllers(self) -> list[FlexRay.Controller]: ...
|
|
401
|
+
def get_gptp_status(self, timeout: datetime.timedelta = ...) -> GPTPStatus | None: ...
|
|
402
|
+
def get_messages(self) -> tuple[list[Message], bool]: ...
|
|
403
|
+
def get_polling_message_limit(self) -> int: ...
|
|
404
|
+
def get_product_name(self) -> str: ...
|
|
405
|
+
def get_rtc(self) -> datetime.datetime | None: ...
|
|
406
|
+
def get_script_status(self) -> ScriptStatusMessage: ...
|
|
407
|
+
def get_serial(self) -> str: ...
|
|
408
|
+
def get_serial_number(self) -> int: ...
|
|
409
|
+
def get_supported_rx_networks(self) -> list[Network]: ...
|
|
410
|
+
def get_supported_tx_networks(self) -> list[Network]: ...
|
|
411
|
+
def get_tc10_status(self, arg0: Network.NetID) -> TC10StatusMessage | None: ...
|
|
412
|
+
def get_type(self) -> DeviceType: ...
|
|
413
|
+
def go_offline(self) -> bool: ...
|
|
414
|
+
def go_online(self) -> bool: ...
|
|
415
|
+
def is_message_polling_enabled(self) -> bool: ...
|
|
416
|
+
def is_online(self) -> bool: ...
|
|
417
|
+
def is_online_supported(self) -> bool: ...
|
|
418
|
+
def is_open(self) -> bool: ...
|
|
419
|
+
def open(self) -> bool: ...
|
|
420
|
+
def prepare_script_load(self) -> int: ...
|
|
421
|
+
def remove_message_callback(self, arg0: int) -> bool: ...
|
|
422
|
+
def request_tc10_sleep(self, arg0: Network.NetID) -> bool: ...
|
|
423
|
+
def request_tc10_wake(self, arg0: Network.NetID) -> bool: ...
|
|
424
|
+
def send_eth_phy_msg(self, message: EthPhyMessage, timeout: datetime.timedelta = ...) -> EthPhyMessage | None: ...
|
|
425
|
+
def set_digital_io(self, type: IO, number: int, value: bool) -> bool: ...
|
|
426
|
+
def set_polling_message_limit(self, arg0: int) -> None: ...
|
|
427
|
+
def set_rtc(self, arg0: datetime.datetime) -> bool: ...
|
|
428
|
+
def start_script(self, arg0: Disk.MemoryType) -> bool: ...
|
|
429
|
+
def stop_script(self) -> bool: ...
|
|
430
|
+
def supports_tc10(self) -> bool: ...
|
|
431
|
+
def transmit(self, arg0: Frame) -> bool: ...
|
|
432
|
+
def upload_coremini(self, arg0: str, arg1: Disk.MemoryType) -> bool: ...
|
|
433
|
+
def write_macsec_config(self, arg0: MACsecMessage, arg1: int) -> bool: ...
|
|
434
|
+
@property
|
|
435
|
+
def settings(self): ...
|
|
436
|
+
|
|
437
|
+
class DeviceExtension:
|
|
438
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
439
|
+
def get_name(self) -> str: ...
|
|
440
|
+
|
|
441
|
+
class DeviceType:
|
|
442
|
+
class Enum:
|
|
443
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
444
|
+
BLUE: ClassVar[DeviceType.Enum] = ...
|
|
445
|
+
CMProbe: ClassVar[DeviceType.Enum] = ...
|
|
446
|
+
CT_OBD: ClassVar[DeviceType.Enum] = ...
|
|
447
|
+
Connect: ClassVar[DeviceType.Enum] = ...
|
|
448
|
+
DONT_REUSE0: ClassVar[DeviceType.Enum] = ...
|
|
449
|
+
DONT_REUSE1: ClassVar[DeviceType.Enum] = ...
|
|
450
|
+
DONT_REUSE2: ClassVar[DeviceType.Enum] = ...
|
|
451
|
+
DONT_REUSE3: ClassVar[DeviceType.Enum] = ...
|
|
452
|
+
DW_VCAN: ClassVar[DeviceType.Enum] = ...
|
|
453
|
+
ECU: ClassVar[DeviceType.Enum] = ...
|
|
454
|
+
ECUChip_UART: ClassVar[DeviceType.Enum] = ...
|
|
455
|
+
ECU_AVB: ClassVar[DeviceType.Enum] = ...
|
|
456
|
+
EEVB: ClassVar[DeviceType.Enum] = ...
|
|
457
|
+
EtherBADGE: ClassVar[DeviceType.Enum] = ...
|
|
458
|
+
FIRE: ClassVar[DeviceType.Enum] = ...
|
|
459
|
+
FIRE2: ClassVar[DeviceType.Enum] = ...
|
|
460
|
+
FIRE3: ClassVar[DeviceType.Enum] = ...
|
|
461
|
+
FIRE3_FlexRay: ClassVar[DeviceType.Enum] = ...
|
|
462
|
+
FIRE3_T1S_LIN: ClassVar[DeviceType.Enum] = ...
|
|
463
|
+
FIRE3_T1S_SENT: ClassVar[DeviceType.Enum] = ...
|
|
464
|
+
Flex: ClassVar[DeviceType.Enum] = ...
|
|
465
|
+
IEVB: ClassVar[DeviceType.Enum] = ...
|
|
466
|
+
ION: ClassVar[DeviceType.Enum] = ...
|
|
467
|
+
NEOAnalog: ClassVar[DeviceType.Enum] = ...
|
|
468
|
+
NEOECU12: ClassVar[DeviceType.Enum] = ...
|
|
469
|
+
OBD2_LCBADGE: ClassVar[DeviceType.Enum] = ...
|
|
470
|
+
OBD2_PRO: ClassVar[DeviceType.Enum] = ...
|
|
471
|
+
OBD2_SIM: ClassVar[DeviceType.Enum] = ...
|
|
472
|
+
PLASMA: ClassVar[DeviceType.Enum] = ...
|
|
473
|
+
Pendant: ClassVar[DeviceType.Enum] = ...
|
|
474
|
+
RADComet: ClassVar[DeviceType.Enum] = ...
|
|
475
|
+
RADComet3: ClassVar[DeviceType.Enum] = ...
|
|
476
|
+
RADEpsilon: ClassVar[DeviceType.Enum] = ...
|
|
477
|
+
RADEpsilonXL: ClassVar[DeviceType.Enum] = ...
|
|
478
|
+
RADGalaxy: ClassVar[DeviceType.Enum] = ...
|
|
479
|
+
RADGalaxy2: ClassVar[DeviceType.Enum] = ...
|
|
480
|
+
RADGemini: ClassVar[DeviceType.Enum] = ...
|
|
481
|
+
RADGigastar: ClassVar[DeviceType.Enum] = ...
|
|
482
|
+
RADGigastar2: ClassVar[DeviceType.Enum] = ...
|
|
483
|
+
RADIO_CANHUB: ClassVar[DeviceType.Enum] = ...
|
|
484
|
+
RADJupiter: ClassVar[DeviceType.Enum] = ...
|
|
485
|
+
RADMars: ClassVar[DeviceType.Enum] = ...
|
|
486
|
+
RADMoon2: ClassVar[DeviceType.Enum] = ...
|
|
487
|
+
RADMoon3: ClassVar[DeviceType.Enum] = ...
|
|
488
|
+
RADMoonDuo: ClassVar[DeviceType.Enum] = ...
|
|
489
|
+
RADMoonT1S: ClassVar[DeviceType.Enum] = ...
|
|
490
|
+
RADPluto: ClassVar[DeviceType.Enum] = ...
|
|
491
|
+
RADStar: ClassVar[DeviceType.Enum] = ...
|
|
492
|
+
RADStar2: ClassVar[DeviceType.Enum] = ...
|
|
493
|
+
RADSupermoon: ClassVar[DeviceType.Enum] = ...
|
|
494
|
+
RAD_A2B: ClassVar[DeviceType.Enum] = ...
|
|
495
|
+
RED: ClassVar[DeviceType.Enum] = ...
|
|
496
|
+
RED2: ClassVar[DeviceType.Enum] = ...
|
|
497
|
+
Unknown: ClassVar[DeviceType.Enum] = ...
|
|
498
|
+
VCAN3: ClassVar[DeviceType.Enum] = ...
|
|
499
|
+
VCAN4_1: ClassVar[DeviceType.Enum] = ...
|
|
500
|
+
VCAN4_2: ClassVar[DeviceType.Enum] = ...
|
|
501
|
+
VCAN4_2EL: ClassVar[DeviceType.Enum] = ...
|
|
502
|
+
VCAN4_4: ClassVar[DeviceType.Enum] = ...
|
|
503
|
+
VCAN4_IND: ClassVar[DeviceType.Enum] = ...
|
|
504
|
+
VCANrf: ClassVar[DeviceType.Enum] = ...
|
|
505
|
+
VividCAN: ClassVar[DeviceType.Enum] = ...
|
|
506
|
+
__entries: ClassVar[dict] = ...
|
|
507
|
+
def __init__(self, value: int) -> None: ...
|
|
508
|
+
def __eq__(self, other: object) -> bool: ...
|
|
509
|
+
def __hash__(self) -> int: ...
|
|
510
|
+
def __index__(self) -> int: ...
|
|
511
|
+
def __int__(self) -> int: ...
|
|
512
|
+
def __ne__(self, other: object) -> bool: ...
|
|
513
|
+
@property
|
|
514
|
+
def name(self) -> str: ...
|
|
515
|
+
@property
|
|
516
|
+
def value(self) -> int: ...
|
|
517
|
+
def __init__(self, arg0: DeviceType.Enum) -> None: ...
|
|
518
|
+
def get_device_type(self) -> DeviceType.Enum: ...
|
|
519
|
+
def get_generic_product_name(self) -> str: ...
|
|
520
|
+
|
|
521
|
+
class Disk:
|
|
522
|
+
class Access:
|
|
523
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
524
|
+
EntireCard: ClassVar[Disk.Access] = ...
|
|
525
|
+
VSA: ClassVar[Disk.Access] = ...
|
|
526
|
+
__entries: ClassVar[dict] = ...
|
|
527
|
+
def __init__(self, value: int) -> None: ...
|
|
528
|
+
def __eq__(self, other: object) -> bool: ...
|
|
529
|
+
def __hash__(self) -> int: ...
|
|
530
|
+
def __index__(self) -> int: ...
|
|
531
|
+
def __int__(self) -> int: ...
|
|
532
|
+
def __ne__(self, other: object) -> bool: ...
|
|
533
|
+
@property
|
|
534
|
+
def name(self) -> str: ...
|
|
535
|
+
@property
|
|
536
|
+
def value(self) -> int: ...
|
|
537
|
+
|
|
538
|
+
class MemoryType:
|
|
539
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
540
|
+
Flash: ClassVar[Disk.MemoryType] = ...
|
|
541
|
+
SD: ClassVar[Disk.MemoryType] = ...
|
|
542
|
+
__entries: ClassVar[dict] = ...
|
|
543
|
+
def __init__(self, value: int) -> None: ...
|
|
544
|
+
def __eq__(self, other: object) -> bool: ...
|
|
545
|
+
def __hash__(self) -> int: ...
|
|
546
|
+
def __index__(self) -> int: ...
|
|
547
|
+
def __int__(self) -> int: ...
|
|
548
|
+
def __ne__(self, other: object) -> bool: ...
|
|
549
|
+
@property
|
|
550
|
+
def name(self) -> str: ...
|
|
551
|
+
@property
|
|
552
|
+
def value(self) -> int: ...
|
|
553
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
554
|
+
|
|
555
|
+
class EthPhyMessage(Message):
|
|
556
|
+
messages: list[PhyMessage]
|
|
557
|
+
def __init__(self) -> None: ...
|
|
558
|
+
|
|
559
|
+
class EthernetMessage(Frame):
|
|
560
|
+
fcs: int | None
|
|
561
|
+
frameTooShort: bool
|
|
562
|
+
noPadding: bool
|
|
563
|
+
preemptionEnabled: bool
|
|
564
|
+
preemptionFlags: int
|
|
565
|
+
def __init__(self) -> None: ...
|
|
566
|
+
def get_destination_mac(self) -> MACAddress: ...
|
|
567
|
+
def get_ether_type(self) -> int: ...
|
|
568
|
+
def get_source_mac(self) -> MACAddress: ...
|
|
569
|
+
|
|
570
|
+
class EthernetStatusMessage(Message):
|
|
571
|
+
class LinkMode:
|
|
572
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
573
|
+
LinkModeAuto: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
574
|
+
LinkModeInvalid: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
575
|
+
LinkModeMaster: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
576
|
+
LinkModeNone: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
577
|
+
LinkModeSlave: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
578
|
+
__entries: ClassVar[dict] = ...
|
|
579
|
+
def __init__(self, value: int) -> None: ...
|
|
580
|
+
def __eq__(self, other: object) -> bool: ...
|
|
581
|
+
def __hash__(self) -> int: ...
|
|
582
|
+
def __index__(self) -> int: ...
|
|
583
|
+
def __int__(self) -> int: ...
|
|
584
|
+
def __ne__(self, other: object) -> bool: ...
|
|
585
|
+
@property
|
|
586
|
+
def name(self) -> str: ...
|
|
587
|
+
@property
|
|
588
|
+
def value(self) -> int: ...
|
|
589
|
+
|
|
590
|
+
class LinkSpeed:
|
|
591
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
592
|
+
LinkSpeed10: ClassVar[EthernetStatusMessage.LinkSpeed] = ...
|
|
593
|
+
LinkSpeed100: ClassVar[EthernetStatusMessage.LinkSpeed] = ...
|
|
594
|
+
LinkSpeed1000: ClassVar[EthernetStatusMessage.LinkSpeed] = ...
|
|
595
|
+
LinkSpeed10000: ClassVar[EthernetStatusMessage.LinkSpeed] = ...
|
|
596
|
+
LinkSpeed2500: ClassVar[EthernetStatusMessage.LinkSpeed] = ...
|
|
597
|
+
LinkSpeed5000: ClassVar[EthernetStatusMessage.LinkSpeed] = ...
|
|
598
|
+
LinkSpeedAuto: ClassVar[EthernetStatusMessage.LinkSpeed] = ...
|
|
599
|
+
__entries: ClassVar[dict] = ...
|
|
600
|
+
def __init__(self, value: int) -> None: ...
|
|
601
|
+
def __eq__(self, other: object) -> bool: ...
|
|
602
|
+
def __hash__(self) -> int: ...
|
|
603
|
+
def __index__(self) -> int: ...
|
|
604
|
+
def __int__(self) -> int: ...
|
|
605
|
+
def __ne__(self, other: object) -> bool: ...
|
|
606
|
+
@property
|
|
607
|
+
def name(self) -> str: ...
|
|
608
|
+
@property
|
|
609
|
+
def value(self) -> int: ...
|
|
610
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
611
|
+
@property
|
|
612
|
+
def duplex(self) -> bool: ...
|
|
613
|
+
@property
|
|
614
|
+
def mode(self) -> EthernetStatusMessage.LinkMode: ...
|
|
615
|
+
@property
|
|
616
|
+
def network(self) -> Network: ...
|
|
617
|
+
@property
|
|
618
|
+
def speed(self) -> EthernetStatusMessage.LinkSpeed: ...
|
|
619
|
+
@property
|
|
620
|
+
def state(self) -> bool: ...
|
|
621
|
+
|
|
622
|
+
class EventCallback:
|
|
623
|
+
@overload
|
|
624
|
+
def __init__(self, arg0: Callable[[APIEvent], None], arg1: EventFilter) -> None: ...
|
|
625
|
+
@overload
|
|
626
|
+
def __init__(self, arg0: Callable[[APIEvent], None]) -> None: ...
|
|
627
|
+
|
|
628
|
+
class EventFilter:
|
|
629
|
+
serial: str
|
|
630
|
+
severity: APIEvent.Severity
|
|
631
|
+
type: APIEvent.Type
|
|
632
|
+
@overload
|
|
633
|
+
def __init__(self) -> None: ...
|
|
634
|
+
@overload
|
|
635
|
+
def __init__(self, arg0: APIEvent.Type) -> None: ...
|
|
636
|
+
@overload
|
|
637
|
+
def __init__(self, arg0: APIEvent.Severity) -> None: ...
|
|
638
|
+
|
|
639
|
+
class EventManager:
|
|
640
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
641
|
+
def add_event_callback(self, arg0: EventCallback) -> int: ...
|
|
642
|
+
@staticmethod
|
|
643
|
+
def get_instance() -> EventManager: ...
|
|
644
|
+
def get_last_error(self) -> APIEvent: ...
|
|
645
|
+
def remove_event_callback(self, arg0: int) -> bool: ...
|
|
646
|
+
|
|
647
|
+
class FlexRay:
|
|
648
|
+
class CRCStatus:
|
|
649
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
650
|
+
Error: ClassVar[FlexRay.CRCStatus] = ...
|
|
651
|
+
NoCRC: ClassVar[FlexRay.CRCStatus] = ...
|
|
652
|
+
OK: ClassVar[FlexRay.CRCStatus] = ...
|
|
653
|
+
__entries: ClassVar[dict] = ...
|
|
654
|
+
def __init__(self, value: int) -> None: ...
|
|
655
|
+
def __eq__(self, other: object) -> bool: ...
|
|
656
|
+
def __hash__(self) -> int: ...
|
|
657
|
+
def __index__(self) -> int: ...
|
|
658
|
+
def __int__(self) -> int: ...
|
|
659
|
+
def __ne__(self, other: object) -> bool: ...
|
|
660
|
+
@property
|
|
661
|
+
def name(self) -> str: ...
|
|
662
|
+
@property
|
|
663
|
+
def value(self) -> int: ...
|
|
664
|
+
|
|
665
|
+
class Channel:
|
|
666
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
667
|
+
A: ClassVar[FlexRay.Channel] = ...
|
|
668
|
+
AB: ClassVar[FlexRay.Channel] = ...
|
|
669
|
+
B: ClassVar[FlexRay.Channel] = ...
|
|
670
|
+
__entries: ClassVar[dict] = ...
|
|
671
|
+
def __init__(self, value: int) -> None: ...
|
|
672
|
+
def __eq__(self, other: object) -> bool: ...
|
|
673
|
+
def __hash__(self) -> int: ...
|
|
674
|
+
def __index__(self) -> int: ...
|
|
675
|
+
def __int__(self) -> int: ...
|
|
676
|
+
def __ne__(self, other: object) -> bool: ...
|
|
677
|
+
@property
|
|
678
|
+
def name(self) -> str: ...
|
|
679
|
+
@property
|
|
680
|
+
def value(self) -> int: ...
|
|
681
|
+
|
|
682
|
+
class Cluster:
|
|
683
|
+
class Configuration:
|
|
684
|
+
action_point_offset: int
|
|
685
|
+
casr_x_low_max: int
|
|
686
|
+
cold_start_attempts: int
|
|
687
|
+
dynamic_slot_idle_phase_minislots: int
|
|
688
|
+
listen_noise_macroticks: int
|
|
689
|
+
macrotick_duration_micro_sec: int
|
|
690
|
+
macroticks_per_cycle: int
|
|
691
|
+
max_without_clock_correction_fatal: int
|
|
692
|
+
max_without_clock_correction_passive: int
|
|
693
|
+
minislot_action_point_offset_macroticks: int
|
|
694
|
+
minislot_duration_macroticks: int
|
|
695
|
+
network_idle_time_macroticks: int
|
|
696
|
+
network_management_vector_length_bytes: int
|
|
697
|
+
number_of_minislots: int
|
|
698
|
+
number_of_static_slots: int
|
|
699
|
+
offset_correction_start_macroticks: int
|
|
700
|
+
payload_length_of_static_slot_in_words: int
|
|
701
|
+
speed: FlexRay.Cluster.SpeedType
|
|
702
|
+
static_slot_macroticks: int
|
|
703
|
+
strobe_point_position: FlexRay.Cluster.SPPType
|
|
704
|
+
symbol_window_action_point_offset_macroticks: int
|
|
705
|
+
symbol_window_macroticks: int
|
|
706
|
+
sync_frame_id_count_max: int
|
|
707
|
+
transmission_start_sequence_duration_bits: int
|
|
708
|
+
wakeup_rx_idle_bits: int
|
|
709
|
+
wakeup_rx_low_bits: int
|
|
710
|
+
wakeup_rx_window_bits: int
|
|
711
|
+
wakeup_tx_active_bits: int
|
|
712
|
+
wakeup_tx_idle_bits: int
|
|
713
|
+
def __init__(self) -> None: ...
|
|
714
|
+
|
|
715
|
+
class SPPType:
|
|
716
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
717
|
+
FLEXRAY_SPP_4: ClassVar[FlexRay.Cluster.SPPType] = ...
|
|
718
|
+
FLEXRAY_SPP_5: ClassVar[FlexRay.Cluster.SPPType] = ...
|
|
719
|
+
FLEXRAY_SPP_5_ALT: ClassVar[FlexRay.Cluster.SPPType] = ...
|
|
720
|
+
FLEXRAY_SPP_6: ClassVar[FlexRay.Cluster.SPPType] = ...
|
|
721
|
+
__entries: ClassVar[dict] = ...
|
|
722
|
+
def __init__(self, value: int) -> None: ...
|
|
723
|
+
def __eq__(self, other: object) -> bool: ...
|
|
724
|
+
def __hash__(self) -> int: ...
|
|
725
|
+
def __index__(self) -> int: ...
|
|
726
|
+
def __int__(self) -> int: ...
|
|
727
|
+
def __ne__(self, other: object) -> bool: ...
|
|
728
|
+
@property
|
|
729
|
+
def name(self) -> str: ...
|
|
730
|
+
@property
|
|
731
|
+
def value(self) -> int: ...
|
|
732
|
+
|
|
733
|
+
class SpeedType:
|
|
734
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
735
|
+
FLEXRAY_BAUDRATE_10M: ClassVar[FlexRay.Cluster.SpeedType] = ...
|
|
736
|
+
FLEXRAY_BAUDRATE_2M5: ClassVar[FlexRay.Cluster.SpeedType] = ...
|
|
737
|
+
FLEXRAY_BAUDRATE_2M5_ALT: ClassVar[FlexRay.Cluster.SpeedType] = ...
|
|
738
|
+
FLEXRAY_BAUDRATE_5M: ClassVar[FlexRay.Cluster.SpeedType] = ...
|
|
739
|
+
__entries: ClassVar[dict] = ...
|
|
740
|
+
def __init__(self, value: int) -> None: ...
|
|
741
|
+
def __eq__(self, other: object) -> bool: ...
|
|
742
|
+
def __hash__(self) -> int: ...
|
|
743
|
+
def __index__(self) -> int: ...
|
|
744
|
+
def __int__(self) -> int: ...
|
|
745
|
+
def __ne__(self, other: object) -> bool: ...
|
|
746
|
+
@property
|
|
747
|
+
def name(self) -> str: ...
|
|
748
|
+
@property
|
|
749
|
+
def value(self) -> int: ...
|
|
750
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
751
|
+
|
|
752
|
+
class Controller:
|
|
753
|
+
class Configuration:
|
|
754
|
+
accept_startup_range_microticks: int
|
|
755
|
+
allow_passive_to_active_cycle_pairs: int
|
|
756
|
+
channel_a: bool
|
|
757
|
+
channel_b: bool
|
|
758
|
+
cluster_drift_damping: int
|
|
759
|
+
decoding_correction_microticks: int
|
|
760
|
+
delay_compensation_a_microticks: int
|
|
761
|
+
delay_compensation_b_microticks: int
|
|
762
|
+
extern_offset_correction_control: int
|
|
763
|
+
extern_offset_correction_microticks: int
|
|
764
|
+
extern_rate_correction_control: int
|
|
765
|
+
extern_rate_correction_microticks: int
|
|
766
|
+
key_slot_id: int
|
|
767
|
+
key_slot_used_for_startup: bool
|
|
768
|
+
key_slot_used_for_sync: bool
|
|
769
|
+
latest_tx_minislot: int
|
|
770
|
+
listen_timeout: int
|
|
771
|
+
macro_initial_offset_a: int
|
|
772
|
+
macro_initial_offset_b: int
|
|
773
|
+
micro_initial_offset_a: int
|
|
774
|
+
micro_initial_offset_b: int
|
|
775
|
+
micro_per_cycle: int
|
|
776
|
+
mts_on_a: bool
|
|
777
|
+
mts_on_b: bool
|
|
778
|
+
offset_correction_out_microticks: int
|
|
779
|
+
rate_correction_out_microticks: int
|
|
780
|
+
second_key_slot_id: int
|
|
781
|
+
two_key_slot_mode: bool
|
|
782
|
+
wakeup_on_channel_b: bool
|
|
783
|
+
wakeup_pattern: int
|
|
784
|
+
def __init__(self) -> None: ...
|
|
785
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
786
|
+
def add_message_buffer(self, arg0: FlexRay.MessageBuffer) -> None: ...
|
|
787
|
+
def clear_message_buffers(self) -> None: ...
|
|
788
|
+
def configure(self, *args, **kwargs): ...
|
|
789
|
+
def freeze(self, *args, **kwargs): ...
|
|
790
|
+
def get_allow_coldstart(self) -> bool: ...
|
|
791
|
+
def get_configuration(self, *args, **kwargs): ...
|
|
792
|
+
def get_network(self) -> Network: ...
|
|
793
|
+
def get_start_when_going_online(self) -> bool: ...
|
|
794
|
+
def get_wakeup_before_start(self) -> bool: ...
|
|
795
|
+
def halt(self, *args, **kwargs): ...
|
|
796
|
+
def set_allow_coldstart(self, arg0: bool) -> None: ...
|
|
797
|
+
def set_configuration(self, arg0, arg1) -> None: ...
|
|
798
|
+
def set_start_when_going_online(self, arg0: bool) -> None: ...
|
|
799
|
+
def set_wakeup_before_start(self, arg0: bool) -> None: ...
|
|
800
|
+
def start(self, *args, **kwargs): ...
|
|
801
|
+
def transmit(self, arg0: FlexRayMessage) -> bool: ...
|
|
802
|
+
def trigger_mts(self, *args, **kwargs): ...
|
|
803
|
+
def wakeup(self, *args, **kwargs): ...
|
|
804
|
+
|
|
805
|
+
class MessageBuffer:
|
|
806
|
+
base_cycle: int
|
|
807
|
+
channel_a: bool
|
|
808
|
+
channel_b: bool
|
|
809
|
+
continuous_mode: bool
|
|
810
|
+
cycle_repetition: int
|
|
811
|
+
frame_id: int
|
|
812
|
+
frame_length_bytes: int
|
|
813
|
+
is_dynamic: bool
|
|
814
|
+
is_network_management_frame: bool
|
|
815
|
+
is_startup: bool
|
|
816
|
+
is_sync: bool
|
|
817
|
+
is_transmit: bool
|
|
818
|
+
def __init__(self) -> None: ...
|
|
819
|
+
|
|
820
|
+
class Symbol:
|
|
821
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
822
|
+
CAS: ClassVar[FlexRay.Symbol] = ...
|
|
823
|
+
Unknown: ClassVar[FlexRay.Symbol] = ...
|
|
824
|
+
Wakeup: ClassVar[FlexRay.Symbol] = ...
|
|
825
|
+
__entries: ClassVar[dict] = ...
|
|
826
|
+
def __init__(self, value: int) -> None: ...
|
|
827
|
+
def __eq__(self, other: object) -> bool: ...
|
|
828
|
+
def __hash__(self) -> int: ...
|
|
829
|
+
def __index__(self) -> int: ...
|
|
830
|
+
def __int__(self) -> int: ...
|
|
831
|
+
def __ne__(self, other: object) -> bool: ...
|
|
832
|
+
@property
|
|
833
|
+
def name(self) -> str: ...
|
|
834
|
+
@property
|
|
835
|
+
def value(self) -> int: ...
|
|
836
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
837
|
+
|
|
838
|
+
class FlexRayMessage(Frame):
|
|
839
|
+
channel: FlexRay.Channel
|
|
840
|
+
cycle: int
|
|
841
|
+
dynamic_frame: bool
|
|
842
|
+
frame_crc: int
|
|
843
|
+
frame_crc_status: FlexRay.CRCStatus
|
|
844
|
+
framelen: float
|
|
845
|
+
header_crc: int
|
|
846
|
+
header_crc_status: FlexRay.CRCStatus
|
|
847
|
+
null_frame: bool
|
|
848
|
+
payload_preamble: bool
|
|
849
|
+
slotid: int
|
|
850
|
+
startup_frame: bool
|
|
851
|
+
symbol: FlexRay.Symbol
|
|
852
|
+
sync_frame: bool
|
|
853
|
+
tsslen: float
|
|
854
|
+
def __init__(self) -> None: ...
|
|
855
|
+
|
|
856
|
+
class Frame(RawMessage):
|
|
857
|
+
description: int
|
|
858
|
+
error: bool
|
|
859
|
+
transmitted: bool
|
|
860
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
861
|
+
|
|
862
|
+
class GPTPStatus(Message):
|
|
863
|
+
class ClockQuality:
|
|
864
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
865
|
+
@property
|
|
866
|
+
def clockAccuracy(self) -> int: ...
|
|
867
|
+
@property
|
|
868
|
+
def clockClass(self) -> int: ...
|
|
869
|
+
@property
|
|
870
|
+
def offsetScaledLogVariance(self) -> int: ...
|
|
871
|
+
|
|
872
|
+
class CurrentDS:
|
|
873
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
874
|
+
@property
|
|
875
|
+
def gmChangeCount(self) -> int: ...
|
|
876
|
+
@property
|
|
877
|
+
def gmTimeBaseIndicator(self) -> int: ...
|
|
878
|
+
@property
|
|
879
|
+
def lastgmFreqChange(self) -> float: ...
|
|
880
|
+
@property
|
|
881
|
+
def lastgmPhaseChange(self) -> GPTPStatus.ScaledNanoSeconds: ...
|
|
882
|
+
@property
|
|
883
|
+
def offsetFromMaster(self) -> int: ...
|
|
884
|
+
@property
|
|
885
|
+
def stepsRemoved(self) -> int: ...
|
|
886
|
+
@property
|
|
887
|
+
def timeOfLastgmChangeEvent(self) -> int: ...
|
|
888
|
+
@property
|
|
889
|
+
def timeOfLastgmFreqChangeEvent(self) -> int: ...
|
|
890
|
+
@property
|
|
891
|
+
def timeOfLastgmPhaseChangeEvent(self) -> int: ...
|
|
892
|
+
|
|
893
|
+
class ParentDS:
|
|
894
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
895
|
+
@property
|
|
896
|
+
def cumulativeRateRatio(self) -> int: ...
|
|
897
|
+
@property
|
|
898
|
+
def gmClockQualityClockAccuracy(self) -> int: ...
|
|
899
|
+
@property
|
|
900
|
+
def gmClockQualityClockClass(self) -> int: ...
|
|
901
|
+
@property
|
|
902
|
+
def gmClockQualityOffsetScaledLogVariance(self) -> int: ...
|
|
903
|
+
@property
|
|
904
|
+
def gmPriority1(self) -> int: ...
|
|
905
|
+
@property
|
|
906
|
+
def gmPriority2(self) -> int: ...
|
|
907
|
+
@property
|
|
908
|
+
def grandmasterIdentity(self) -> int: ...
|
|
909
|
+
@property
|
|
910
|
+
def parentPortIdentity(self) -> GPTPStatus.PortID: ...
|
|
911
|
+
|
|
912
|
+
class PortID:
|
|
913
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
914
|
+
@property
|
|
915
|
+
def clockIdentity(self) -> int: ...
|
|
916
|
+
@property
|
|
917
|
+
def portNumber(self) -> int: ...
|
|
918
|
+
|
|
919
|
+
class PriorityVector:
|
|
920
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
921
|
+
@property
|
|
922
|
+
def portID(self) -> GPTPStatus.PortID: ...
|
|
923
|
+
@property
|
|
924
|
+
def portNumber(self) -> int: ...
|
|
925
|
+
@property
|
|
926
|
+
def stepsRemoved(self) -> int: ...
|
|
927
|
+
@property
|
|
928
|
+
def sysID(self) -> GPTPStatus.SystemID: ...
|
|
929
|
+
|
|
930
|
+
class ScaledNanoSeconds:
|
|
931
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
932
|
+
@property
|
|
933
|
+
def fractionalNanoseconds(self) -> int: ...
|
|
934
|
+
@property
|
|
935
|
+
def nanosecondsLSB(self) -> int: ...
|
|
936
|
+
@property
|
|
937
|
+
def nanosecondsMSB(self) -> int: ...
|
|
938
|
+
|
|
939
|
+
class SystemID:
|
|
940
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
941
|
+
@property
|
|
942
|
+
def clockID(self) -> int: ...
|
|
943
|
+
@property
|
|
944
|
+
def clockQuality(self) -> GPTPStatus.ClockQuality: ...
|
|
945
|
+
@property
|
|
946
|
+
def priority1(self) -> int: ...
|
|
947
|
+
@property
|
|
948
|
+
def priority2(self) -> int: ...
|
|
949
|
+
|
|
950
|
+
class Timestamp:
|
|
951
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
952
|
+
def to_seconds(self) -> float: ...
|
|
953
|
+
@property
|
|
954
|
+
def nanoseconds(self) -> int: ...
|
|
955
|
+
@property
|
|
956
|
+
def seconds(self) -> int: ...
|
|
957
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
958
|
+
@property
|
|
959
|
+
def asCapable(self) -> int: ...
|
|
960
|
+
@property
|
|
961
|
+
def currentDS(self) -> GPTPStatus.CurrentDS: ...
|
|
962
|
+
@property
|
|
963
|
+
def currentTime(self) -> GPTPStatus.Timestamp: ...
|
|
964
|
+
@property
|
|
965
|
+
def gmPriority(self) -> GPTPStatus.PriorityVector: ...
|
|
966
|
+
@property
|
|
967
|
+
def isSync(self) -> int: ...
|
|
968
|
+
@property
|
|
969
|
+
def isSyntonized(self) -> int: ...
|
|
970
|
+
@property
|
|
971
|
+
def lastRXSyncTS(self) -> GPTPStatus.Timestamp: ...
|
|
972
|
+
@property
|
|
973
|
+
def linkDelayNS(self) -> int: ...
|
|
974
|
+
@property
|
|
975
|
+
def linkStatus(self) -> int: ...
|
|
976
|
+
@property
|
|
977
|
+
def msOffsetNs(self) -> int: ...
|
|
978
|
+
@property
|
|
979
|
+
def parentDS(self) -> GPTPStatus.ParentDS: ...
|
|
980
|
+
@property
|
|
981
|
+
def selectedRole(self) -> int: ...
|
|
982
|
+
|
|
983
|
+
class IDeviceSettings:
|
|
984
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
985
|
+
def apply(self, temporary: bool = ...) -> bool: ...
|
|
986
|
+
def apply_defaults(self, temporary: bool = ...) -> bool: ...
|
|
987
|
+
def get_phy_enable(self, arg0: int) -> bool | None: ...
|
|
988
|
+
def get_phy_mode(self, arg0: int) -> Settings.EthernetLinkMode | None: ...
|
|
989
|
+
def get_phy_speed(self, arg0: int) -> Settings.EthernetLinkSpeed | None: ...
|
|
990
|
+
def refresh(self) -> bool: ...
|
|
991
|
+
def set_phy_enable(self, arg0: int, arg1: bool) -> bool: ...
|
|
992
|
+
def set_phy_mode(self, arg0: int, arg1: Settings.EthernetLinkMode) -> bool: ...
|
|
993
|
+
def set_phy_speed(self, arg0: int, arg1: Settings.EthernetLinkSpeed) -> bool: ...
|
|
994
|
+
|
|
995
|
+
class IO:
|
|
996
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
997
|
+
BackupPowerEnabled: ClassVar[IO] = ...
|
|
998
|
+
BackupPowerGood: ClassVar[IO] = ...
|
|
999
|
+
EMisc: ClassVar[IO] = ...
|
|
1000
|
+
EthernetActivation: ClassVar[IO] = ...
|
|
1001
|
+
Misc: ClassVar[IO] = ...
|
|
1002
|
+
USBHostPower: ClassVar[IO] = ...
|
|
1003
|
+
__entries: ClassVar[dict] = ...
|
|
1004
|
+
def __init__(self, value: int) -> None: ...
|
|
1005
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1006
|
+
def __hash__(self) -> int: ...
|
|
1007
|
+
def __index__(self) -> int: ...
|
|
1008
|
+
def __int__(self) -> int: ...
|
|
1009
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1010
|
+
@property
|
|
1011
|
+
def name(self) -> str: ...
|
|
1012
|
+
@property
|
|
1013
|
+
def value(self) -> int: ...
|
|
1014
|
+
|
|
1015
|
+
class LINErrorFlags:
|
|
1016
|
+
ErrChecksumMatch: bool
|
|
1017
|
+
ErrFrameMessageID: bool
|
|
1018
|
+
ErrFrameResponderData: bool
|
|
1019
|
+
ErrFrameSync: bool
|
|
1020
|
+
ErrRxBreakNotZero: bool
|
|
1021
|
+
ErrRxBreakOnly: bool
|
|
1022
|
+
ErrRxBreakSyncOnly: bool
|
|
1023
|
+
ErrRxBreakTooShort: bool
|
|
1024
|
+
ErrRxDataLenOver8: bool
|
|
1025
|
+
ErrRxSyncNot55: bool
|
|
1026
|
+
ErrTxRxMismatch: bool
|
|
1027
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
1028
|
+
|
|
1029
|
+
class LINMessage(Frame):
|
|
1030
|
+
class Type:
|
|
1031
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1032
|
+
LIN_BREAK_ONLY: ClassVar[LINMessage.Type] = ...
|
|
1033
|
+
LIN_COMMANDER_MSG: ClassVar[LINMessage.Type] = ...
|
|
1034
|
+
LIN_ERROR: ClassVar[LINMessage.Type] = ...
|
|
1035
|
+
LIN_HEADER_ONLY: ClassVar[LINMessage.Type] = ...
|
|
1036
|
+
LIN_SYNC_ONLY: ClassVar[LINMessage.Type] = ...
|
|
1037
|
+
LIN_UPDATE_RESPONDER: ClassVar[LINMessage.Type] = ...
|
|
1038
|
+
NOT_SET: ClassVar[LINMessage.Type] = ...
|
|
1039
|
+
__entries: ClassVar[dict] = ...
|
|
1040
|
+
def __init__(self, value: int) -> None: ...
|
|
1041
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1042
|
+
def __hash__(self) -> int: ...
|
|
1043
|
+
def __index__(self) -> int: ...
|
|
1044
|
+
def __int__(self) -> int: ...
|
|
1045
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1046
|
+
@property
|
|
1047
|
+
def name(self) -> str: ...
|
|
1048
|
+
@property
|
|
1049
|
+
def value(self) -> int: ...
|
|
1050
|
+
ID: int
|
|
1051
|
+
checksum: int
|
|
1052
|
+
errFlags: LINErrorFlags
|
|
1053
|
+
isEnhancedChecksum: bool
|
|
1054
|
+
linMsgType: LINMessage.Type
|
|
1055
|
+
protectedID: int
|
|
1056
|
+
statusFlags: LINStatusFlags
|
|
1057
|
+
@overload
|
|
1058
|
+
def __init__(self) -> None: ...
|
|
1059
|
+
@overload
|
|
1060
|
+
def __init__(self, arg0: int) -> None: ...
|
|
1061
|
+
@staticmethod
|
|
1062
|
+
def calc_checksum(arg0: LINMessage) -> None: ...
|
|
1063
|
+
def calc_protected_id(self, arg0: int) -> int: ...
|
|
1064
|
+
|
|
1065
|
+
class LINStatusFlags:
|
|
1066
|
+
BreakOnly: bool
|
|
1067
|
+
BusRecovered: bool
|
|
1068
|
+
HasUpdatedResponderOnce: bool
|
|
1069
|
+
TxAborted: bool
|
|
1070
|
+
TxChecksumEnhanced: bool
|
|
1071
|
+
TxCommander: bool
|
|
1072
|
+
TxResponder: bool
|
|
1073
|
+
UpdateResponderOnce: bool
|
|
1074
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
1075
|
+
|
|
1076
|
+
class MACAddress:
|
|
1077
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
1078
|
+
def to_string(self) -> str: ...
|
|
1079
|
+
|
|
1080
|
+
class MACSecFlags:
|
|
1081
|
+
en: bool
|
|
1082
|
+
def __init__(self) -> None: ...
|
|
1083
|
+
|
|
1084
|
+
class MACSecGlobalFlags:
|
|
1085
|
+
en: bool
|
|
1086
|
+
nvm: bool
|
|
1087
|
+
def __init__(self) -> None: ...
|
|
1088
|
+
|
|
1089
|
+
class MACsecCipherSuiteType:
|
|
1090
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1091
|
+
AES_128: ClassVar[MACsecCipherSuiteType] = ...
|
|
1092
|
+
AES_128_XPN: ClassVar[MACsecCipherSuiteType] = ...
|
|
1093
|
+
AES_256: ClassVar[MACsecCipherSuiteType] = ...
|
|
1094
|
+
AES_256_XPN: ClassVar[MACsecCipherSuiteType] = ...
|
|
1095
|
+
__entries: ClassVar[dict] = ...
|
|
1096
|
+
def __init__(self, value: int) -> None: ...
|
|
1097
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1098
|
+
def __hash__(self) -> int: ...
|
|
1099
|
+
def __index__(self) -> int: ...
|
|
1100
|
+
def __int__(self) -> int: ...
|
|
1101
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1102
|
+
@property
|
|
1103
|
+
def name(self) -> str: ...
|
|
1104
|
+
@property
|
|
1105
|
+
def value(self) -> int: ...
|
|
1106
|
+
|
|
1107
|
+
class MACsecConfig:
|
|
1108
|
+
flags: MACSecFlags
|
|
1109
|
+
map: Incomplete
|
|
1110
|
+
rule: Incomplete
|
|
1111
|
+
sa: Incomplete
|
|
1112
|
+
sc: Incomplete
|
|
1113
|
+
secy: Incomplete
|
|
1114
|
+
def __init__(self) -> None: ...
|
|
1115
|
+
|
|
1116
|
+
class MACsecMPLSOuter:
|
|
1117
|
+
exp: int
|
|
1118
|
+
mpls_label: int
|
|
1119
|
+
def __init__(self) -> None: ...
|
|
1120
|
+
|
|
1121
|
+
class MACsecMap:
|
|
1122
|
+
auxiliaryPlcy: int
|
|
1123
|
+
enable: bool
|
|
1124
|
+
index: int
|
|
1125
|
+
isControlPacket: bool
|
|
1126
|
+
ruleId: int
|
|
1127
|
+
scIndex: int
|
|
1128
|
+
secTagSci: int
|
|
1129
|
+
secYIndex: int
|
|
1130
|
+
def __init__(self) -> None: ...
|
|
1131
|
+
|
|
1132
|
+
class MACsecMessage:
|
|
1133
|
+
flags: MACSecGlobalFlags
|
|
1134
|
+
rx: MACsecConfig
|
|
1135
|
+
tx: MACsecConfig
|
|
1136
|
+
def __init__(self) -> None: ...
|
|
1137
|
+
|
|
1138
|
+
class MACsecPacketType:
|
|
1139
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1140
|
+
DualVLAN: ClassVar[MACsecPacketType] = ...
|
|
1141
|
+
DualVLAN_FollowByMPLS: ClassVar[MACsecPacketType] = ...
|
|
1142
|
+
MPLS: ClassVar[MACsecPacketType] = ...
|
|
1143
|
+
NoVLAN_OrMPLS: ClassVar[MACsecPacketType] = ...
|
|
1144
|
+
SingleVLAN: ClassVar[MACsecPacketType] = ...
|
|
1145
|
+
SingleVLAN_FollowByMPLS: ClassVar[MACsecPacketType] = ...
|
|
1146
|
+
Unsupported: ClassVar[MACsecPacketType] = ...
|
|
1147
|
+
__entries: ClassVar[dict] = ...
|
|
1148
|
+
def __init__(self, value: int) -> None: ...
|
|
1149
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1150
|
+
def __hash__(self) -> int: ...
|
|
1151
|
+
def __index__(self) -> int: ...
|
|
1152
|
+
def __int__(self) -> int: ...
|
|
1153
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1154
|
+
@property
|
|
1155
|
+
def name(self) -> str: ...
|
|
1156
|
+
@property
|
|
1157
|
+
def value(self) -> int: ...
|
|
1158
|
+
|
|
1159
|
+
class MACsecRule:
|
|
1160
|
+
enable: bool
|
|
1161
|
+
index: int
|
|
1162
|
+
isMpls: bool
|
|
1163
|
+
keyBonusData: int
|
|
1164
|
+
keyEthertype: int
|
|
1165
|
+
keyExpress: bool
|
|
1166
|
+
keyInnerVlanType: int
|
|
1167
|
+
keyMacDa: Incomplete
|
|
1168
|
+
keyMacSa: Incomplete
|
|
1169
|
+
keyMplsOuter1: MACsecMPLSOuter
|
|
1170
|
+
keyMplsOuter2: MACsecMPLSOuter
|
|
1171
|
+
keyNumTags: int
|
|
1172
|
+
keyOuterVlanType: int
|
|
1173
|
+
keyPacketType: MACsecPacketType
|
|
1174
|
+
keyTagMatchBitmap: int
|
|
1175
|
+
keyVlanTagOuter1: MACsecVLANTag
|
|
1176
|
+
keyVlanTagOuter2: MACsecVLANTag
|
|
1177
|
+
maskBonusData: int
|
|
1178
|
+
maskEthertype: int
|
|
1179
|
+
maskExpress: int
|
|
1180
|
+
maskInnerVlanType: int
|
|
1181
|
+
maskMacDa: Incomplete
|
|
1182
|
+
maskMacSa: Incomplete
|
|
1183
|
+
maskMplsOuter1: MACsecMPLSOuter
|
|
1184
|
+
maskMplsOuter2: MACsecMPLSOuter
|
|
1185
|
+
maskNumTags: int
|
|
1186
|
+
maskOuterVlanType: int
|
|
1187
|
+
maskPacketType: int
|
|
1188
|
+
maskTagMatchBitmap: int
|
|
1189
|
+
maskVlanTagOuter1: MACsecVLANTag
|
|
1190
|
+
maskVlanTagOuter2: MACsecVLANTag
|
|
1191
|
+
def __init__(self) -> None: ...
|
|
1192
|
+
|
|
1193
|
+
class MACsecSa:
|
|
1194
|
+
an: int
|
|
1195
|
+
enable: bool
|
|
1196
|
+
hashKey: Incomplete
|
|
1197
|
+
index: int
|
|
1198
|
+
nextPn: int
|
|
1199
|
+
sak: Incomplete
|
|
1200
|
+
salt: Incomplete
|
|
1201
|
+
ssci: int
|
|
1202
|
+
def __init__(self) -> None: ...
|
|
1203
|
+
|
|
1204
|
+
class MACsecSc:
|
|
1205
|
+
enable: bool
|
|
1206
|
+
enableAutoRekey: bool
|
|
1207
|
+
index: int
|
|
1208
|
+
isActiveSa1: bool
|
|
1209
|
+
saIndex0: int
|
|
1210
|
+
saIndex0InUse: bool
|
|
1211
|
+
saIndex1: int
|
|
1212
|
+
saIndex1InUse: bool
|
|
1213
|
+
sci: int
|
|
1214
|
+
secYIndex: int
|
|
1215
|
+
def __init__(self) -> None: ...
|
|
1216
|
+
|
|
1217
|
+
class MACsecSecTagIcvStripType:
|
|
1218
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1219
|
+
PreserveBoth: ClassVar[MACsecSecTagIcvStripType] = ...
|
|
1220
|
+
PreserveSecTagStripICV: ClassVar[MACsecSecTagIcvStripType] = ...
|
|
1221
|
+
StripBoth: ClassVar[MACsecSecTagIcvStripType] = ...
|
|
1222
|
+
StripSecTagPreserveICV: ClassVar[MACsecSecTagIcvStripType] = ...
|
|
1223
|
+
__entries: ClassVar[dict] = ...
|
|
1224
|
+
def __init__(self, value: int) -> None: ...
|
|
1225
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1226
|
+
def __hash__(self) -> int: ...
|
|
1227
|
+
def __index__(self) -> int: ...
|
|
1228
|
+
def __int__(self) -> int: ...
|
|
1229
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1230
|
+
@property
|
|
1231
|
+
def name(self) -> str: ...
|
|
1232
|
+
@property
|
|
1233
|
+
def value(self) -> int: ...
|
|
1234
|
+
|
|
1235
|
+
class MACsecSecY:
|
|
1236
|
+
cipher: MACsecCipherSuiteType
|
|
1237
|
+
confidentialOffset: int
|
|
1238
|
+
controlledPortEnabled: bool
|
|
1239
|
+
enable: bool
|
|
1240
|
+
frameValidationType: MACsecValidateFrameType
|
|
1241
|
+
icvIncludesDaSa: bool
|
|
1242
|
+
index: int
|
|
1243
|
+
mtu: int
|
|
1244
|
+
protectFrames: bool
|
|
1245
|
+
replayProtect: bool
|
|
1246
|
+
replayWindow: int
|
|
1247
|
+
secTagIcvStripType: MACsecSecTagIcvStripType
|
|
1248
|
+
secTagOffset: int
|
|
1249
|
+
secTagTci: int
|
|
1250
|
+
def __init__(self) -> None: ...
|
|
1251
|
+
|
|
1252
|
+
class MACsecVLANTag:
|
|
1253
|
+
pri_cfi: int
|
|
1254
|
+
vid: int
|
|
1255
|
+
def __init__(self) -> None: ...
|
|
1256
|
+
|
|
1257
|
+
class MACsecValidateFrameType:
|
|
1258
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1259
|
+
Check: ClassVar[MACsecValidateFrameType] = ...
|
|
1260
|
+
Disabled: ClassVar[MACsecValidateFrameType] = ...
|
|
1261
|
+
NA: ClassVar[MACsecValidateFrameType] = ...
|
|
1262
|
+
Strict: ClassVar[MACsecValidateFrameType] = ...
|
|
1263
|
+
__entries: ClassVar[dict] = ...
|
|
1264
|
+
def __init__(self, value: int) -> None: ...
|
|
1265
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1266
|
+
def __hash__(self) -> int: ...
|
|
1267
|
+
def __index__(self) -> int: ...
|
|
1268
|
+
def __int__(self) -> int: ...
|
|
1269
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1270
|
+
@property
|
|
1271
|
+
def name(self) -> str: ...
|
|
1272
|
+
@property
|
|
1273
|
+
def value(self) -> int: ...
|
|
1274
|
+
|
|
1275
|
+
class MDIOMessage(Frame):
|
|
1276
|
+
class Clause:
|
|
1277
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1278
|
+
Clause22: ClassVar[MDIOMessage.Clause] = ...
|
|
1279
|
+
Clause45: ClassVar[MDIOMessage.Clause] = ...
|
|
1280
|
+
__entries: ClassVar[dict] = ...
|
|
1281
|
+
def __init__(self, value: int) -> None: ...
|
|
1282
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1283
|
+
def __hash__(self) -> int: ...
|
|
1284
|
+
def __index__(self) -> int: ...
|
|
1285
|
+
def __int__(self) -> int: ...
|
|
1286
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1287
|
+
@property
|
|
1288
|
+
def name(self) -> str: ...
|
|
1289
|
+
@property
|
|
1290
|
+
def value(self) -> int: ...
|
|
1291
|
+
|
|
1292
|
+
class Direction:
|
|
1293
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1294
|
+
Read: ClassVar[MDIOMessage.Direction] = ...
|
|
1295
|
+
Write: ClassVar[MDIOMessage.Direction] = ...
|
|
1296
|
+
__entries: ClassVar[dict] = ...
|
|
1297
|
+
def __init__(self, value: int) -> None: ...
|
|
1298
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1299
|
+
def __hash__(self) -> int: ...
|
|
1300
|
+
def __index__(self) -> int: ...
|
|
1301
|
+
def __int__(self) -> int: ...
|
|
1302
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1303
|
+
@property
|
|
1304
|
+
def name(self) -> str: ...
|
|
1305
|
+
@property
|
|
1306
|
+
def value(self) -> int: ...
|
|
1307
|
+
clause: MDIOMessage.Clause
|
|
1308
|
+
devAddress: int
|
|
1309
|
+
direction: MDIOMessage.Direction
|
|
1310
|
+
isTXMsg: bool
|
|
1311
|
+
phyAddress: int
|
|
1312
|
+
regAddress: int
|
|
1313
|
+
txAborted: bool
|
|
1314
|
+
txInvalidBus: bool
|
|
1315
|
+
txInvalidClause: bool
|
|
1316
|
+
txInvalidOpcode: bool
|
|
1317
|
+
txInvalidPhyAddr: bool
|
|
1318
|
+
txInvalidRegAddr: bool
|
|
1319
|
+
txTimeout: bool
|
|
1320
|
+
def __init__(self) -> None: ...
|
|
1321
|
+
|
|
1322
|
+
class Message:
|
|
1323
|
+
class Type:
|
|
1324
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1325
|
+
AppError: ClassVar[Message.Type] = ...
|
|
1326
|
+
CANError: ClassVar[Message.Type] = ...
|
|
1327
|
+
CANErrorCount: ClassVar[Message.Type] = ...
|
|
1328
|
+
ComponentVersions: ClassVar[Message.Type] = ...
|
|
1329
|
+
DeviceVersion: ClassVar[Message.Type] = ...
|
|
1330
|
+
EthernetPhyRegister: ClassVar[Message.Type] = ...
|
|
1331
|
+
EthernetStatus: ClassVar[Message.Type] = ...
|
|
1332
|
+
ExtendedResponse: ClassVar[Message.Type] = ...
|
|
1333
|
+
FlexRayControl: ClassVar[Message.Type] = ...
|
|
1334
|
+
Frame: ClassVar[Message.Type] = ...
|
|
1335
|
+
GPTPStatus: ClassVar[Message.Type] = ...
|
|
1336
|
+
GenericBinaryStatus: ClassVar[Message.Type] = ...
|
|
1337
|
+
HardwareInfo: ClassVar[Message.Type] = ...
|
|
1338
|
+
Invalid: ClassVar[Message.Type] = ...
|
|
1339
|
+
LINBreak: ClassVar[Message.Type] = ...
|
|
1340
|
+
LINHeaderOnly: ClassVar[Message.Type] = ...
|
|
1341
|
+
LiveData: ClassVar[Message.Type] = ...
|
|
1342
|
+
LogicalDiskInfo: ClassVar[Message.Type] = ...
|
|
1343
|
+
Main51: ClassVar[Message.Type] = ...
|
|
1344
|
+
RawMessage: ClassVar[Message.Type] = ...
|
|
1345
|
+
ReadSettings: ClassVar[Message.Type] = ...
|
|
1346
|
+
ResetStatus: ClassVar[Message.Type] = ...
|
|
1347
|
+
ScriptStatus: ClassVar[Message.Type] = ...
|
|
1348
|
+
SupportedFeatures: ClassVar[Message.Type] = ...
|
|
1349
|
+
TC10Status: ClassVar[Message.Type] = ...
|
|
1350
|
+
WiVICommandResponse: ClassVar[Message.Type] = ...
|
|
1351
|
+
__entries: ClassVar[dict] = ...
|
|
1352
|
+
def __init__(self, value: int) -> None: ...
|
|
1353
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1354
|
+
def __hash__(self) -> int: ...
|
|
1355
|
+
def __index__(self) -> int: ...
|
|
1356
|
+
def __int__(self) -> int: ...
|
|
1357
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1358
|
+
@property
|
|
1359
|
+
def name(self) -> str: ...
|
|
1360
|
+
@property
|
|
1361
|
+
def value(self) -> int: ...
|
|
1362
|
+
timestamp: int
|
|
1363
|
+
def __init__(self, arg0: Message.Type) -> None: ...
|
|
1364
|
+
@property
|
|
1365
|
+
def type(self) -> Message.Type: ...
|
|
1366
|
+
|
|
1367
|
+
class MessageCallback:
|
|
1368
|
+
def __init__(self, arg0: Callable[[Message], None], arg1: MessageFilter) -> None: ...
|
|
1369
|
+
|
|
1370
|
+
class MessageFilter:
|
|
1371
|
+
@overload
|
|
1372
|
+
def __init__(self) -> None: ...
|
|
1373
|
+
@overload
|
|
1374
|
+
def __init__(self, arg0: Message.Type) -> None: ...
|
|
1375
|
+
@overload
|
|
1376
|
+
def __init__(self, arg0: Network.NetID) -> None: ...
|
|
1377
|
+
|
|
1378
|
+
class NeoVersion:
|
|
1379
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
1380
|
+
@property
|
|
1381
|
+
def buildBranch(self) -> str: ...
|
|
1382
|
+
@property
|
|
1383
|
+
def buildTag(self) -> str: ...
|
|
1384
|
+
@property
|
|
1385
|
+
def major(self) -> int: ...
|
|
1386
|
+
@property
|
|
1387
|
+
def metadata(self) -> str: ...
|
|
1388
|
+
@property
|
|
1389
|
+
def minor(self) -> int: ...
|
|
1390
|
+
@property
|
|
1391
|
+
def patch(self) -> int: ...
|
|
1392
|
+
|
|
1393
|
+
class Network:
|
|
1394
|
+
class NetID:
|
|
1395
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1396
|
+
A2B_01: ClassVar[Network.NetID] = ...
|
|
1397
|
+
A2B_02: ClassVar[Network.NetID] = ...
|
|
1398
|
+
AE_01: ClassVar[Network.NetID] = ...
|
|
1399
|
+
AE_02: ClassVar[Network.NetID] = ...
|
|
1400
|
+
AE_03: ClassVar[Network.NetID] = ...
|
|
1401
|
+
AE_04: ClassVar[Network.NetID] = ...
|
|
1402
|
+
AE_05: ClassVar[Network.NetID] = ...
|
|
1403
|
+
AE_06: ClassVar[Network.NetID] = ...
|
|
1404
|
+
AE_07: ClassVar[Network.NetID] = ...
|
|
1405
|
+
AE_08: ClassVar[Network.NetID] = ...
|
|
1406
|
+
AE_09: ClassVar[Network.NetID] = ...
|
|
1407
|
+
AE_10: ClassVar[Network.NetID] = ...
|
|
1408
|
+
AE_11: ClassVar[Network.NetID] = ...
|
|
1409
|
+
AE_12: ClassVar[Network.NetID] = ...
|
|
1410
|
+
AE_13: ClassVar[Network.NetID] = ...
|
|
1411
|
+
AE_14: ClassVar[Network.NetID] = ...
|
|
1412
|
+
AE_15: ClassVar[Network.NetID] = ...
|
|
1413
|
+
AE_16: ClassVar[Network.NetID] = ...
|
|
1414
|
+
Any: ClassVar[Network.NetID] = ...
|
|
1415
|
+
App_Signal_Status: ClassVar[Network.NetID] = ...
|
|
1416
|
+
Aux: ClassVar[Network.NetID] = ...
|
|
1417
|
+
CAN_ERRBITS: ClassVar[Network.NetID] = ...
|
|
1418
|
+
CGI: ClassVar[Network.NetID] = ...
|
|
1419
|
+
CoreMiniPreLoad: ClassVar[Network.NetID] = ...
|
|
1420
|
+
DWCAN_01: ClassVar[Network.NetID] = ...
|
|
1421
|
+
DWCAN_02: ClassVar[Network.NetID] = ...
|
|
1422
|
+
DWCAN_03: ClassVar[Network.NetID] = ...
|
|
1423
|
+
DWCAN_04: ClassVar[Network.NetID] = ...
|
|
1424
|
+
DWCAN_05: ClassVar[Network.NetID] = ...
|
|
1425
|
+
DWCAN_06: ClassVar[Network.NetID] = ...
|
|
1426
|
+
DWCAN_07: ClassVar[Network.NetID] = ...
|
|
1427
|
+
DWCAN_08: ClassVar[Network.NetID] = ...
|
|
1428
|
+
DWCAN_09: ClassVar[Network.NetID] = ...
|
|
1429
|
+
DWCAN_10: ClassVar[Network.NetID] = ...
|
|
1430
|
+
DWCAN_11: ClassVar[Network.NetID] = ...
|
|
1431
|
+
DWCAN_12: ClassVar[Network.NetID] = ...
|
|
1432
|
+
DWCAN_13: ClassVar[Network.NetID] = ...
|
|
1433
|
+
DWCAN_14: ClassVar[Network.NetID] = ...
|
|
1434
|
+
DWCAN_15: ClassVar[Network.NetID] = ...
|
|
1435
|
+
DWCAN_16: ClassVar[Network.NetID] = ...
|
|
1436
|
+
Data_To_Host: ClassVar[Network.NetID] = ...
|
|
1437
|
+
Device: ClassVar[Network.NetID] = ...
|
|
1438
|
+
DeviceStatus: ClassVar[Network.NetID] = ...
|
|
1439
|
+
DiskData: ClassVar[Network.NetID] = ...
|
|
1440
|
+
ETHERNET_01: ClassVar[Network.NetID] = ...
|
|
1441
|
+
ETHERNET_02: ClassVar[Network.NetID] = ...
|
|
1442
|
+
ETHERNET_03: ClassVar[Network.NetID] = ...
|
|
1443
|
+
ETHERNET_DAQ: ClassVar[Network.NetID] = ...
|
|
1444
|
+
ETHERNET_TX_WRAP: ClassVar[Network.NetID] = ...
|
|
1445
|
+
EthPHYControl: ClassVar[Network.NetID] = ...
|
|
1446
|
+
ExtendedCommand: ClassVar[Network.NetID] = ...
|
|
1447
|
+
ExtendedData: ClassVar[Network.NetID] = ...
|
|
1448
|
+
FB_Status: ClassVar[Network.NetID] = ...
|
|
1449
|
+
FLEXRAY_01: ClassVar[Network.NetID] = ...
|
|
1450
|
+
FLEXRAY_01A: ClassVar[Network.NetID] = ...
|
|
1451
|
+
FLEXRAY_01B: ClassVar[Network.NetID] = ...
|
|
1452
|
+
FLEXRAY_02: ClassVar[Network.NetID] = ...
|
|
1453
|
+
FLEXRAY_02A: ClassVar[Network.NetID] = ...
|
|
1454
|
+
FLEXRAY_02B: ClassVar[Network.NetID] = ...
|
|
1455
|
+
FlexRayControl: ClassVar[Network.NetID] = ...
|
|
1456
|
+
FordSCP: ClassVar[Network.NetID] = ...
|
|
1457
|
+
ForwardedMessage: ClassVar[Network.NetID] = ...
|
|
1458
|
+
GMFSA: ClassVar[Network.NetID] = ...
|
|
1459
|
+
HW_COM_Latency_Test: ClassVar[Network.NetID] = ...
|
|
1460
|
+
I2C_01: ClassVar[Network.NetID] = ...
|
|
1461
|
+
I2C_02: ClassVar[Network.NetID] = ...
|
|
1462
|
+
I2C_03: ClassVar[Network.NetID] = ...
|
|
1463
|
+
I2C_04: ClassVar[Network.NetID] = ...
|
|
1464
|
+
ISO14230: ClassVar[Network.NetID] = ...
|
|
1465
|
+
ISO9141_01: ClassVar[Network.NetID] = ...
|
|
1466
|
+
ISO9141_02: ClassVar[Network.NetID] = ...
|
|
1467
|
+
ISO9141_03: ClassVar[Network.NetID] = ...
|
|
1468
|
+
ISO9141_04: ClassVar[Network.NetID] = ...
|
|
1469
|
+
Invalid: ClassVar[Network.NetID] = ...
|
|
1470
|
+
J1708: ClassVar[Network.NetID] = ...
|
|
1471
|
+
J1850VPW: ClassVar[Network.NetID] = ...
|
|
1472
|
+
LIN_01: ClassVar[Network.NetID] = ...
|
|
1473
|
+
LIN_02: ClassVar[Network.NetID] = ...
|
|
1474
|
+
LIN_03: ClassVar[Network.NetID] = ...
|
|
1475
|
+
LIN_04: ClassVar[Network.NetID] = ...
|
|
1476
|
+
LIN_05: ClassVar[Network.NetID] = ...
|
|
1477
|
+
LIN_06: ClassVar[Network.NetID] = ...
|
|
1478
|
+
LIN_07: ClassVar[Network.NetID] = ...
|
|
1479
|
+
LIN_08: ClassVar[Network.NetID] = ...
|
|
1480
|
+
LIN_09: ClassVar[Network.NetID] = ...
|
|
1481
|
+
LIN_10: ClassVar[Network.NetID] = ...
|
|
1482
|
+
LIN_11: ClassVar[Network.NetID] = ...
|
|
1483
|
+
LIN_12: ClassVar[Network.NetID] = ...
|
|
1484
|
+
LIN_13: ClassVar[Network.NetID] = ...
|
|
1485
|
+
LIN_14: ClassVar[Network.NetID] = ...
|
|
1486
|
+
LIN_15: ClassVar[Network.NetID] = ...
|
|
1487
|
+
LIN_16: ClassVar[Network.NetID] = ...
|
|
1488
|
+
LSFTCAN_01: ClassVar[Network.NetID] = ...
|
|
1489
|
+
LSFTCAN_02: ClassVar[Network.NetID] = ...
|
|
1490
|
+
Logging_Overflow: ClassVar[Network.NetID] = ...
|
|
1491
|
+
LogicalDiskInfo: ClassVar[Network.NetID] = ...
|
|
1492
|
+
MDIO_01: ClassVar[Network.NetID] = ...
|
|
1493
|
+
MDIO_02: ClassVar[Network.NetID] = ...
|
|
1494
|
+
MDIO_03: ClassVar[Network.NetID] = ...
|
|
1495
|
+
MDIO_04: ClassVar[Network.NetID] = ...
|
|
1496
|
+
MDIO_05: ClassVar[Network.NetID] = ...
|
|
1497
|
+
MDIO_06: ClassVar[Network.NetID] = ...
|
|
1498
|
+
MDIO_07: ClassVar[Network.NetID] = ...
|
|
1499
|
+
MDIO_08: ClassVar[Network.NetID] = ...
|
|
1500
|
+
MOST_150: ClassVar[Network.NetID] = ...
|
|
1501
|
+
MOST_25: ClassVar[Network.NetID] = ...
|
|
1502
|
+
MOST_50: ClassVar[Network.NetID] = ...
|
|
1503
|
+
Main51: ClassVar[Network.NetID] = ...
|
|
1504
|
+
NeoMemorySDRead: ClassVar[Network.NetID] = ...
|
|
1505
|
+
NeoMemoryWriteDone: ClassVar[Network.NetID] = ...
|
|
1506
|
+
RED: ClassVar[Network.NetID] = ...
|
|
1507
|
+
RED_App_Error: ClassVar[Network.NetID] = ...
|
|
1508
|
+
RED_DFLASH_READ: ClassVar[Network.NetID] = ...
|
|
1509
|
+
RED_EXT_MEMORYREAD: ClassVar[Network.NetID] = ...
|
|
1510
|
+
RED_GET_RTC: ClassVar[Network.NetID] = ...
|
|
1511
|
+
RED_HARDWARE_EXCEP: ClassVar[Network.NetID] = ...
|
|
1512
|
+
RED_INT_MEMORYREAD: ClassVar[Network.NetID] = ...
|
|
1513
|
+
RED_NEOVI_NETWORK: ClassVar[Network.NetID] = ...
|
|
1514
|
+
RED_NETWORK_COM_ENABLE_EX: ClassVar[Network.NetID] = ...
|
|
1515
|
+
RED_OLDFORMAT: ClassVar[Network.NetID] = ...
|
|
1516
|
+
RED_READ_BAUD_SETTINGS: ClassVar[Network.NetID] = ...
|
|
1517
|
+
RED_SCOPE_CAPTURE: ClassVar[Network.NetID] = ...
|
|
1518
|
+
RED_WAVE_CAN1_LOGICAL: ClassVar[Network.NetID] = ...
|
|
1519
|
+
RED_WAVE_CAN2_LOGICAL: ClassVar[Network.NetID] = ...
|
|
1520
|
+
RED_WAVE_LIN1_ANALOG: ClassVar[Network.NetID] = ...
|
|
1521
|
+
RED_WAVE_LIN1_LOGICAL: ClassVar[Network.NetID] = ...
|
|
1522
|
+
RED_WAVE_LIN2_ANALOG: ClassVar[Network.NetID] = ...
|
|
1523
|
+
RED_WAVE_LIN2_LOGICAL: ClassVar[Network.NetID] = ...
|
|
1524
|
+
RED_WAVE_MISCDIO2_LOGICAL: ClassVar[Network.NetID] = ...
|
|
1525
|
+
RED_WAVE_MISC_ANALOG: ClassVar[Network.NetID] = ...
|
|
1526
|
+
RS232: ClassVar[Network.NetID] = ...
|
|
1527
|
+
ReadSettings: ClassVar[Network.NetID] = ...
|
|
1528
|
+
Read_Datalink_Cm_Rx_Msg: ClassVar[Network.NetID] = ...
|
|
1529
|
+
Read_Datalink_Cm_Tx_Msg: ClassVar[Network.NetID] = ...
|
|
1530
|
+
Red_VBat: ClassVar[Network.NetID] = ...
|
|
1531
|
+
Reset_Status: ClassVar[Network.NetID] = ...
|
|
1532
|
+
SCI: ClassVar[Network.NetID] = ...
|
|
1533
|
+
SPI_01: ClassVar[Network.NetID] = ...
|
|
1534
|
+
SPI_02: ClassVar[Network.NetID] = ...
|
|
1535
|
+
SPI_03: ClassVar[Network.NetID] = ...
|
|
1536
|
+
SPI_04: ClassVar[Network.NetID] = ...
|
|
1537
|
+
SPI_05: ClassVar[Network.NetID] = ...
|
|
1538
|
+
SPI_06: ClassVar[Network.NetID] = ...
|
|
1539
|
+
SPI_07: ClassVar[Network.NetID] = ...
|
|
1540
|
+
SPI_08: ClassVar[Network.NetID] = ...
|
|
1541
|
+
SWCAN_01: ClassVar[Network.NetID] = ...
|
|
1542
|
+
SWCAN_02: ClassVar[Network.NetID] = ...
|
|
1543
|
+
ScriptStatus: ClassVar[Network.NetID] = ...
|
|
1544
|
+
TCP: ClassVar[Network.NetID] = ...
|
|
1545
|
+
TextAPI_To_Host: ClassVar[Network.NetID] = ...
|
|
1546
|
+
UART_01: ClassVar[Network.NetID] = ...
|
|
1547
|
+
UART_02: ClassVar[Network.NetID] = ...
|
|
1548
|
+
UART_03: ClassVar[Network.NetID] = ...
|
|
1549
|
+
UART_04: ClassVar[Network.NetID] = ...
|
|
1550
|
+
UDP: ClassVar[Network.NetID] = ...
|
|
1551
|
+
WBMS_01: ClassVar[Network.NetID] = ...
|
|
1552
|
+
WiVICommand: ClassVar[Network.NetID] = ...
|
|
1553
|
+
__entries: ClassVar[dict] = ...
|
|
1554
|
+
def __init__(self, value: int) -> None: ...
|
|
1555
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1556
|
+
def __hash__(self) -> int: ...
|
|
1557
|
+
def __index__(self) -> int: ...
|
|
1558
|
+
def __int__(self) -> int: ...
|
|
1559
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1560
|
+
@property
|
|
1561
|
+
def name(self) -> str: ...
|
|
1562
|
+
@property
|
|
1563
|
+
def value(self) -> int: ...
|
|
1564
|
+
|
|
1565
|
+
class Type:
|
|
1566
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1567
|
+
A2B: ClassVar[Network.Type] = ...
|
|
1568
|
+
Any: ClassVar[Network.Type] = ...
|
|
1569
|
+
AutomotiveEthernet: ClassVar[Network.Type] = ...
|
|
1570
|
+
CAN: ClassVar[Network.Type] = ...
|
|
1571
|
+
Ethernet: ClassVar[Network.Type] = ...
|
|
1572
|
+
FlexRay: ClassVar[Network.Type] = ...
|
|
1573
|
+
I2C: ClassVar[Network.Type] = ...
|
|
1574
|
+
ISO9141: ClassVar[Network.Type] = ...
|
|
1575
|
+
Internal: ClassVar[Network.Type] = ...
|
|
1576
|
+
Invalid: ClassVar[Network.Type] = ...
|
|
1577
|
+
LIN: ClassVar[Network.Type] = ...
|
|
1578
|
+
LSFTCAN: ClassVar[Network.Type] = ...
|
|
1579
|
+
MDIO: ClassVar[Network.Type] = ...
|
|
1580
|
+
MOST: ClassVar[Network.Type] = ...
|
|
1581
|
+
Other: ClassVar[Network.Type] = ...
|
|
1582
|
+
SPI: ClassVar[Network.Type] = ...
|
|
1583
|
+
SWCAN: ClassVar[Network.Type] = ...
|
|
1584
|
+
__entries: ClassVar[dict] = ...
|
|
1585
|
+
def __init__(self, value: int) -> None: ...
|
|
1586
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1587
|
+
def __hash__(self) -> int: ...
|
|
1588
|
+
def __index__(self) -> int: ...
|
|
1589
|
+
def __int__(self) -> int: ...
|
|
1590
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1591
|
+
@property
|
|
1592
|
+
def name(self) -> str: ...
|
|
1593
|
+
@property
|
|
1594
|
+
def value(self) -> int: ...
|
|
1595
|
+
def __init__(self, arg0: Network.NetID) -> None: ...
|
|
1596
|
+
def get_net_id(self) -> Network.NetID: ...
|
|
1597
|
+
@staticmethod
|
|
1598
|
+
def get_net_id_string(netid: Network.NetID, expand: bool = ...) -> str: ...
|
|
1599
|
+
def get_type(self) -> Network.Type: ...
|
|
1600
|
+
|
|
1601
|
+
class PhyMessage:
|
|
1602
|
+
BusIndex: int
|
|
1603
|
+
Clause22: Incomplete
|
|
1604
|
+
Clause45: Incomplete
|
|
1605
|
+
Clause45Enable: bool
|
|
1606
|
+
Enabled: bool
|
|
1607
|
+
Version: int
|
|
1608
|
+
WriteEnable: bool
|
|
1609
|
+
def __init__(self) -> None: ...
|
|
1610
|
+
|
|
1611
|
+
class RawMessage(Message):
|
|
1612
|
+
data: list[int]
|
|
1613
|
+
network: Network
|
|
1614
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
1615
|
+
|
|
1616
|
+
class SPIMessage(Frame):
|
|
1617
|
+
class Direction:
|
|
1618
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1619
|
+
Read: ClassVar[SPIMessage.Direction] = ...
|
|
1620
|
+
Write: ClassVar[SPIMessage.Direction] = ...
|
|
1621
|
+
__entries: ClassVar[dict] = ...
|
|
1622
|
+
def __init__(self, value: int) -> None: ...
|
|
1623
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1624
|
+
def __hash__(self) -> int: ...
|
|
1625
|
+
def __index__(self) -> int: ...
|
|
1626
|
+
def __int__(self) -> int: ...
|
|
1627
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1628
|
+
@property
|
|
1629
|
+
def name(self) -> str: ...
|
|
1630
|
+
@property
|
|
1631
|
+
def value(self) -> int: ...
|
|
1632
|
+
address: int
|
|
1633
|
+
direction: SPIMessage.Direction
|
|
1634
|
+
mms: int
|
|
1635
|
+
payload: list[int]
|
|
1636
|
+
stats: int
|
|
1637
|
+
def __init__(self) -> None: ...
|
|
1638
|
+
|
|
1639
|
+
class ScriptStatusMessage(Message):
|
|
1640
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
1641
|
+
@property
|
|
1642
|
+
def coreminiCreateTime(self) -> int: ...
|
|
1643
|
+
@property
|
|
1644
|
+
def coreminiHeaderSize(self) -> int: ...
|
|
1645
|
+
@property
|
|
1646
|
+
def coreminiVersion(self) -> int: ...
|
|
1647
|
+
@property
|
|
1648
|
+
def currentSector(self) -> int: ...
|
|
1649
|
+
@property
|
|
1650
|
+
def diagnosticErrorCode(self) -> int: ...
|
|
1651
|
+
@property
|
|
1652
|
+
def diagnosticErrorCodeCount(self) -> int: ...
|
|
1653
|
+
@property
|
|
1654
|
+
def fileChecksum(self) -> int: ...
|
|
1655
|
+
@property
|
|
1656
|
+
def isCoreminiRunning(self) -> bool: ...
|
|
1657
|
+
@property
|
|
1658
|
+
def isEncrypted(self) -> bool: ...
|
|
1659
|
+
@property
|
|
1660
|
+
def lastSector(self) -> int: ...
|
|
1661
|
+
@property
|
|
1662
|
+
def maxCoreminiSizeKB(self) -> int: ...
|
|
1663
|
+
@property
|
|
1664
|
+
def maxSector(self) -> int: ...
|
|
1665
|
+
@property
|
|
1666
|
+
def minSector(self) -> int: ...
|
|
1667
|
+
@property
|
|
1668
|
+
def numRemainingSectorBuffers(self) -> int: ...
|
|
1669
|
+
@property
|
|
1670
|
+
def readBinSize(self) -> int: ...
|
|
1671
|
+
@property
|
|
1672
|
+
def sectorOverflows(self) -> int: ...
|
|
1673
|
+
|
|
1674
|
+
class Settings:
|
|
1675
|
+
class EthernetLinkMode:
|
|
1676
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1677
|
+
Auto: ClassVar[Settings.EthernetLinkMode] = ...
|
|
1678
|
+
Master: ClassVar[Settings.EthernetLinkMode] = ...
|
|
1679
|
+
Slave: ClassVar[Settings.EthernetLinkMode] = ...
|
|
1680
|
+
__entries: ClassVar[dict] = ...
|
|
1681
|
+
def __init__(self, value: int) -> None: ...
|
|
1682
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1683
|
+
def __hash__(self) -> int: ...
|
|
1684
|
+
def __index__(self) -> int: ...
|
|
1685
|
+
def __int__(self) -> int: ...
|
|
1686
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1687
|
+
@property
|
|
1688
|
+
def name(self) -> str: ...
|
|
1689
|
+
@property
|
|
1690
|
+
def value(self) -> int: ...
|
|
1691
|
+
|
|
1692
|
+
class EthernetLinkSpeed:
|
|
1693
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1694
|
+
Speed100M: ClassVar[Settings.EthernetLinkSpeed] = ...
|
|
1695
|
+
Speed10G: ClassVar[Settings.EthernetLinkSpeed] = ...
|
|
1696
|
+
Speed10M: ClassVar[Settings.EthernetLinkSpeed] = ...
|
|
1697
|
+
Speed1G: ClassVar[Settings.EthernetLinkSpeed] = ...
|
|
1698
|
+
Speed2_5G: ClassVar[Settings.EthernetLinkSpeed] = ...
|
|
1699
|
+
Speed5G: ClassVar[Settings.EthernetLinkSpeed] = ...
|
|
1700
|
+
__entries: ClassVar[dict] = ...
|
|
1701
|
+
def __init__(self, value: int) -> None: ...
|
|
1702
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1703
|
+
def __hash__(self) -> int: ...
|
|
1704
|
+
def __index__(self) -> int: ...
|
|
1705
|
+
def __int__(self) -> int: ...
|
|
1706
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1707
|
+
@property
|
|
1708
|
+
def name(self) -> str: ...
|
|
1709
|
+
@property
|
|
1710
|
+
def value(self) -> int: ...
|
|
1711
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
1712
|
+
|
|
1713
|
+
class TC10SleepStatus:
|
|
1714
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1715
|
+
NoSleepReceived: ClassVar[TC10SleepStatus] = ...
|
|
1716
|
+
SleepAborted: ClassVar[TC10SleepStatus] = ...
|
|
1717
|
+
SleepFailed: ClassVar[TC10SleepStatus] = ...
|
|
1718
|
+
SleepReceived: ClassVar[TC10SleepStatus] = ...
|
|
1719
|
+
__entries: ClassVar[dict] = ...
|
|
1720
|
+
def __init__(self, value: int) -> None: ...
|
|
1721
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1722
|
+
def __hash__(self) -> int: ...
|
|
1723
|
+
def __index__(self) -> int: ...
|
|
1724
|
+
def __int__(self) -> int: ...
|
|
1725
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1726
|
+
@property
|
|
1727
|
+
def name(self) -> str: ...
|
|
1728
|
+
@property
|
|
1729
|
+
def value(self) -> int: ...
|
|
1730
|
+
|
|
1731
|
+
class TC10StatusMessage(Message):
|
|
1732
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
1733
|
+
@property
|
|
1734
|
+
def sleepStatus(self) -> TC10SleepStatus: ...
|
|
1735
|
+
@property
|
|
1736
|
+
def wakeStatus(self) -> TC10WakeStatus: ...
|
|
1737
|
+
|
|
1738
|
+
class TC10WakeStatus:
|
|
1739
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
1740
|
+
NoWakeReceived: ClassVar[TC10WakeStatus] = ...
|
|
1741
|
+
WakeReceived: ClassVar[TC10WakeStatus] = ...
|
|
1742
|
+
__entries: ClassVar[dict] = ...
|
|
1743
|
+
def __init__(self, value: int) -> None: ...
|
|
1744
|
+
def __eq__(self, other: object) -> bool: ...
|
|
1745
|
+
def __hash__(self) -> int: ...
|
|
1746
|
+
def __index__(self) -> int: ...
|
|
1747
|
+
def __int__(self) -> int: ...
|
|
1748
|
+
def __ne__(self, other: object) -> bool: ...
|
|
1749
|
+
@property
|
|
1750
|
+
def name(self) -> str: ...
|
|
1751
|
+
@property
|
|
1752
|
+
def value(self) -> int: ...
|
|
1753
|
+
|
|
1754
|
+
class VersionReport:
|
|
1755
|
+
def __init__(self, *args, **kwargs) -> None: ...
|
|
1756
|
+
@property
|
|
1757
|
+
def build(self) -> int: ...
|
|
1758
|
+
@property
|
|
1759
|
+
def id(self) -> ChipID: ...
|
|
1760
|
+
@property
|
|
1761
|
+
def maintenance(self) -> int: ...
|
|
1762
|
+
@property
|
|
1763
|
+
def major(self) -> int: ...
|
|
1764
|
+
@property
|
|
1765
|
+
def minor(self) -> int: ...
|
|
1766
|
+
@property
|
|
1767
|
+
def name(self) -> str: ...
|
|
1768
|
+
|
|
1769
|
+
def find_all_devices() -> list[Device]: ...
|
|
1770
|
+
def get_last_error() -> APIEvent: ...
|
|
1771
|
+
def get_supported_devices() -> list[DeviceType]: ...
|
|
1772
|
+
def get_version() -> NeoVersion: ...
|