Hi all,
According to the help for the UL_PIN object,
The net data member returns the name of the net to which this pin is
connected (only available in a schematic context).
So, as I understand it, something like:
S.parts(P) {
if(P.name==find) {
P.device.gates(G)
{
G.symbol.pins(PIN)
{
printf("%s\t%s\n", PIN.name, PIN.net);
}
}
}
}
ought to print a list of the pin names of a given device, and the nets
they're connected to. However, it doesn't. It prints the names, but all
the nets are just blank. This is the same on V4.16, V5.12 and V7.6
What am I doing wrong?
Cheers,
Rob