1.5 The minimum manufacturing data pack
A manufacturing line runs primarily on data. The most common cause of production delays is not machine failure or component shortages—it is incomplete or ambiguous documentation. Think of the Manufacturing Data Pack as the formal contract between the engineering team and the factory. When the data is unclear, the factory is forced to either guess (which introduces high risk) or stop production entirely (which incurs high costs).
To successfully launch a build, you must provide a specific set of files that clearly define the physical, electrical, and commercial reality of the product.
1. The bill of materials (BOM)
Section titled “1. The bill of materials (BOM)”Definition: The recipe. It lists every single component required to build one unit.
The engineering reality
Section titled “The engineering reality”The BOM drives the entire supply chain. It must be provided in a machine-readable format (like Excel or CSV), rather than a static PDF.
- Must Include: Manufacturer Part Number (MPN), Quantity Per Board, Reference Designator (e.g. R1, C4), and a clear Description.
- The Risk: When the MPN is ambiguous (e.g. simply listing “10k Resistor”), the procurement team is forced to guess. They will likely choose the cheapest option available, which may have the wrong tolerance or power rating for your specific circuit.
Pro-Tip: Always try to include a column for “Alternates/Substitutes.” Providing a pre-approved alternate allows the factory to proceed without pausing for engineering approval if the primary part is out of stock.
2. Gerber files (RS-274x)
Section titled “2. Gerber files (RS-274x)”Definition: The blueprints. These are vector files that explicitly tell the PCB fabrication machines where to etch copper, drill holes, and print solder mask.
The engineering reality
Section titled “The engineering reality”Gerbers are layer-specific. You need to provide separate, clearly named files for the Top Copper, Bottom Copper, Drill Hit Data, Solder Paste, and Silkscreen layers.
- The Risk: Without the precise Solder Paste layer data, the factory cannot cut a stencil, and SMT assembly simply cannot start. Similarly, when the Drill file is separated from the Drill Tool list, the factory might drill holes with incorrect diameters.
3. Centroid file (pick & place / CPL)
Section titled “3. Centroid file (pick & place / CPL)”Definition: The navigation map. This text file contains the exact coordinate position (X, Y) and rotation (Theta) of every single component on the board.
The engineering reality
Section titled “The engineering reality”SMT machines are robotic systems; they do not “see” the board in a holistic way. Instead, they move to specified coordinates relative to a designated origin point (0,0).
- The Risk: When the rotation data is incorrect (for instance, specifying 90° instead of -90°), polarized components like diodes and ICs will be placed backwards, leading to immediate short circuits upon power-up.
4. Assembly drawings
Section titled “4. Assembly drawings”Definition: The visual guide. Usually a PDF showing component locations, polarity markings, and any special manual assembly instructions (e.g. “Install J2 after cleaning”).
The engineering reality
Section titled “The engineering reality”This document is primarily for the human operators. Quality Inspectors use it to visually verify what the automated machines did. It acts as the final check against “invisible” data errors.
- The Risk: When polarity marks on the physical silkscreen are covered by the component body itself, the Assembly Drawing becomes the only reliable reference for verifying correct orientation during inspection.
5. Readme / fabrication notes
Section titled “5. Readme / fabrication notes”Definition: The metadata. A text or PDF file detailing the specific board physical requirements: PCB thickness (1.6mm is standard, but should still be stated), copper weight (1oz vs 2oz), surface finish (ENIG vs HASL), and solder mask color.
The engineering reality
Section titled “The engineering reality”Without this defining file, a Fab House will naturally default to the cheapest standard options available.
- The Risk: When Impedance Control is required for high-speed signals but not explicitly stated in the notes, the Fab House may not apply the necessary trace width precision, which can cause your radio or Wi-Fi circuits to fail.

The risk of revision control
Section titled “The risk of revision control”The most dangerous file in a factory environment is often an outdated version of the correct file.
Every file name should contain a clear revision code (e.g. ProjectX_BOM_Rev02). For example, imagine you update a connector on the board creating Revision 2, but you mistakenly send the Revision 1 BOM to the factory. The purchasing team will buy the old connector, which will not fit the new bare boards, resulting in scrapped material and lost time.
Final Checkout: The minimum manufacturing data pack
Section titled “Final Checkout: The minimum manufacturing data pack”| Document | Format | Function | Critical Check |
|---|---|---|---|
| BOM | .xls / .csv | Procurement | Are MPNs perfectly valid and currently in stock? |
| Gerbers | RS-274X | Fabrication | Check layer alignment in a dedicated Gerber viewer. |
| Centroid | .csv / .txt | Assembly | Verify the origin (0,0) perfectly matches the Gerbers. |
| Assembly Dwg | Inspection | Is Pin 1 clearly and unambiguously marked? | |
| Fab Notes | .pdf / .txt | Specifications | Are the PCB thickness and surface finish explicitly defined? |