icsneopy 1.1.0.post1.dev27__cp311-cp311-macosx_11_0_arm64.whl → 1.1.0.post1.dev46__cp311-cp311-macosx_11_0_arm64.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.

Binary file
icsneopy/icsneopy.pyi CHANGED
@@ -257,6 +257,7 @@ class ChipID:
257
257
  RADGALAXY2_SYSMON_CHIP: ClassVar[ChipID] = ...
258
258
  RADGalaxy_FFG_Zynq: ClassVar[ChipID] = ...
259
259
  RADGalaxy_ZYNQ: ClassVar[ChipID] = ...
260
+ RADGemini_MCHIP: ClassVar[ChipID] = ...
260
261
  RADGigastar2_ZYNQ: ClassVar[ChipID] = ...
261
262
  RADGigastar_FFG_ZYNQ: ClassVar[ChipID] = ...
262
263
  RADGigastar_USBZ_Z7007S_ZYNQ: ClassVar[ChipID] = ...
@@ -429,7 +430,7 @@ class Device:
429
430
  def supports_tc10(self) -> bool: ...
430
431
  def transmit(self, arg0: Frame) -> bool: ...
431
432
  def upload_coremini(self, arg0: str, arg1: Disk.MemoryType) -> bool: ...
432
- def write_macsec_config(self, arg0: MACsecMessage, arg1: int) -> bool: ...
433
+ def write_macsec_config(self, arg0: MACsecConfig) -> bool: ...
433
434
  @property
434
435
  def settings(self): ...
435
436
 
@@ -476,6 +477,7 @@ class DeviceType:
476
477
  RADEpsilonXL: ClassVar[DeviceType.Enum] = ...
477
478
  RADGalaxy: ClassVar[DeviceType.Enum] = ...
478
479
  RADGalaxy2: ClassVar[DeviceType.Enum] = ...
480
+ RADGemini: ClassVar[DeviceType.Enum] = ...
479
481
  RADGigastar: ClassVar[DeviceType.Enum] = ...
480
482
  RADGigastar2: ClassVar[DeviceType.Enum] = ...
481
483
  RADIO_CANHUB: ClassVar[DeviceType.Enum] = ...
@@ -571,6 +573,7 @@ class EthernetStatusMessage(Message):
571
573
  LinkModeAuto: ClassVar[EthernetStatusMessage.LinkMode] = ...
572
574
  LinkModeInvalid: ClassVar[EthernetStatusMessage.LinkMode] = ...
573
575
  LinkModeMaster: ClassVar[EthernetStatusMessage.LinkMode] = ...
576
+ LinkModeNone: ClassVar[EthernetStatusMessage.LinkMode] = ...
574
577
  LinkModeSlave: ClassVar[EthernetStatusMessage.LinkMode] = ...
575
578
  __entries: ClassVar[dict] = ...
576
579
  def __init__(self, value: int) -> None: ...
@@ -860,85 +863,85 @@ class GPTPStatus(Message):
860
863
  class ClockQuality:
861
864
  def __init__(self, *args, **kwargs) -> None: ...
862
865
  @property
863
- def clockAccuracy(self) -> int: ...
866
+ def clock_accuracy(self) -> int: ...
864
867
  @property
865
- def clockClass(self) -> int: ...
868
+ def clock_class(self) -> int: ...
866
869
  @property
867
- def offsetScaledLogVariance(self) -> int: ...
870
+ def offset_scaled_log_variance(self) -> int: ...
868
871
 
869
872
  class CurrentDS:
870
873
  def __init__(self, *args, **kwargs) -> None: ...
871
874
  @property
872
- def gmChangeCount(self) -> int: ...
875
+ def gm_change_count(self) -> int: ...
873
876
  @property
874
- def gmTimeBaseIndicator(self) -> int: ...
877
+ def gm_time_base_indicator(self) -> int: ...
875
878
  @property
876
- def lastgmFreqChange(self) -> float: ...
879
+ def lastgm_freq_change(self) -> float: ...
877
880
  @property
878
- def lastgmPhaseChange(self) -> GPTPStatus.ScaledNanoSeconds: ...
881
+ def lastgm_phase_change(self) -> GPTPStatus.ScaledNanoSeconds: ...
879
882
  @property
880
- def offsetFromMaster(self) -> int: ...
883
+ def offset_from_master(self) -> int: ...
881
884
  @property
882
- def stepsRemoved(self) -> int: ...
885
+ def steps_removed(self) -> int: ...
883
886
  @property
884
- def timeOfLastgmChangeEvent(self) -> int: ...
887
+ def time_of_lastgm_change_event(self) -> int: ...
885
888
  @property
886
- def timeOfLastgmFreqChangeEvent(self) -> int: ...
889
+ def time_of_lastgm_freq_change_event(self) -> int: ...
887
890
  @property
888
- def timeOfLastgmPhaseChangeEvent(self) -> int: ...
891
+ def time_of_lastgm_phase_change_event(self) -> int: ...
889
892
 
890
893
  class ParentDS:
891
894
  def __init__(self, *args, **kwargs) -> None: ...
892
895
  @property
893
- def cumulativeRateRatio(self) -> int: ...
896
+ def cumulative_rate_ratio(self) -> int: ...
894
897
  @property
895
- def gmClockQualityClockAccuracy(self) -> int: ...
898
+ def gm_clock_quality_clock_accuracy(self) -> int: ...
896
899
  @property
897
- def gmClockQualityClockClass(self) -> int: ...
900
+ def gm_clock_quality_clock_class(self) -> int: ...
898
901
  @property
899
- def gmClockQualityOffsetScaledLogVariance(self) -> int: ...
902
+ def gm_clock_quality_offset_scaled_log_variance(self) -> int: ...
900
903
  @property
901
- def gmPriority1(self) -> int: ...
904
+ def gm_priority1(self) -> int: ...
902
905
  @property
903
- def gmPriority2(self) -> int: ...
906
+ def gm_priority2(self) -> int: ...
904
907
  @property
905
- def grandmasterIdentity(self) -> int: ...
908
+ def grandmaster_identity(self) -> int: ...
906
909
  @property
907
- def parentPortIdentity(self) -> GPTPStatus.PortID: ...
910
+ def parent_port_identity(self) -> GPTPStatus.PortID: ...
908
911
 
909
912
  class PortID:
910
913
  def __init__(self, *args, **kwargs) -> None: ...
911
914
  @property
912
- def clockIdentity(self) -> int: ...
915
+ def clock_identity(self) -> int: ...
913
916
  @property
914
- def portNumber(self) -> int: ...
917
+ def port_number(self) -> int: ...
915
918
 
916
919
  class PriorityVector:
917
920
  def __init__(self, *args, **kwargs) -> None: ...
918
921
  @property
919
- def portID(self) -> GPTPStatus.PortID: ...
922
+ def port_id(self) -> GPTPStatus.PortID: ...
920
923
  @property
921
- def portNumber(self) -> int: ...
924
+ def port_number(self) -> int: ...
922
925
  @property
923
- def stepsRemoved(self) -> int: ...
926
+ def steps_removed(self) -> int: ...
924
927
  @property
925
- def sysID(self) -> GPTPStatus.SystemID: ...
928
+ def sys_id(self) -> GPTPStatus.SystemID: ...
926
929
 
927
930
  class ScaledNanoSeconds:
928
931
  def __init__(self, *args, **kwargs) -> None: ...
929
932
  @property
930
- def fractionalNanoseconds(self) -> int: ...
933
+ def fractional_nanoseconds(self) -> int: ...
931
934
  @property
932
- def nanosecondsLSB(self) -> int: ...
935
+ def nanoseconds_lsb(self) -> int: ...
933
936
  @property
934
- def nanosecondsMSB(self) -> int: ...
937
+ def nanoseconds_msb(self) -> int: ...
935
938
 
936
939
  class SystemID:
937
940
  def __init__(self, *args, **kwargs) -> None: ...
938
941
  @property
939
- def clockID(self) -> int: ...
942
+ def clock_id(self) -> int: ...
940
943
  @property
941
- def clockQuality(self) -> GPTPStatus.ClockQuality: ...
944
+ def clock_quality(self) -> GPTPStatus.ClockQuality: ...
942
945
  @property
943
946
  def priority1(self) -> int: ...
944
947
  @property
@@ -953,29 +956,31 @@ class GPTPStatus(Message):
953
956
  def seconds(self) -> int: ...
954
957
  def __init__(self, *args, **kwargs) -> None: ...
955
958
  @property
956
- def asCapable(self) -> int: ...
959
+ def as_capable(self) -> int: ...
957
960
  @property
958
- def currentDS(self) -> GPTPStatus.CurrentDS: ...
961
+ def current_ds(self) -> GPTPStatus.CurrentDS: ...
959
962
  @property
960
- def currentTime(self) -> GPTPStatus.Timestamp: ...
963
+ def current_time(self) -> GPTPStatus.Timestamp: ...
961
964
  @property
962
- def gmPriority(self) -> GPTPStatus.PriorityVector: ...
965
+ def gm_priority(self) -> GPTPStatus.PriorityVector: ...
963
966
  @property
964
- def isSync(self) -> int: ...
967
+ def is_sync(self) -> int: ...
965
968
  @property
966
- def isSyntonized(self) -> int: ...
969
+ def is_syntonized(self) -> int: ...
967
970
  @property
968
- def lastRXSyncTS(self) -> GPTPStatus.Timestamp: ...
971
+ def last_rx_sync_ts(self) -> GPTPStatus.Timestamp: ...
969
972
  @property
970
- def linkDelayNS(self) -> int: ...
973
+ def link_delay_ns(self) -> int: ...
971
974
  @property
972
- def linkStatus(self) -> int: ...
975
+ def link_status(self) -> int: ...
973
976
  @property
974
- def msOffsetNs(self) -> int: ...
977
+ def ms_offset_ns(self) -> int: ...
975
978
  @property
976
- def parentDS(self) -> GPTPStatus.ParentDS: ...
979
+ def parent_ds(self) -> GPTPStatus.ParentDS: ...
977
980
  @property
978
- def selectedRole(self) -> int: ...
981
+ def selected_role(self) -> int: ...
982
+ @property
983
+ def short_format(self) -> bool: ...
979
984
 
980
985
  class IDeviceSettings:
981
986
  def __init__(self, *args, **kwargs) -> None: ...
@@ -1074,21 +1079,12 @@ class MACAddress:
1074
1079
  def __init__(self, *args, **kwargs) -> None: ...
1075
1080
  def to_string(self) -> str: ...
1076
1081
 
1077
- class MACSecFlags:
1078
- en: bool
1079
- def __init__(self) -> None: ...
1080
-
1081
- class MACSecGlobalFlags:
1082
- en: bool
1083
- nvm: bool
1084
- def __init__(self) -> None: ...
1085
-
1086
- class MACsecCipherSuiteType:
1082
+ class MACsecCipherSuite:
1087
1083
  __members__: ClassVar[dict] = ... # read-only
1088
- AES_128: ClassVar[MACsecCipherSuiteType] = ...
1089
- AES_128_XPN: ClassVar[MACsecCipherSuiteType] = ...
1090
- AES_256: ClassVar[MACsecCipherSuiteType] = ...
1091
- AES_256_XPN: ClassVar[MACsecCipherSuiteType] = ...
1084
+ GCM_AES_128: ClassVar[MACsecCipherSuite] = ...
1085
+ GCM_AES_128_XPN: ClassVar[MACsecCipherSuite] = ...
1086
+ GCM_AES_256: ClassVar[MACsecCipherSuite] = ...
1087
+ GCM_AES_256_XPN: ClassVar[MACsecCipherSuite] = ...
1092
1088
  __entries: ClassVar[dict] = ...
1093
1089
  def __init__(self, value: int) -> None: ...
1094
1090
  def __eq__(self, other: object) -> bool: ...
@@ -1102,45 +1098,50 @@ class MACsecCipherSuiteType:
1102
1098
  def value(self) -> int: ...
1103
1099
 
1104
1100
  class MACsecConfig:
