cphSbEditIOPin
cphSbEditIOPin(
g_cphId
{ g_sbId | l_physLCV }
t_termName
[ ?lpp txl_lpp ]
[ ?width n_width ]
[ ?height n_height ]
[ ?number x_number ]
[ ?criticality x_criticality ]
[ ?sigType t_sigType ]
)
=> t / nil
Description
Edits attributes of existing pins.
Arguments
|
g_cphId
|
ID of the physical configuration cellview
|
|
g_sbId
|
ID of the soft block
|
|
l_PhysLCV
|
List of ("lib" "cell" "view") triplets
|
|
t_termName
|
Terminal name corresponding to the pin
|
|
?lpp txl_lpp
|
Layer Purpose Pair. Valid formats are text, number, and list. Use one of the following arguments to identify the layer purpose pair.
Text:
"layerName" – The default purpose is "drawing"
“layerName purposeName”
Number:
layerNum – The default purpose is "drawing"
List:
list(“layerName” “purposeName”)
list(layerNum, ”purposeName”)
|
|
?width n_width
|
Width of the Pin
|
|
?height n_height
|
|
|
Height of the Pin
|
|
?number x_number
|
|
|
Number of pinFigs to be created on the pin. The maximum number of pinFigs that can be created is 20.
|
|
?criticality x_criticality
|
|
|
Criticality of the terminal (-128 to 128)
|
|
?sigType t_sigType
|
|
|
Signal type of the terminal
Valid signal types are: "signal", "ground", "supply", "clock", "analog", "tieOff", "tieHi", "tieLo", "scan", and "reset".
|
Value Returned
|
t
|
The pin attributes were changed.
|
|
nil
|
The command was unsuccessful.
|
Examples
cphSbEditIOPin(cphId sbId "AB_x" ?lpp "metal2" ?width 10.0 ?height 10.0 ?sigType "power")
cphSbEditOPin(cphId list("lib" "cell" "view") "AB_y" ?lpp 12 ?width 10.0 ?height 10.0)
cphSbEditIOPin(cphId sbId "AB_z" ?lpp list("metal3" "grid") ?width 10.0 ?sigType "clock")
cphSbEditIOPin(cphId sbId "AB" ?lpp "metal1 drawing" ?width 5.0)
Return to top