public enum TPCANBitrateFDValue extends java.lang.Enum<TPCANBitrateFDValue>
Enum Constant and Description |
---|
PCAN_BR_CLOCK
Clock frequency in Herz (80000000, 60000000, 40000000, 30000000,
24000000, 20000000)
|
PCAN_BR_CLOCK_MHZ
Clock frequency in Megaherz (80, 60, 40, 30, 24, 20)
|
PCAN_BR_DATA_BRP
Clock prescaler for highspeed data time quantum
|
PCAN_BR_DATA_SAMPLE
Secondary sample point delay for highspeed data bitrate in cyles
|
PCAN_BR_DATA_SJW
Synchronization Jump Width for highspeed data bit rate in time quanta
|
PCAN_BR_DATA_TSEG1
TSEG1 segment for fast data bit rate in time quanta
|
PCAN_BR_DATA_TSEG2
TSEG2 segment for fast data bit rate in time quanta
|
PCAN_BR_NOM_BRP
Clock prescaler for nominal time quantum
|
PCAN_BR_NOM_SAMPLE
Sample point for nominal bit rate
|
PCAN_BR_NOM_SJW
Synchronization Jump Width for nominal bit rate in time quanta
|
PCAN_BR_NOM_TSEG1
TSEG1 segment for nominal bit rate in time quanta
|
PCAN_BR_NOM_TSEG2
TSEG2 segment for nominal bit rate in time quanta
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue()
The string value of Bitrate FD string parameter
|
static TPCANBitrateFDValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TPCANBitrateFDValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPCANBitrateFDValue PCAN_BR_CLOCK
public static final TPCANBitrateFDValue PCAN_BR_CLOCK_MHZ
public static final TPCANBitrateFDValue PCAN_BR_NOM_BRP
public static final TPCANBitrateFDValue PCAN_BR_NOM_TSEG1
public static final TPCANBitrateFDValue PCAN_BR_NOM_TSEG2
public static final TPCANBitrateFDValue PCAN_BR_NOM_SJW
public static final TPCANBitrateFDValue PCAN_BR_NOM_SAMPLE
public static final TPCANBitrateFDValue PCAN_BR_DATA_BRP
public static final TPCANBitrateFDValue PCAN_BR_DATA_TSEG1
public static final TPCANBitrateFDValue PCAN_BR_DATA_TSEG2
public static final TPCANBitrateFDValue PCAN_BR_DATA_SJW
public static final TPCANBitrateFDValue PCAN_BR_DATA_SAMPLE
public static TPCANBitrateFDValue[] values()
for (TPCANBitrateFDValue c : TPCANBitrateFDValue.values()) System.out.println(c);
public static TPCANBitrateFDValue valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()