--- In [email protected], "c.sargiano" <[EMAIL PROTECTED]> wrote:
>
> Hi, thanks for your quickly response.
> 
> In office we have mingw and msys environnement. I change the makefile 
> an replace cc with gcc, and then I compile(I install bison also). Now 
> we have the executables e2net.exe e2sch.exe and ppedif.exe files, and I 
> don't now how can I use this files to import the netlist in kicad. 
> Maybe you have an idea??
> Thank's again
>
For each design KiCad needs a .pro project file(see below). If
you just start kicad and let it do a .pro file, you would then
have to add the libraries imported from OrCad and probably
remove the default ones (EEschema/Preferences/Libs an Dir).
Note: the .sch file generated mentions the referenced libs.
Kicad needs to change to be more friendly for import and
not use the default installed libs and Path. I plan to look
into this if the KiCad gods enable svn write priviledges.

Note: I just found a bug: zero length pins are missing from
the power symbols: CAPSYM/VCC_BAR, GND_SIGNAL. Workaround:
edit symbols & add pin.

Here is what I do for testing:

mkdir -p /opt/kicad_designs/test
cd ~/svn/edif2kicad
make
e2sch examples/eyespy
cp *.lib /opt/kicad_designs/test/
cp examples/eyespy.sch /opt/kicad_designs/test/
with the following file: /opt/kicad_designs/test/eyespy.pro

update=16/10/2007-15:43:34
last_client=eeschema
[general]
version=1
RootSch=eyespy.sch
BoardNm=eyespy.brd
[eeschema]
version=1
LibDir=/opt/kicad_designs/test
NetFmt=1
HPGLSpd=20
HPGLDm=15
HPGLNum=1
offX_A4=0
offY_A4=0
offX_A3=0
offY_A3=0
offX_A2=0
offY_A2=0
offX_A1=0
offY_A1=0
offX_A0=0
offY_A0=0
offX_A=0
offY_A=0
offX_B=0
offY_B=0
offX_C=0
offY_C=0
offX_D=0
offY_D=0
offX_E=0
offY_E=0
RptD_X=0
RptD_Y=100
RptLab=1
SimCmd=
UseNetN=0
LabSize=60
[eeschema/libraries]
LibName1=CAPSYM
LibName2=RIPPER_LIBRARY
LibName3=CONNECTOR
LibName4=DISCRETE
LibName5=LIBRARY1
LibName6=REGULATOR


Reply via email to