1105
- flags: MACSecFlags
1106
- map: Incomplete
1107
- rule: Incomplete
1108
- sa: Incomplete
1109
- sc: Incomplete
1110
- secy: Incomplete
1111
- def __init__(self) -> None: ...
1101
+ def __init__(self, arg0: DeviceType) -> None: ...
1102
+ def add_rx_rule(self, arg0: MACsecRxRule, arg1: int) -> int: ...
1103
+ def add_rx_sa(self, arg0: MACsecRxSa) -> int: ...
1104
+ def add_rx_secy(self, arg0: MACsecRxSecY, arg1: int) -> int: ...
1105
+ def add_tx_sa(self, arg0: MACsecTxSa) -> int: ...
1106
+ def add_tx_secY(self, arg0: MACsecTxSecY, arg1: int) -> int: ...
1107
+ def clear(self) -> None: ...
1108
+ def disable_rx_rekey(self, arg0: int) -> None: ...
1109
+ def disable_tx_rekey(self, arg0: int) -> None: ...
1110
+ def enable_rx_rekey(self, arg0: int, arg1: int) -> bool: ...
1111
+ def enable_tx_rekey(self, arg0: int, arg1: int) -> bool: ...
1112
+ def get_bin_index(self) -> int: ...
1113
+ def get_max_num_rule(self) -> int: ...
1114
+ def get_max_num_sa(self) -> int: ...
1115
+ def get_max_num_secy(self) -> int: ...
1116
+ def get_rx_rule(self, arg0: int) -> MACsecRxRule: ...
1117
+ def get_rx_sa(self, arg0: int) -> MACsecRxSa: ...
1118
+ def get_rx_secy(self, arg0: int) -> MACsecRxSecY: ...
1119
+ def get_tx_sa(self, arg0: int) -> MACsecTxSa: ...
1120
+ def get_tx_secy(self, arg0: int) -> MACsecTxSecY: ...
1121
+ def get_type(self) -> DeviceType: ...
1122
+ def serialize(self) -> list[int]: ...
1123
+ def set_rx_enable(self, arg0: bool) -> None: ...
1124
+ def set_rx_sa_index(self, arg0: int, arg1: int) -> bool: ...
1125
+ def set_rx_sa_rekey_index(self, arg0: int, arg1: int) -> bool: ...
1126
+ def set_storage(self, arg0: bool) -> None: ...
1127
+ def set_tx_enable(self, arg0: bool) -> None: ...
1128
+ def set_tx_sa_index(self, arg0: int, arg1: int) -> bool: ...
1129
+ def set_tx_sa_rekey_index(self, arg0: int, arg1: int) -> bool: ...
1112
1130
 
1113
1131
  class MACsecMPLSOuter:
1114
1132
  exp: int
1115
1133
  mpls_label: int
1116
1134
  def __init__(self) -> None: ...
1117
1135
 
1118
- class MACsecMap:
1119
- auxiliaryPlcy: int
1120
- enable: bool
1121
- index: int
1122
- isControlPacket: bool
1123
- ruleId: int
1124
- scIndex: int
1125
- secTagSci: int
1126
- secYIndex: int
1127
- def __init__(self) -> None: ...
1128
-
1129
- class MACsecMessage:
1130
- flags: MACSecGlobalFlags
1131
- rx: MACsecConfig
1132
- tx: MACsecConfig
1133
- def __init__(self) -> None: ...
1134
-
1135
1136
  class MACsecPacketType:
1136
1137
  __members__: ClassVar[dict] = ... # read-only
1137
- DualVLAN: ClassVar[MACsecPacketType] = ...
1138
- DualVLAN_FollowByMPLS: ClassVar[MACsecPacketType] = ...
1138
+ DEFAULT: ClassVar[MACsecPacketType] = ...
1139
+ DUAL_VLAN: ClassVar[MACsecPacketType] = ...
1140
+ DUAL_VLAN_FOLLOWED_BY_MPLS: ClassVar[MACsecPacketType] = ...
1139
1141
  MPLS: ClassVar[MACsecPacketType] = ...
1140
- NoVLAN_OrMPLS: ClassVar[MACsecPacketType] = ...
1141
- SingleVLAN: ClassVar[MACsecPacketType] = ...
1142
- SingleVLAN_FollowByMPLS: ClassVar[MACsecPacketType] = ...
1143
- Unsupported: ClassVar[MACsecPacketType] = ...
1142
+ SINGLE_VLAN: ClassVar[MACsecPacketType] = ...
1143
+ SINGLE_VLAN_FOLLOWED_BY_MPLS: ClassVar[MACsecPacketType] = ...
1144
+ UNSUPPORTED: ClassVar[MACsecPacketType] = ...
1144
1145
  __entries: ClassVar[dict] = ...
1145
1146
  def __init__(self, value: int) -> None: ...
1146
1147
  def __eq__(self, other: object) -> bool: ...
@@ -1153,70 +1154,65 @@ class MACsecPacketType:
1153
1154
  @property
1154
1155
  def value(self) -> int: ...
1155
1156
 
