Skip to content

Renames Gerber files for one of three fab houses. Deletes GPI files.

License

Notifications You must be signed in to change notification settings

jessehamner/CleanUpGerbers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CleanUpGerbers

Renames Gerber files for one of three PCB fab houses. Zips the appropriate files together. Deletes GPI files.

Introduction

Originally just a shell script to take the usefully-named, but not-uploadable, files from an OSHPark Eagle CAD CAM script, rename them to the proper format for uploading, and then zip-archive the set of files so that it's ready for uploading.

Later, I added some command-line switches to match the (very similar) output for a few other PCB fab houses, DirtyPCBs and Seeedstudio.

The script, at root, is just a time saver, and a tidying-up script. Making PCBs isn't that hard, but "noodling" on the PCBs (staring at the designs for hours, searching for problems or perhaps better ways to do things) means you end up with a bunch of revised Gerber files every time you run the CAM script, and that can be annoying.

Per Bruno Oliveira's correct and humorous graph (but compare Randall Munroe's XKCD retort and the much less humorous but quite more optimistic post by Jon Udell), I got annoyed by the repetitive nature of the task and ended up with a mix of Oliveira and Munroe. I spent more time than I should have on the script, but oh man does it save me time. And then I had to clean it up for github, make it more user friendly, and improve the flexibility.

But, in sum, it works.

Here's what it does

When Eagle CAD, an excellent, though not open source, CAD package, wants to convert your design from a schematic and board layout to something a PCB fab can use to grind, drill, coat, and paint your copper-clad boards, it pipes your design through a CAM (Computer Aided Manufacturing) translations script to produce Gerber files for each layer. Later, at the PCB fab, these files are converted to G-code, a CNC (computer numerical control) language that tells the cutting, drilling, and milling instruments what, exactly, to do. For more on G-code, you can see this interesting article.

So, each time you want to revise your Gerber files, perhaps to preview the whole board in a renderer like gerbv (available through lots of package managers or the homepage), you run the CAM script. It produces a bunch of files that can be read by PCB manufacturers. You can certainly view those files without renaming them. On the other hand, when you want to fab a board, you have to ensure that each layer of the board (copper, solder mask, silkscreen, drills, whatever) is named according to the rules set out by the fab house. And that means looking it up, each time you want to fab a board. Then you zip the files together, upload them, and in two weeks you get a couple of boards in the mail. So, in the grand scheme of things, the amount of time you spend making sure things are right isn't that bad.

My take on it is this: when you're tired, or distracted, or whatever, you're prone to make mistakes. And being able to freely pore over your rendered files reduces the chance of errors. Making that process easy—and saving your time and energy for the troubleshooting or noodling—is a good thing. Furthermore, it saves time and annoyance for having to do the same (repetitive) task again, which keeps your brain engaged with the important stuff.

Similarly, previewing the Gerber files in gerbv can be hard on the eyes, since the first time you load up the layers, not only are they not ordered in a visibly useful manner (holes need to be on the 'top' of the stack to be seen, etc.), the colors are randomly chosen. I also wrote a small python script to bang out a basic gerbv project file, using the newly-renamed layers, with some sane color choices for each layer. The bash script calls the python script in the middle of things, but it seems to work pretty nicely, and again, it's less repetetive busywork while you could otherwise be finished. The script is called makegvp.gvp.

How to use the script

CAM files typically will use some filename stub, plus maybe a descriptor (like bottomsilkscreen) and a file suffix, for each layer of the PCB set. This script asks you to tell it the stub, and either assumes that you're using OSHPark's script and naming conventions, or else you're using OSHPark's script and someone else's naming conventions (currently only DirtyPCBs and SeeedStudio are included).

Example:

./renamegerbers.sh -n FortyTwo

And without additional CLI switches, you'll get an OSHPark-friendly zip file, plus a cleaner directory (OSHPark doesn't need or want you to upload the GPI files, which are a file format for photoplotters).

If you're going to use SeeedStudio, you would say, instead,

./renamegerbers.sh -n FortyTwo -s

And you'll get a custom zip file for SeeedStudio. In practice, the only difference for a two-layer board is that the Excellon drills file suffix is .TXT instead of .XLN -- but the possibility exists that other standards might exist, so I made the script capable of handling those in the future, if desired.

Disclaimer

This code isn't elegant (though elegant programming in bash, I submit, ain't easy). It's pretty easy to read, and might be a useful introduction to a few elements of programming bash, but that's not why I wrote it.

Further, you use this code at your own risk. I wrote it because it's useful to me. I provide it here because it might be useful to you. I have used the script enough to say that it works, but errors creep in. So please be careful.

Jesse Hamner, 2016

About

Renames Gerber files for one of three fab houses. Deletes GPI files.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages