Enum Constant and Description |
---|
AGHIGH
Asserts the GHIGH_B signal: places all interconnect in a High-Z state
to prevent contention when writing new configuration data.
|
BSPI_READ
BPI/SPI re-initiate bitstream read.
|
CRCC
When readback CRC is selected, the configuration logic recalculates
the first readback CRC value after reconfiguration.
|
DESYNC
Resets the DALIGN signal: Used at the end of configuration to
desynchronize the device.
|
DGHIGH
Last frame: Deasserts the GHIGH_B signal, activating all interconnects.
|
FALL_EDGE
Switch to negative edge clocking (configuration data capture on
falling edge).
|
GRESTORE
Pulses the GRESTORE signal: sets/resets (depending on user
configuration) CLB flip-flops.
|
IPROG
Internal PROG for triggering a warm boot.
|
LFRM
Last frame: Deasserts the GHIGH_B signal, activating all interconnects.
|
LTIMER
Reload watchdog timer.
|
MFW
Multiple frame write: used to perform a write of a single frame data to multiple frame
addresses.
|
NULL
Null command, no action.
|
RCFG
Reads configuration data: used prior to reading configuration data from the FDRO.
|
RCRC
Resets CRC: Resets the CRC register.
|
SHUTDOWN
Begin shutdown sequence: Initiates the shutdown sequence, disabling
the device when finished.
|
START
Begins the start-up sequence: start-up sequence begins after a successful CRC check and a
DESYNC command are performed.
|
SWITCH
Switches the CCLK frequency: updates the frequency of the master
CCLK based on the ECLK_EN and OSCFSEL bits in the COR0 register.
|
ULTRASCALE_RSVD |
WCFG
Writes configuration data: used prior to writing configuration data to the FDRI.
|
Modifier and Type | Method and Description |
---|---|
int |
getCode()
Gets the integer representation of the command code.
|
static CMDCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CMDCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CMDCode NULL
public static final CMDCode WCFG
public static final CMDCode MFW
public static final CMDCode DGHIGH
public static final CMDCode LFRM
public static final CMDCode RCFG
public static final CMDCode START
public static final CMDCode RCRC
public static final CMDCode AGHIGH
public static final CMDCode SWITCH
public static final CMDCode GRESTORE
public static final CMDCode SHUTDOWN
public static final CMDCode DESYNC
public static final CMDCode IPROG
public static final CMDCode CRCC
public static final CMDCode LTIMER
public static final CMDCode BSPI_READ
public static final CMDCode FALL_EDGE
public static final CMDCode ULTRASCALE_RSVD
public static CMDCode[] values()
for (CMDCode c : CMDCode.values()) System.out.println(c);
public static CMDCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getCode()