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
bc8a3c7b
Commit
bc8a3c7b
authored
Sep 13, 2013
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Plain Diff
Add export netlist IPC-D-356 from Lorenzo Marcantonio, with very minor fixes.
parents
230c5f8f
18833703
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
0 deletions
+9
-0
wxPcbStruct.h
include/wxPcbStruct.h
+1
-0
CMakeLists.txt
pcbnew/CMakeLists.txt
+1
-0
menubar_pcbframe.cpp
pcbnew/menubar_pcbframe.cpp
+5
-0
pcbframe.cpp
pcbnew/pcbframe.cpp
+1
-0
pcbnew_id.h
pcbnew/pcbnew_id.h
+1
-0
No files found.
include/wxPcbStruct.h
View file @
bc8a3c7b
...
...
@@ -810,6 +810,7 @@ public:
bool
DoGenFootprintsReport
(
const
wxString
&
aFullFilename
,
bool
aUnitsMM
);
void
InstallDrillFrame
(
wxCommandEvent
&
event
);
void
GenD356File
(
wxCommandEvent
&
event
);
void
ToPostProcess
(
wxCommandEvent
&
event
);
void
OnFileHistory
(
wxCommandEvent
&
event
);
...
...
pcbnew/CMakeLists.txt
View file @
bc8a3c7b
...
...
@@ -155,6 +155,7 @@ set( PCBNEW_CLASS_SRCS
edit_track_width.cpp
edtxtmod.cpp
event_handlers_tracks_vias_sizes.cpp
export_d356.cpp
export_gencad.cpp
export_vrml.cpp
files.cpp
...
...
pcbnew/menubar_pcbframe.cpp
View file @
bc8a3c7b
...
...
@@ -141,6 +141,11 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
_
(
"Create a report of all modules on the current board"
),
KiBitmap
(
tools_xpm
)
);
AddMenuItem
(
fabricationOutputsMenu
,
ID_PCB_GEN_D356_FILE
,
_
(
"IPC-D-356 Netlist File"
),
_
(
"Generate IPC-D-356 netlist file"
),
KiBitmap
(
netlist_xpm
)
);
// Component File
AddMenuItem
(
fabricationOutputsMenu
,
ID_PCB_GEN_CMP_FILE
,
_
(
"&Component (.cmp) File"
),
...
...
pcbnew/pcbframe.cpp
View file @
bc8a3c7b
...
...
@@ -136,6 +136,7 @@ BEGIN_EVENT_TABLE( PCB_EDIT_FRAME, PCB_BASE_FRAME )
// menu Postprocess
EVT_MENU
(
ID_PCB_GEN_POS_MODULES_FILE
,
PCB_EDIT_FRAME
::
GenFootprintsPositionFile
)
EVT_MENU
(
ID_PCB_GEN_DRILL_FILE
,
PCB_EDIT_FRAME
::
InstallDrillFrame
)
EVT_MENU
(
ID_PCB_GEN_D356_FILE
,
PCB_EDIT_FRAME
::
GenD356File
)
EVT_MENU
(
ID_PCB_GEN_CMP_FILE
,
PCB_EDIT_FRAME
::
RecreateCmpFileFromBoard
)
EVT_MENU
(
ID_PCB_GEN_BOM_FILE_FROM_BOARD
,
PCB_EDIT_FRAME
::
RecreateBOMFileFromBoard
)
...
...
pcbnew/pcbnew_id.h
View file @
bc8a3c7b
...
...
@@ -260,6 +260,7 @@ enum pcbnew_ids
ID_PCB_GEN_POS_MODULES_FILE
,
ID_PCB_GEN_DRILL_FILE
,
ID_PCB_GEN_D356_FILE
,
ID_PCB_PAD_SETUP
,
...
...
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