-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from timburke/feature-bommatch
Update MoMo Type System and PCB Build System
- Loading branch information
Showing
79 changed files
with
17,933 additions
and
1,214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "1.0.10" | ||
__version__ = "1.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
from command import Command | ||
from pymomo.commander.exceptions import * | ||
import base64 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
{ | ||
"templates": | ||
{ | ||
"two_layer": | ||
{ | ||
"layers": | ||
{ | ||
"Top Solderpaste Layer": | ||
{ | ||
"extension": "crm", | ||
"program_layers": ["tCream"], | ||
"type": "gerber", | ||
"remove": "gpi" | ||
}, | ||
|
||
"Top Silkscreen Layer": | ||
{ | ||
"extension": "plc", | ||
"program_layers": ["Dimension", "tPlace", "tNames"], | ||
"type": "gerber", | ||
"remove": "gpi" | ||
}, | ||
|
||
"Top Copper Layer": | ||
{ | ||
"extension": "cmp", | ||
"program_layers": ["Top", "Pads", "Vias"], | ||
"type": "gerber", | ||
"remove": "gpi" | ||
}, | ||
|
||
"Bottom Copper Layer": | ||
{ | ||
"extension": "sol", | ||
"program_layers": ["Bottom", "Pads", "Vias"], | ||
"type": "gerber", | ||
"remove": "gpi" | ||
}, | ||
|
||
"Top Soldermask Layer": | ||
{ | ||
"extension": "stc", | ||
"program_layers": ["tStop"], | ||
"type": "gerber", | ||
"remove": "gpi" | ||
}, | ||
|
||
"Bottom Soldermask Layer": | ||
{ | ||
"extension": "sts", | ||
"program_layers": ["bStop"], | ||
"type": "gerber", | ||
"remove": "gpi" | ||
}, | ||
|
||
"Drill Information": | ||
{ | ||
"extension": "drd", | ||
"program_layers": ["Drills", "Holes"], | ||
"type": "excellon", | ||
"remove": "dri" | ||
} | ||
}, | ||
|
||
"assembly": | ||
{ | ||
"program_layers": ["tPlace", "tNames", "tDocu", "Document", "Reference","Dimension"], | ||
"type": "drawing", | ||
"extension": "ps" | ||
}, | ||
|
||
"description": "Two layer board, Top silkscreen only, Soldermask on both sides" | ||
} | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
""" | ||
A package for managing bills of materials and pcb fabrication | ||
Methods and objects for creating and pricing bills of materials | ||
as well as automatically generating gerber files for pcb fabrication. | ||
- The CircuitBoard object provides a way to generate BOMs and production | ||
files for pcb fabrication from ECAD files | ||
- various BOM pricing and matching engines like OctopartMatcher allow you | ||
to see how much your BOM would cost in different quantities. | ||
""" | ||
|
||
_name_ = "pcb" | ||
|
||
|
||
#Add in required types that we need | ||
import types | ||
import pymomo.utilities.typedargs | ||
pymomo.utilities.typedargs.type_system.load_type_module(types) | ||
|
||
from match_engines import * | ||
from board import CircuitBoard |
Oops, something went wrong.