1156
- class MACsecRule:
1157
- enable: bool
1158
- index: int
1159
- isMpls: bool
1160
- keyBonusData: int
1161
- keyEthertype: int
1162
- keyExpress: bool
1163
- keyInnerVlanType: int
1164
- keyMacDa: Incomplete
1165
- keyMacSa: Incomplete
1166
- keyMplsOuter1: MACsecMPLSOuter
1167
- keyMplsOuter2: MACsecMPLSOuter
1168
- keyNumTags: int
1169
- keyOuterVlanType: int
1170
- keyPacketType: MACsecPacketType
1171
- keyTagMatchBitmap: int
1172
- keyVlanTagOuter1: MACsecVLANTag
1173
- keyVlanTagOuter2: MACsecVLANTag
1174
- maskBonusData: int
1175
- maskEthertype: int
1176
- maskExpress: int
1177
- maskInnerVlanType: int
1178
- maskMacDa: Incomplete
1179
- maskMacSa: Incomplete
1180
- maskMplsOuter1: MACsecMPLSOuter
1181
- maskMplsOuter2: MACsecMPLSOuter
1182
- maskNumTags: int
1183
- maskOuterVlanType: int
1184
- maskPacketType: int
1185
- maskTagMatchBitmap: int
1186
- maskVlanTagOuter1: MACsecVLANTag
1187
- maskVlanTagOuter2: MACsecVLANTag
1157
+ class MACsecRxRule:
1158
+ is_mpls: bool
1159
+ key_bonus_data: int
1160
+ key_ether_type: int
1161
+ key_express: bool
1162
+ key_inner_vlan_type: int
1163
+ key_mac_da: Incomplete
1164
+ key_mask_sa: Incomplete
1165
+ key_mpls_outer1: MACsecMPLSOuter
1166
+ key_mpls_outer2: MACsecMPLSOuter
1167
+ key_num_tags: int
1168
+ key_outer_vlan_type: int
1169
+ key_packet_type: MACsecPacketType
1170
+ key_tag_match_bitmap: int
1171
+ key_vlan_tag_outer1: MACsecVLANTag
1172
+ key_vlan_tag_outer2: MACsecVLANTag
1173
+ mask_bonus_data: int
1174
+ mask_ether_type: int
1175
+ mask_express: bool
1176
+ mask_inner_vlan_type: int
1177
+ mask_mac_da: Incomplete
1178
+ mask_mac_sa: Incomplete
1179
+ mask_mpls_outer1: MACsecMPLSOuter
1180
+ mask_mpls_outer2: MACsecMPLSOuter
1181
+ mask_num_tags: int
1182
+ mask_outer_vlan_type: int
1183
+ mask_packet_type: int
1184
+ mask_tag_match_bitmap: int
1185
+ mask_vlan_tag_outer1: MACsecVLANTag
1186
+ mask_vlan_tag_outer2: MACsecVLANTag
1188
1187
  def __init__(self) -> None: ...
1189
1188
 
1190
- class MACsecSa:
1191
- an: int
1192
- enable: bool
1193
- hashKey: Incomplete
1194
- index: int
1195
- nextPn: int
1189
+ class MACsecRxSa:
1190
+ hash_key: Incomplete
1191
+ next_pn: int
1196
1192
  sak: Incomplete
1197
1193
  salt: Incomplete
1198
1194
  ssci: int
1199
1195
  def __init__(self) -> None: ...
1200
1196
 
1201
- class MACsecSc:
1202
- enable: bool
1203
- enableAutoRekey: bool
1204
- index: int
1205
- isActiveSa1: bool
1206
- saIndex0: int
1207
- saIndex0InUse: bool
1208
- saIndex1: int
1209
- saIndex1InUse: bool
1197
+ class MACsecRxSecY:
1198
+ cipher: MACsecCipherSuite
1199
+ confidentiality_offset: int
1200
+ enable_control_port: bool
1201
+ frame_strip: MACsecStrip
1202
+ frame_validation: MACsecValidation
1203
+ icv_includes_da_sa: bool
1204
+ is_control_packet: bool
1205
+ replay_protect: bool
1206
+ replay_window: int
1210
1207
  sci: int
1211
- secYIndex: int
1212
1208
  def __init__(self) -> None: ...
1213
1209
 
1214
- class MACsecSecTagIcvStripType:
1210
+ class MACsecStrip:
1215
1211
  __members__: ClassVar[dict] = ... # read-only
