Research

How KiCad converts component footprints into Gerber code

Author

Tony Wang

Date Published

Okay, let's try to figure out how KiCad converts component footprints into Gerber code. I'm a bit new to this, so I'll start by recalling what I know about KiCad and PCB design.


KiCad Logo

First, KiCad is an open-source PCB design tool. When designing a PCB, you create a schematic first, then assign footprints to each component. The footprint defines the physical layout of the component on the PCB, including pads, holes, silkscreen, etc. Once the layout is done, you need to generate Gerber files to send to the manufacturer. Gerber files are like the blueprints for each layer of the PCB.


So, the question is, how does KiCad take the component footprints and turn them into Gerber code? Let me break this down step by step.

First, the footprint itself. In KiCad, footprints are created in the PCB editor, saved in libraries. Each footprint has pads (for through-hole or SMD components), silkscreen outlines, courtyard areas, and maybe other layers like 3D models or documentation. Each of these elements is drawn using primitives like lines, arcs, circles, rectangles, and polygons, each assigned to a specific layer (like F.Cu for front copper, B.SilkS for back silkscreen, etc.).

When you place a component in the PCB layout, its footprint is instantiated with the specific location and orientation. The PCB layout combines all these footprints along with traces, vias, zones, etc.

Now, when generating Gerber files, KiCad processes each layer separately. For example, the front copper layer (F.Cu) includes all the pads and traces on that layer. The Gerber file for F.Cu would include the pads from the footprints, any traces connected to them, and copper pours. Similarly, the silkscreen layer (F.SilkS) includes the component outlines and text.

So, the conversion process must involve taking each element in the footprint that's on a specific layer and translating it into Gerber commands. Gerber uses a vector format, so lines, arcs, and other shapes are represented with coordinates and commands like draw or flash. For example, a pad might be represented as a flash (a predefined shape at a specific location), while a silkscreen line would be a series of draw commands.

I remember that Gerber files are generated per layer. So KiCad goes through each layer, collects all the elements (from footprints and other PCB features), and converts them into the appropriate Gerber syntax. Each element's properties (like width, shape, position) are translated into Gerber code using the RS-274X format, which supports things like apertures and polygons.

Apertures are shapes used to draw lines or flash pads. KiCad probably assigns an aperture for each unique shape/size used in the layer. For example, a rectangular SMD pad would have a rectangular aperture. The Gerber file defines these apertures first, then uses them throughout the file to draw the features.

For pads in footprints, especially those with specific shapes (like rounded rectangles or circles), KiCad would use the corresponding aperture and flash it at the pad's location. Traces between pads would be drawn using lines with the appropriate aperture.

Another thing to consider is the layer stacking. The Gerber files don't include 3D information, just 2D layers. So each layer (copper, solder mask, silkscreen, etc.) is a separate Gerber file. KiCad must process each of these layers, collect all the relevant elements from all footprints and the board, and output them in the correct order.

Also, there are different Gerber files for different purposes: .gbl (bottom layer), .gbo (bottom overlay/silkscreen), .gbp (bottom paste), .gbs (bottom solder mask), and similarly for the top layers. Then there are drill files, which are usually Excellon format, not Gerber.

So, when generating Gerbers, KiCad's Gerber exporter would iterate over each specified layer, collect all the graphical elements (from footprints and other board elements), convert them into Gerber commands using apertures and draw/flash operations, and write them into the respective Gerber file.

Additionally, KiCad might handle things like layer polarity (positive or negative) for solder masks, where the Gerber file indicates areas to remove mask material. For example, solder mask layers have apertures where the mask is opened to expose copper pads.

Testing my understanding: If I have a component footprint with an SMD pad on F.Cu, a silkscreen outline on F.SilkS, and a solder mask opening on F.Mask, then when generating Gerbers, the F.Cu Gerber would include that pad as a flashed aperture, F.SilkS would have the outline as lines, and F.Mask would have an aperture flashed at the pad location to indicate the mask opening.

I might be missing something about how exactly the apertures are managed. For example, if multiple pads have the same shape and size, they would share the same aperture to reduce file size. KiCad must optimize this by reusing aperture definitions where possible.

Also, polygons (like copper pours) are handled with region fills in Gerber, which might use vectorized fills or raster fills. KiCad would need to convert these into the appropriate Gerber polygon commands.

Another point: KiCad's project settings might influence Gerber generation, like the number of decimal places, coordinate format (leading vs trailing zeros), and other RS-274X options. These settings would affect how the numeric values are written in the Gerber files.

In summary, the process involves:

1. For each Gerber layer, collect all graphical elements (from footprints and other board features) assigned to that layer.

2. Convert each element into Gerber commands using appropriate apertures and draw/flash operations.

3. Manage aperture definitions efficiently, reusing them where possible.

4. Apply project-specific Gerber settings (precision, format).

5. Write the commands into the respective Gerber file, including header information and aperture definitions.

Possible errors in my thinking: Maybe the handling of complex shapes or custom apertures is more nuanced. Also, how thermal reliefs in pads are represented in Gerber? Maybe they are handled as part of the copper pours and use combination of draws and flashes.

Also, the role of the courtyard layer – but I think courtyards are for design checks and not exported to Gerber, so they might not be part of the Gerber output.

I should also consider that the Gerber format has specific commands for different operations. For example, a flash command (D03) is used to place a pad, while a draw command (D01, D02) moves the aperture while exposing the shutter to draw lines or arcs.

So, KiCad's Gerber generator must parse each element's type (pad, line, arc, etc.), determine the correct aperture, and output the correct sequence of commands to reproduce that element in the Gerber file.

Additionally, the drill holes (for through-hole components) are handled separately in Excellon files, which list drill locations and sizes. KiCad generates these by processing all the drilled holes from footprints and vias.

In conclusion, KiCad converts component footprints to Gerber code by processing each layer, translating the footprint's graphical elements (pads, lines, etc.) into Gerber commands using appropriate apertures and coordinates, while adhering to the Gerber RS-274X standard and project settings.