From e74e1e2f2ee7ba03c7b7d40d5e31900b34b163f7 Mon Sep 17 00:00:00 2001 From: Jeff Connelly Date: Fri, 16 May 2008 21:49:30 -0700 Subject: [PATCH] PADS-PCB converter: add thoughts about bypass caps and floating pins. --- bb/pads.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bb/pads.py b/bb/pads.py index 5de6930..8119c3a 100644 --- a/bb/pads.py +++ b/bb/pads.py @@ -21,6 +21,13 @@ footprint_map = { "D": "DO-35", # All diodes (note: should really be specific!) } +# TODO: Add bypass capacitor? Might be better done +# manually, on back of board, directly between 7 and 14. +# +# TODO: Connect not-connected pins? Probably a good idea but +# be careful about shorting something. Could also be done +# manually, with copious amounts of solder. + # Append/prepend this to all part and net names (note, prefix may # cause problems with footprint mapping, if can't be recognized.) UNIVERSAL_SUFFIX = "" @@ -218,6 +225,7 @@ for line in infile.readlines(): # Make parts list parts.append((refdesg, model)) + # Map models to footprints print "*PART*" for part in parts: -- 2.11.4.GIT