Skip to content

Commit 1502f41

Browse files
authored
Merge pull request #4 from sparkfun/release_candidate
v1.0.2
2 parents 58aa4cc + 9bcb084 commit 1502f41

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

SparkFunKiCadCAMmer/cammer/cammer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ def startCAMmer(self, args, board=None, logger=None):
116116
"B.Silkscreen": "GBO",
117117
"Edge.Cuts": "GKO"
118118
}
119-
for i in range(1,31): # Add 30 internal copper layers
120-
file_ext["In{}.Cu".format(i)] = "GL{}".format(i)
119+
for i in range(1,31): # Add 30 internal copper layers. Convert In1.Cu to GL2 - see #3
120+
file_ext["In{}.Cu".format(i)] = "GL{}".format(i + 1)
121121

122122
# Start plotting: https://gitlab.com/kicad/code/kicad/-/blob/master/demos/python_scripts_examples/plot_board.py
123123

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.1"
1+
__version__ = "1.0.2"

0 commit comments

Comments
 (0)