Description
This tcl command removes one or more pins from a pin group on an instance in a SmartDesign component.
sd_remove_pins_from_group -sd_name {smartdesign component name} \
                          -instance_name {instance name} \
                          -group_name {group name} \
                          -pin_names {pin names}
Arguments
| Parameter | Type | Description | 
|---|
| sd_name | string | Specifies the name of the SmartDesign component. It is mandatory. | 
| instance_name | string | Specifies the name of the instance on which the pin group is present. It is mandatory. | 
| group_name | string | Specifies the name of the pin group from which pins need to be removed. It is mandatory. | 
| pin_names | string | Specifies the list of pin names to be removed from the pin group(example below). It is mandatory. | 
| Return Type | Description | 
|---|
| None | None | 
Error Codes
| Error Code | Description | 
|---|
| None | Parameter 'param_name' is not defined. Valid command formatting is 'sd_remove_pins_from_group -sd_name "sd_name" -instance_name "instance_name" [-group_name "group_name"] [-pin_names "[pin_names]+"]'. | 
| None | Required parameter 'sd_name' is missing. | 
| None | Required parameter 'instance_name' is missing. | 
| None | The component 'component_name' doesn't exist. | 
| SDCTRL05 | Pin 'group_name' does not exist. | 
Supported Families
            
            | Supported Families | 
|---|
| PolarFire® | 
| PolarFire SoC | 
| RTG4™ | 
| SmartFusion® 2 | 
| IGLOO® 2 | 
 
        Example
The following example removes "ARESETN ACLK" pin from "MyGroup", that is on "COREAXINTERCONNECT_C0_0" instance, in the "TOP" design:
sd_remove_pins_from_group -sd_name {TOP} \
                          -instance_name {COREAXINTERCONNECT_C0_0} \
                          -group_name {Group} \
                          -pin_names {ARESETN ACLK}
The following example removes "WA_RSTn", "DISP_SEL" pins from "MyGroup", that is on "CorePCS_C0_0" instance, in the "TOP" design:
sd_remove_pins_from_group -sd_name {TOP} \
			  -instance_name {CorePCS_C0_0} \
                          -group_name {MyGroup} \
                          -pin_names {"WA_RSTn" "DISP_SEL"}
See Also
- sd_create_pin_group
 - sd_add_pins_to_group