X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com X-Mailer: exmh version 2.8.0 04/21/2012 with nmh-1.7+dev X-Exmh-Isig-CompType: repl X-Exmh-Isig-Folder: inbox From: karl AT aspodata DOT se To: geda-user AT delorie DOT com Subject: Re: [geda-user] finding unnamed_net35 In-reply-to: <5029D88F-B9B8-43D6-A2F5-BC5DB12B9932@ece.orst.edu> References: <5029D88F-B9B8-43D6-A2F5-BC5DB12B9932 AT ece DOT orst DOT edu> Comments: In-reply-to "Roger Traylor (traylor AT engr DOT orst DOT edu) [via geda-user AT delorie DOT com]" message dated "Wed, 05 Feb 2020 22:16:33 -0800." Mime-Version: 1.0 Content-Type: text/plain Message-Id: <20200206080628.B46FB8A02BA8@turkos.aspodata.se> Date: Thu, 6 Feb 2020 09:06:28 +0100 (CET) X-Virus-Scanned: ClamAV using ClamSMTP Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Roger Traylor: > I can pass a schematic drc check (-g drc2) with one error which says: > Checking type of pins connected to a net... > ERROR: Net unnamed_net35 is not driven. > I do not find this net in the .sch file anywhere. How can I find it? It isn't in the sch since it is named in gsch2pcb or "import schematics" phase. If you have a *.net file, grep for it: $ grep unnamed_net35 joystick_mouse_isolated.net br/unnamed_net35 brU1-1 brC1-1 Else it is in the pcb file, but it is more than one line: $ grep -A4 unnamed_net35 joystick_mouse_isolated.pcb Net("br/unnamed_net35" "(unknown)") ( Connect("brC1-1") Connect("brU1-1") ) Regards, /Karl Hammar