Represents the type of PCAN (not plug&play) hardware to be initialized. According with the programming language, this type can be a group of defined values or an enumeration.
Syntax
#define TPCANType BYTE #define PCAN_TYPE_ISA 0x01 #define PCAN_TYPE_ISA_SJA 0x09 #define PCAN_TYPE_ISA_PHYTEC 0x04 #define PCAN_TYPE_DNG 0x02 #define PCAN_TYPE_DNG_EPP 0x03 #define PCAN_TYPE_DNG_SJA 0x05 #define PCAN_TYPE_DNG_SJA_EPP 0x06
{$Z1} TPCANType = ( PCAN_TYPE_ISA = $01, PCAN_TYPE_ISA_SJA = $09, PCAN_TYPE_ISA_PHYTEC = $04, PCAN_TYPE_DNG = $02, PCAN_TYPE_DNG_EPP = $03, PCAN_TYPE_DNG_SJA = $05, PCAN_TYPE_DNG_SJA_EPP = $06 );
public enum TPCANType : byte { PCAN_TYPE_ISA = 0x01, PCAN_TYPE_ISA_SJA = 0x09, PCAN_TYPE_ISA_PHYTEC = 0x04, PCAN_TYPE_DNG = 0x02, PCAN_TYPE_DNG_EPP = 0x03, PCAN_TYPE_DNG_SJA = 0x05, PCAN_TYPE_DNG_SJA_EPP = 0x06, }
public enum class TPCANType : Byte { PCAN_TYPE_ISA = 0x01, PCAN_TYPE_ISA_SJA = 0x09, PCAN_TYPE_ISA_PHYTEC = 0x04, PCAN_TYPE_DNG = 0x02, PCAN_TYPE_DNG_EPP = 0x03, PCAN_TYPE_DNG_SJA = 0x05, PCAN_TYPE_DNG_SJA_EPP = 0x06, };
Public Enum TPCANType As Byte PCAN_TYPE_ISA = &H1 PCAN_TYPE_ISA_SJA = &H9 PCAN_TYPE_ISA_PHYTEC = &H4 PCAN_TYPE_DNG = &H2 PCAN_TYPE_DNG_EPP = &H3 PCAN_TYPE_DNG_SJA = &H5 PCAN_TYPE_DNG_SJA_EPP = &H6 End Enum
TPCANType = c_ubyte PCAN_TYPE_ISA = TPCANType(0x01) PCAN_TYPE_ISA_SJA = TPCANType(0x09) PCAN_TYPE_ISA_PHYTEC = TPCANType(0x04) PCAN_TYPE_DNG = TPCANType(0x02) PCAN_TYPE_DNG_EPP = TPCANType(0x03) PCAN_TYPE_DNG_SJA = TPCANType(0x05) PCAN_TYPE_DNG_SJA_EPP = TPCANType(0x06)
Name |
Value |
Description |
PCAN_TYPE_ISA |
1 |
PCAN-ISA 82C200. |
PCAN_TYPE_ISA_SJA |
9 |
PCAN-ISA SJA1000. |
PCAN_TYPE_ISA_PHYTEC |
4 |
PHYTEC ISA . |
PCAN_TYPE_DNG |
2 |
PCAN-Dongle 82C200. |
PCAN_TYPE_DNG_EPP |
3 |
PCAN-Dongle EPP 82C200. |
PCAN_TYPE_DNG_SJA |
5 |
PCAN-Dongle SJA1000. |
PCAN_TYPE_DNG_SJA_EPP |
6 |
PCAN-Dongle EPP SJA1000. |
PCAN_Initialize (class-method: Initialize)
Copyright © 2017. PEAK-System Technik GmbH. All rights reserved.
|
Send feedback to this documentation
|