Re: gEDA-user: gschem command line printing

2011-07-12 Thread Michael Theurl
Hello Chris,

That's sounds great. 
Maybe i can help you, i wrote a script to export pdfs and handbooks for 
geda/pcb projects. I Attach you the script.
I use Fedora Core 14 with the standart geda-gaf rpms.

And it works perfectly.

you need ghostscript  a project file and the createPCB.sh script

example project:
-
schematics schem1.sch schem2.sch
output-name masterboard
elements-dir ~/gaf/pcb-elements/using
-

change the path in the createPCB.sh for the print.scm to your needs.



createPCB.sh
Description: Binary data


run the script ./createPCB.sh pdf
and you get an pdf with all outputs. that you can esaylie share or print.

hopefully i could help you, just write me if you have any questions.

best regards

Michael


On Jul 12, 2011, at 8:11 AM, CoBra wrote:

 Hi everybody
 
 I'm working on a pretty big project which is essentially a Spectrum 
 compatible computer, which will be published as open source when I finish it. 
 The project is being drawn using gschem and pcb. There are 15 different 
 schematics, each on one A4 page.
 Until recently I got away with printing from the menu in gschem.
 But now, with 3 different revisions of the computer, which will be developed 
 separately into more versions, the printing seems to take just too much time.
 
 Eventually I tried the command line printing as described in the gschem FAQ, 
 but the problem is that there is no output at all, no .PS files are generated 
 whatsoever. The gschem window pops up for a very short milisecond and 
 disappears (I'm using Linux and KDE) but there is no postscript output.
 
 I have 9 different gEDA versions installed in my system (1.0.1, 1.0.2, 1.2.1, 
 1.3.1, 1.4.0, 1.5.0, geda CD Suite (0.0.2), geda-cvs (2008-07-29) and a 
 version installed with Linux (2005-03-13).
 
 I used 1.5.0 for my project. When I saw that command line printing is not 
 working in 1.5.0 I tried with 1.4.0 but it still did nothing.
 
 my print.scm file is in /opt/geda-1.5.0/share/gEDA/scheme
 
 Among other lines, it contains the following:
 
 ; filename is specified on the command line
 (gschem-postscript dummyfilename)
 
 As far as I've seen, in all the other geda versions I have, these two lines 
 are identical.
 But googling for a solution I came across people saying that supposedly there 
 should be another file, gschem-print.scm, which is missing but possibly 
 replaceable by print.scm, and that the 2 lines above should actually be 
 like this:
 
 ; filename is specified on the command line
 (gschem-print dummyfilename)
 
 
 Can anyone point me to a solution here, am I missing an .scm file, am I 
 having the wrong content in print.scm or what seems to be the problem?
 
 From gschem I can print either color or b/w with no problem at all, I use 
 customized gschemrc files in each project folder and it's great, the only 
 annoying thing is the command line printing not working.
 
 Thank you all in advance
 
 Chris
 
 
 ___
 geda-user mailing list
 geda-user@moria.seul.org
 http://www.seul.org/cgi-bin/mailman/listinfo/geda-user
 

--
[] this Email is made of 100% Recyclable elektrons 
[] url  : www.smog.at
[] mailto : michael.the...@smog.at
[] key: www.smog.at/key





___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user


Re: gEDA-user: gschem command line printing

2011-07-12 Thread Michael Theurl
here is my print.scm

-
;; $Id$
;;
;; This file may be used to print gschem schematics from the
;; command line.  Typical usage is:
;;
;;   gschem -p -o mysch.ps -s /path/to/this/file/print.scm mysch.sch
;;
;; The schematic in mysch.sch will be printed to the file mysch.ps

;; Uncomment these to override defaults when printing from the command line
;(output-orientation portrait)
;(output-type limits)
;(output-color enabled)
;(output-text ps)

; You need call this after you call any rc file function
(gschem-use-rc-values)

; filename is specified on the command line
(gschem-postscript dummyfilename)

(gschem-exit)
-


On Jul 12, 2011, at 8:11 AM, CoBra wrote:

 Hi everybody
 
 I'm working on a pretty big project which is essentially a Spectrum 
 compatible computer, which will be published as open source when I finish it. 
 The project is being drawn using gschem and pcb. There are 15 different 
 schematics, each on one A4 page.
 Until recently I got away with printing from the menu in gschem.
 But now, with 3 different revisions of the computer, which will be developed 
 separately into more versions, the printing seems to take just too much time.
 
 Eventually I tried the command line printing as described in the gschem FAQ, 
 but the problem is that there is no output at all, no .PS files are generated 
 whatsoever. The gschem window pops up for a very short milisecond and 
 disappears (I'm using Linux and KDE) but there is no postscript output.
 
 I have 9 different gEDA versions installed in my system (1.0.1, 1.0.2, 1.2.1, 
 1.3.1, 1.4.0, 1.5.0, geda CD Suite (0.0.2), geda-cvs (2008-07-29) and a 
 version installed with Linux (2005-03-13).
 
 I used 1.5.0 for my project. When I saw that command line printing is not 
 working in 1.5.0 I tried with 1.4.0 but it still did nothing.
 
 my print.scm file is in /opt/geda-1.5.0/share/gEDA/scheme
 
 Among other lines, it contains the following:
 
 ; filename is specified on the command line
 (gschem-postscript dummyfilename)
 
 As far as I've seen, in all the other geda versions I have, these two lines 
 are identical.
 But googling for a solution I came across people saying that supposedly there 
 should be another file, gschem-print.scm, which is missing but possibly 
 replaceable by print.scm, and that the 2 lines above should actually be 
 like this:
 
 ; filename is specified on the command line
 (gschem-print dummyfilename)
 
 
 Can anyone point me to a solution here, am I missing an .scm file, am I 
 having the wrong content in print.scm or what seems to be the problem?
 
 From gschem I can print either color or b/w with no problem at all, I use 
 customized gschemrc files in each project folder and it's great, the only 
 annoying thing is the command line printing not working.
 
 Thank you all in advance
 
 Chris
 
 
 ___
 geda-user mailing list
 geda-user@moria.seul.org
 http://www.seul.org/cgi-bin/mailman/listinfo/geda-user
 

--
[] this Email is made of 100% Recyclable elektrons 
[] url  : www.smog.at
[] mailto : michael.the...@smog.at
[] key: www.smog.at/key





___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user


Re: gEDA-user: pcb export eps bottom silk

2010-12-26 Thread Michael Theurl
thanxs a lot. It works now

here the working script:


pcb -x eps --element-color '#00' \
 --pin-color '#cc' \
 --layer-color-1 '#ff' \
 --layer-color-2 '#ff' \ 
 --layer-color-3 '#ff' \
 --layer-stack solderside,solder,silk \
 --eps-file BOTTOM-$PROJECT_NAME.eps \ 
 --as-shown $PROJECT_NAME.pcb

pcb -x eps --element-color '#00' \
 --pin-color '#cc' \
 --layer-color-1 '#ff' \
 --layer-color-2 '#ff' \
 --layer-color-3 '#ff' \
 --layer-stack component,silk \
 --eps-file TOP-$PROJECT_NAME.eps \
 --as-shown $PROJECT_NAME.pcb



On Mon, 2010-12-27 at 01:52 +0100, Stefan Salewski wrote:
 On Mon, 2010-12-27 at 01:27 +0100, Michael Theurl wrote:
  Hello List,
  
  I try to export the TOP and BOTTOM eps files
 
 http://geda.seul.org/wiki/geda:pcb_tips#how_can_i_print_the_bottom_side_of_the_board
 
 pcb -x eps --layer-stack silk,solderside ..
 
 The wiki  calls it solderside, not only solder.
 
 
 
 
 
 ___
 geda-user mailing list
 geda-user@moria.seul.org
 http://www.seul.org/cgi-bin/mailman/listinfo/geda-user
 




___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user


gEDA-user: vias clear soldermask

2010-11-26 Thread Michael Theurl
Hello List,

I have an question about the vias in pcb.
If i would make an area of vias for breakout stuff, and i want to keep the 
solder mask away from this vias. How can i make that ?
is there an way in the gui? or can i add the clear mil in the pcb file with my 
text editor ?

thanxs,

Michael



___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user


gEDA-user: PCB Assembly process

2010-10-17 Thread Michael Theurl
Hello all,

I have an question for PCB board assembly company's in Europe.

At the moment i work together with PCB pool i generate with the pcb program 
gerber files and submit it via web and a 
few day's later i got my PCB :) works very nice.

Very cool stuff thanx's a lot for this wonderful and genius software.

At the moment i plan to do a produce of 400 PCB's. And let the machines the 
assembly part.

 at the moment PCB pool supports only EAGLE or TARGET files for automatic 
assembly machines. 

Is there an tutorial which information need an assembly company for part's 
placement ?
Or is there an list of assembly company's that can do this with geda PCB ?


best regards 

Michael
--
[] this Email is made of 100% Recyclable elektrons 
[] url  : www.smog.at
[] mailto : michael.the...@smog.at
[] key: www.smog.at/key





___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user


Re: gEDA-user: PCB Assembly process

2010-10-17 Thread Michael Theurl
Hy,

Thank's, so there is no magic :)

i will call him.

greets

Michael

On Oct 17, 2010, at 9:53 PM, kai-martin knaak wrote:

 Michael Theurl wrote:
 
 Is there an tutorial which information need an assembly company
 for part's placement ?
 
 The companies I worked with, were fine with the gerbers and a BOM :-)
 
 
 Or is there an list of assembly company's that can do this with
 geda PCB ?
 
 My favorite company is SRM printtechnik GmbH in Berlin. They do
 both, produce boards and populate them. Reasonable pricing, too.
 I never tried their board service, though.
 Give them a call. For population, Mr Schmidt is the one to talk to:
 http://srm-printtechnik.de/srm_kontakt_main.html
 
 ---)kaimartin(---
 -- 
 Kai-Martin Knaak
 Öffentlicher PGP-Schlüssel:
 http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0x6C0B9F53
 
 
 
 ___
 geda-user mailing list
 geda-user@moria.seul.org
 http://www.seul.org/cgi-bin/mailman/listinfo/geda-user
 

--
[] this Email is made of 100% Recyclable elektrons 
[] url  : www.smog.at
[] mailto : michael.the...@smog.at
[] key: www.smog.at/key





___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user


gEDA-user: PCB Pool

2010-05-26 Thread Michael Theurl
Hello List,

I try to change the pcb limits to meet the requirements for PCB Pool 
(www.pcb-pool.com) does anyone out there have some experience 
to adopt this values ?

thanks a lot

greets

michael
--
[] this Email is made of 100% Recyclable elektrons 
[] url  : www.smog.at
[] mailto : michael.the...@smog.at
[] key: www.smog.at/key





___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user


Re: gEDA-user: netlist PCB

2010-05-13 Thread Michael Theurl
Hy Phil,

thanxs a lot for this information. 
I found a orange pad. And now its fine.

cu

michael


On May 13, 2010, at 12:54 AM, phil wrote:

 Michael Theurl wrote:
 is there a way to check the pcb net's to find unused, shorted or strange 
 net's ? Like a electric test from/to the .pcb = .sch files ?
 
 If you have a netlist file loaded into your PCB pcb ... shorted copper should 
 appear in a different color: orange.
 
 F is the key for viewing all the copper pins/pads that are on the same net.
 
 Occassionally it seems people get stumped (like myself) by little bits of 
 copper traces hiding under pads.  It's helpful ... in this case, or as a 
 matter of routine, to turn-off the pins and pads and look for short pieces of 
 copper that don't go anywhere.
 
 Phil
 
 
 ___
 geda-user mailing list
 geda-user@moria.seul.org
 http://www.seul.org/cgi-bin/mailman/listinfo/geda-user
 

--
[] this Email is made of 100% Recyclable elektrons 
[] url  : www.smog.at
[] mailto : michael.the...@smog.at
[] key: www.smog.at/key





___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user


gEDA-user: netlist PCB

2010-05-12 Thread Michael Theurl
Hello List,

I have some strange behavior with the pcb to routing net's. 
On the DRC check it is all fine but the Yellow Rat lines do some shorting 
stuff. in the PCB layout. And i'am wondering why this comes together. If i 
check the project.net file it looks all fine ? there are no shorts !!

is there a way to check the pcb net's to find unused, shorted or strange net's 
? Like a electric test from/to the .pcb = .sch files ?

i use the following version:

PCB version 20091103
gEDA/gschem version 1.6.0.20091004
On a Mac os X 10.6.3

thanx's a lot

michael
--
[] this Email is made of 100% Recyclable elektrons 
[] url  : www.smog.at
[] mailto : michael.the...@smog.at
[] key: www.smog.at/key





___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user


gEDA-user: Multicomp Footprint SD/MMC slot

2010-03-17 Thread Michael Theurl
Hello List,

I'm new to pcb and looking for an footprint for Multicomp SD/MMC
Cardslot. First question is this the right place to ask for this ?

This is the exact part type: Multicomp SDAMB-01215BT00
Details link: http://octopart.com/sdamb-01215bt00-multicomp-5438442

hopefully someone out there had a nice footprint :)

thanxs a lot

michael





___
geda-user mailing list
geda-user@moria.seul.org
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user