Description
This Tcl command sets the order of the devices in the chain to the order specified. Chain programming mode must have been set. Unspecified devices will be at the end of the chain.
set_device_order -name {device name}
Arguments
| Parameter | Type | Description | 
|---|
| name | string | Specifies the device name. To specify a new order you must repeat this argument and specify each device name in the order desired. This parameter is mandatory. | 
| Return Type | Description | 
|---|
| None | None | 
Error Codes
| Error Code | Description | 
|---|
| None | Required parameter 'name' is missing. | 
| None | Parameter 'name' is missing or has invalid value. | 
| None | Parameter 'name' has illegal value. | 
| None | Parameter 'param_name' is not defined. Valid command formatting is 'set_device_order [-name "name"]+'. | 
Supported Families
            
            | Supported Families | 
|---|
| PolarFire® | 
| PolarFire SoC | 
| RTG4™ | 
| SmartFusion® 2 | 
| IGLOO® 2 | 
 
        Example
The following example sets the device order for 'MyDevice1', 'MyDevice2', 'MyDevice3', and 'MyDevice4'.'MyDevice2' is unspecified so it moves to the end of the chain.
set_device_order -name  {MyDevice2} -name {MyDevice3} -name {MyDevice1} -name {MyDevice4}