1216
- PreserveBoth: ClassVar[MACsecSecTagIcvStripType] = ...
1217
- PreserveSecTagStripICV: ClassVar[MACsecSecTagIcvStripType] = ...
1218
- StripBoth: ClassVar[MACsecSecTagIcvStripType] = ...
1219
- StripSecTagPreserveICV: ClassVar[MACsecSecTagIcvStripType] = ...
1212
+ NO_STRIP: ClassVar[MACsecStrip] = ...
1213
+ PRESERVE_SECTAG_STRIP_ICV: ClassVar[MACsecStrip] = ...
1214
+ STRIP_SECTAG_AND_ICV: ClassVar[MACsecStrip] = ...
1215
+ STRIP_SECTAG_PRESERVE_ICV: ClassVar[MACsecStrip] = ...
1220
1216
  __entries: ClassVar[dict] = ...
1221
1217
  def __init__(self, value: int) -> None: ...
1222
1218
  def __eq__(self, other: object) -> bool: ...
@@ -1229,21 +1225,35 @@ class MACsecSecTagIcvStripType:
1229
1225
  @property
1230
1226
  def value(self) -> int: ...
1231
1227
 
1232
- class MACsecSecY:
1233
- cipher: MACsecCipherSuiteType
1234
- confidentialOffset: int
1235
- controlledPortEnabled: bool
1236
- enable: bool
1237
- frameValidationType: MACsecValidateFrameType
1238
- icvIncludesDaSa: bool
1239
- index: int
1228
+ class MACsecTci:
1229
+ c: bool
1230
+ e: bool
1231
+ es: bool
1232
+ sc: bool
1233
+ scb: bool
1234
+ def __init__(self) -> None: ...
1235
+
1236
+ class MACsecTxSa:
1237
+ an: int
1238
+ hash_key: Incomplete
1239
+ next_pn: int
1240
+ sak: Incomplete
1241
+ salt: Incomplete
1242
+ ssci: int
1243
+ def __init__(self) -> None: ...
1244
+
1245
+ class MACsecTxSecY:
1246
+ auxiliary_policy: int
1247
+ cipher: MACsecCipherSuite
1248
+ confidentiality_offset: int
1249
+ enable_control_port: bool
1250
+ icv_includes_da_sa: bool
1251
+ is_control_packet: bool
1240
1252
  mtu: int
1241
- protectFrames: bool
1242
- replayProtect: bool
1243
- replayWindow: int
1244
- secTagIcvStripType: MACsecSecTagIcvStripType
1245
- secTagOffset: int
1246
- secTagTci: int
1253
+ protect_frames: bool
1254
+ sci: int
1255
+ sec_tag_offset: int
1256
+ sec_tag_tci: MACsecTci
1247
1257
  def __init__(self) -> None: ...
1248
1258
 
1249
1259
  class MACsecVLANTag:
@@ -1251,12 +1261,12 @@ class MACsecVLANTag:
1251
1261
  vid: int
1252
1262
  def __init__(self) -> None: ...
1253
1263
 
1254
- class MACsecValidateFrameType:
1264
+ class MACsecValidation:
1255
1265
  __members__: ClassVar[dict] = ... # read-only
1256
- Check: ClassVar[MACsecValidateFrameType] = ...
1257
- Disabled: ClassVar[MACsecValidateFrameType] = ...
1258
- NA: ClassVar[MACsecValidateFrameType] = ...
1259
- Strict: ClassVar[MACsecValidateFrameType] = ...
1266
+ CHECK: ClassVar[MACsecValidation] = ...
1267
+ DISABLED: ClassVar[MACsecValidation] = ...
1268
+ NA: ClassVar[MACsecValidation] = ...
1269
+ STRICT: ClassVar[MACsecValidation] = ...
1260
1270
  __entries: ClassVar[dict] = ...
1261
1271
  def __init__(self, value: int) -> None: ...
1262
1272
  def __eq__(self, other: object) -> bool: ...
@@ -1563,10 +1573,11 @@ class Network:
1563
1573
  __members__: ClassVar[dict] = ... # read-only
1564
1574
  A2B: ClassVar[Network.Type] = ...
1565
1575
  Any: ClassVar[Network.Type] = ...
1576
+ AutomotiveEthernet: ClassVar[Network.Type] = ...
1566
1577
  CAN: ClassVar[Network.Type] = ...
