Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
d6fbfbc0
Commit
d6fbfbc0
authored
Jul 20, 2014
by
unknown
Committed by
jean-pierre charras
Jul 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pcbnew: fix bug when generating drill files for blind/buried vias.
parent
4c777241
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
32 deletions
+36
-32
dialog_gendrill.cpp
pcbnew/dialogs/dialog_gendrill.cpp
+26
-25
gendrill_Excellon_writer.cpp
pcbnew/exporters/gendrill_Excellon_writer.cpp
+10
-7
No files found.
pcbnew/dialogs/dialog_gendrill.cpp
View file @
d6fbfbc0
...
...
@@ -354,21 +354,23 @@ void DIALOG_GENDRILL::SetParams()
void
DIALOG_GENDRILL
::
GenDrillAndMapFiles
(
bool
aGenDrill
,
bool
aGenMap
)
{
wxString
layer_extend
;
/* added to the Board FileName to
* create FullFileName (= Board
* FileName + layer pair names) */
wxString
layername_extend
;
/* added to the Board FileName to
* create FullFileName (= Board
* FileName + layer pair names)
*/
wxString
msg
;
bool
hasBuriedVias
=
false
;
/* If true, drill files are created
* layer pair by layer pair for
* buried vias */
int
layer1
=
B_Cu
;
int
layer2
=
F_Cu
;
bool
hasBuriedVias
=
false
;
/* If true, drill files are created
* layer pair by layer pair for
* buried vias
*/
int
layer1
=
F_Cu
;
int
layer2
=
B_Cu
;
bool
gen_through_holes
=
true
;
bool
gen_NPTH_holes
=
false
;
wxString
currentWD
=
::
wxGetCwd
();
UpdateConfig
();
// set params and Save drill options
UpdateConfig
();
// set params and Save drill options
m_parent
->
ClearMsgPanel
();
...
...
@@ -392,26 +394,26 @@ void DIALOG_GENDRILL::GenDrillAndMapFiles(bool aGenDrill, bool aGenMap)
if
(
excellonWriter
.
GetHolesCount
()
>
0
)
// has holes?
{
fn
=
m_parent
->
GetBoard
()
->
GetFileName
();
layer_extend
.
Empty
();
layer
name
_extend
.
Empty
();
if
(
gen_NPTH_holes
)
{
layer_extend
<<
wxT
(
"-NPTH"
);
layer
name
_extend
<<
wxT
(
"-NPTH"
);
}
else
if
(
!
gen_through_holes
)
{
if
(
layer1
==
B
_Cu
)
layer
_extend
<<
wxT
(
"-back
"
);
if
(
layer1
==
F
_Cu
)
layer
name_extend
<<
wxT
(
"-front
"
);
else
layer_extend
<<
wxT
(
"-inner"
)
<<
layer1
;
layer
name
_extend
<<
wxT
(
"-inner"
)
<<
layer1
;
if
(
layer2
==
F
_Cu
)
layer
_extend
<<
wxT
(
"-front
"
);
if
(
layer2
==
B
_Cu
)
layer
name_extend
<<
wxT
(
"-back
"
);
else
layer_extend
<<
wxT
(
"-inner"
)
<<
layer2
;
layer
name
_extend
<<
wxT
(
"-inner"
)
<<
layer2
;
}
fn
.
SetName
(
fn
.
GetName
()
+
layer_extend
);
fn
.
SetName
(
fn
.
GetName
()
+
layer
name
_extend
);
wxString
defaultPath
=
m_plotOpts
.
GetOutputDirectory
();
if
(
defaultPath
.
IsEmpty
()
)
...
...
@@ -468,14 +470,14 @@ void DIALOG_GENDRILL::GenDrillAndMapFiles(bool aGenDrill, bool aGenMap)
gen_NPTH_holes
=
true
;
else
{
if
(
gen_through_holes
)
layer2
=
layer1
+
1
;
// prepare generation of first layer pair
if
(
gen_through_holes
)
layer2
=
layer1
+
1
;
//
done with through-board holes,
prepare generation of first layer pair
else
{
if
(
layer2
>=
F
_Cu
)
// no more layer pair to consider
if
(
layer2
>=
B
_Cu
)
// no more layer pair to consider
{
layer1
=
B
_Cu
;
layer2
=
F
_Cu
;
layer1
=
F
_Cu
;
layer2
=
B
_Cu
;
gen_NPTH_holes
=
true
;
continue
;
}
...
...
@@ -484,8 +486,7 @@ void DIALOG_GENDRILL::GenDrillAndMapFiles(bool aGenDrill, bool aGenMap)
layer2
++
;
// use next layer pair
if
(
layer2
==
m_parent
->
GetBoard
()
->
GetCopperLayerCount
()
-
1
)
layer2
=
F_Cu
;
// the last layer is always the
// Front layer
layer2
=
B_Cu
;
// the last layer is always the back layer
}
gen_through_holes
=
false
;
...
...
pcbnew/exporters/gendrill_Excellon_writer.cpp
View file @
d6fbfbc0
...
...
@@ -471,14 +471,15 @@ void EXCELLON_WRITER::BuildHolesList( int aFirstLayer,
via
->
LayerPair
(
&
new_hole
.
m_Hole_Top_Layer
,
&
new_hole
.
m_Hole_Bottom_Layer
);
// LayerPair return params with m_Hole_Bottom_Layer > m_Hole_Top_Layer
// (remember top layer = 0 and bottom layer = 31 for through hole vias)
if
(
(
new_hole
.
m_Hole_Top_Layer
<
aFirstLayer
)
&&
(
aFirstLayer
>=
0
)
)
continue
;
// Remember: top layer = 0 and bottom layer = 31 for through hole vias
// the via should be at least from aFirstLayer to aLastLayer
if
(
(
new_hole
.
m_Hole_Top_Layer
>
aFirstLayer
)
&&
(
aFirstLayer
>=
0
)
)
continue
;
// via above the first layer
if
(
(
new_hole
.
m_Hole_Bottom_Layer
>
aLastLayer
)
&&
(
aLastLayer
>=
0
)
)
continue
;
if
(
(
new_hole
.
m_Hole_Bottom_Layer
<
aLastLayer
)
&&
(
aLastLayer
>=
0
)
)
continue
;
// via below the last layer
if
(
aExcludeThroughHoles
&&
(
new_hole
.
m_Hole_Bottom_Layer
==
B_Cu
)
if
(
aExcludeThroughHoles
&&
(
new_hole
.
m_Hole_Bottom_Layer
==
B_Cu
)
&&
(
new_hole
.
m_Hole_Top_Layer
==
F_Cu
)
)
continue
;
...
...
@@ -494,7 +495,9 @@ void EXCELLON_WRITER::BuildHolesList( int aFirstLayer,
// Read and analyse pads
for
(
D_PAD
*
pad
=
module
->
Pads
();
pad
;
pad
=
pad
->
Next
()
)
{
if
(
!
aGenerateNPTH_list
&&
pad
->
GetAttribute
()
==
PAD_HOLE_NOT_PLATED
&&
!
aMergePTHNPTH
)
if
(
!
aGenerateNPTH_list
&&
pad
->
GetAttribute
()
==
PAD_HOLE_NOT_PLATED
&&
!
aMergePTHNPTH
)
continue
;
if
(
aGenerateNPTH_list
&&
pad
->
GetAttribute
()
!=
PAD_HOLE_NOT_PLATED
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment