Description
This tcl command adds one or more pins to a pin group on an instance in a SmartDesign component.
sd_add_pins_to_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 group to add the pins to. It is mandatory. | 
| pin_names | string | Specifies the list of instance pins to be added to the pin group. 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_add_pins_to_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. | 
Supported Families
            
            | Supported Families | 
|---|
| PolarFire® | 
| PolarFire SoC | 
| RTG4™ | 
| SmartFusion® 2 | 
| IGLOO® 2 | 
 
        Example
The following example adds "ARESETN" and "CLK" pins to the Group of "COREAX_C0_0" instance in the "top" design:
sd_add_pins_to_group -sd_name {top} \
                     -instance_name {COREAX_C0_0} \
                     -group_name {Group} \
                     -pin_names {ARESETN ACLK}
See Also
- sd_create_pin_group
 - sd_remove_pins_from_group