[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: gEDA-user: how to make DRC ignore "outline" layer?



On Wed, 2010-02-10 at 16:22 -0600, Mark Rages wrote:
> Hi, I'm making a layout with castellated vias on the edge.  so these
> vias intersect the outline layer and pcb thinks they are all shorted
> together when I press "o".
> 
> Any way around this?  I thought the magic was the name "outline".

Probably needs a kludge in src/find.c

Somewhere in LookupLOConnectionsToPVList() perhaps, where it loops over
the layers and scans for connectivity to them. Also, check
LookupPVConnectionsToLOList().

The magic test for an outline layer is:

  if (strcmp (Layer->Name, "outline") == 0)
    continue;

"continue" skips to the next iteration of the for loop. "Layer" might
not be the right variable though etc..






_______________________________________________
geda-user mailing list
geda-user@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user