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
4dd8a2d5
Commit
4dd8a2d5
authored
Mar 07, 2008
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
increased the DRC spacing by 1/2 mil for freerouter
parent
f2deb11b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
specctra_export.cpp
pcbnew/specctra_export.cpp
+2
-2
No files found.
pcbnew/specctra_export.cpp
View file @
4dd8a2d5
...
@@ -957,11 +957,11 @@ void SPECCTRA_DB::FromBOARD( BOARD* aBoard ) throw( IOError )
...
@@ -957,11 +957,11 @@ void SPECCTRA_DB::FromBOARD( BOARD* aBoard ) throw( IOError )
int
curTrackWidth
=
aBoard
->
m_BoardSettings
->
m_CurrentTrackWidth
;
int
curTrackWidth
=
aBoard
->
m_BoardSettings
->
m_CurrentTrackWidth
;
int
curTrackClear
=
aBoard
->
m_BoardSettings
->
m_TrackClearence
;
int
curTrackClear
=
aBoard
->
m_BoardSettings
->
m_TrackClearence
;
// The +
1 is to give freerouter a little extra room, this is 0.1
mils.
// The +
5 is to give freerouter a little extra room, this is 0.5
mils.
// If we export without this, then on import freerouter violates our
// If we export without this, then on import freerouter violates our
// DRC checks with track to via spacing, although this could be a
// DRC checks with track to via spacing, although this could be a
// result of > testing vs. >= testing in PCBNEW's DRC.
// result of > testing vs. >= testing in PCBNEW's DRC.
double
clearance
=
scale
(
curTrackClear
+
1
);
double
clearance
=
scale
(
curTrackClear
+
5
);
STRINGS
&
rules
=
pcb
->
structure
->
rules
->
rules
;
STRINGS
&
rules
=
pcb
->
structure
->
rules
->
rules
;
...
...
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