1567
1578
  Ethernet: ClassVar[Network.Type] = ...
1568
1579
  FlexRay: ClassVar[Network.Type] = ...
1569
- I2C_01: ClassVar[Network.Type] = ...
1580
+ I2C: ClassVar[Network.Type] = ...
1570
1581
  ISO9141: ClassVar[Network.Type] = ...
1571
1582
  Internal: ClassVar[Network.Type] = ...
1572
1583
  Invalid: ClassVar[Network.Type] = ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: icsneopy
3
- Version: 1.1.0.post1.dev27
3
+ Version: 1.1.0.post1.dev46
4
4
  Author: Intrepid Control Systems, Inc.
5
5
  Maintainer-Email: Kyle Schwarz <kschwarz@intrepidcs.com>
6
6
  License: Copyright (c) 2018-2025 Intrepid Control Systems, Inc.
@@ -43,6 +43,7 @@ Classifier: Programming Language :: Python :: 3.10
43
43
  Classifier: Programming Language :: Python :: 3.11
44
44
  Classifier: Programming Language :: Python :: 3.12
45
45
  Classifier: Programming Language :: Python :: 3.13
46
+ Classifier: Programming Language :: Python :: 3.14
46
47
  Classifier: Programming Language :: Python :: 3 :: Only
47
48
  Classifier: Programming Language :: Python :: Implementation :: CPython
48
49
  Classifier: Operating System :: Microsoft :: Windows
@@ -85,6 +86,7 @@ each of the respective APIs.
85
86
  - RAD-EpsilonXL
86
87
  - RAD-Galaxy
87
88
  - RAD-Galaxy 2
89
+ - RAD-Gemini
88
90
  - RAD-Gigastar
89
91
  - RAD-Gigastar 2
90
92
  - RAD-Moon 2
@@ -0,0 +1,8 @@
1
+ icsneopy-1.1.0.post1.dev46.dist-info/RECORD,,
2
+ icsneopy-1.1.0.post1.dev46.dist-info/WHEEL,sha256=4CYzI0otigkuiH5g2UotkgFRS-CesfbfVqGyA9q_pdY,141
3
+ icsneopy-1.1.0.post1.dev46.dist-info/METADATA,sha256=NzeIwXoymeRF2DghEV79UpTgFzfsB1DtJxn_6b8cCQQ,4133
4
+ icsneopy-1.1.0.post1.dev46.dist-info/licenses/LICENSE,sha256=evgMO8IwO4ik4PxmbMCPlJ2SzvU8GQzbZEnTZ6N1byA,1650
5
+ icsneopy/__init__.py,sha256=8JkkO6Pz2588-j1MEFY8BIBthdiBFi8V4UIoSTdTye4,25
6
+ icsneopy/icsneopy.cpython-311-darwin.so,sha256=CcaaO9WWMtd787-lWY426PqlqBREf-gCZPBr9goEJe4,3595776
7
+ icsneopy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ icsneopy/icsneopy.pyi,sha256=FZRlvTootETDh5yQ1YeNasrZAOz8kofReyk42R1g-iY,70750
@@ -1,8 +0,0 @@
1
- icsneopy-1.1.0.post1.dev27.dist-info/RECORD,,
2
- icsneopy-1.1.0.post1.dev27.dist-info/WHEEL,sha256=4CYzI0otigkuiH5g2UotkgFRS-CesfbfVqGyA9q_pdY,141
3
- icsneopy-1.1.0.post1.dev27.dist-info/METADATA,sha256=Y3QRV4F_FWrhBF8KBrguGVi6YZMSLA04UQqhCCrenQU,4069
4
- icsneopy-1.1.0.post1.dev27.dist-info/licenses/LICENSE,sha256=evgMO8IwO4ik4PxmbMCPlJ2SzvU8GQzbZEnTZ6N1byA,1650
5
- icsneopy/__init__.py,sha256=8JkkO6Pz2588-j1MEFY8BIBthdiBFi8V4UIoSTdTye4,25
6
- icsneopy/icsneopy.cpython-311-darwin.so,sha256=nrPvu3q0c4PAuwqdQU7qw1yrgnzzZxap_c8Pe-Q73bY,3576000
7
- icsneopy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- icsneopy/icsneopy.pyi,sha256=dsl_6k1juaw-DzJoqk4gYM1fNxbI3W7rB0ypwcmcCJI,69274