Re: gEDA-user: add Logo to silkscreen in pcb, exactly how to insert the EPS?

2009-07-21 Thread andrew whyte
Apologies if this post is a little late. I realise that others have answered this, but I have some more info, and more questions... I have used pstoedit to creat pcb logos in the silk screen, I made my logo into a black and white only version using inkscape(I also had to convert the whole

Re: gEDA-user: add Logo to silkscreen in pcb, exactly how to insert the EPS?

2009-07-21 Thread Mark Rages
On Tue, Jul 21, 2009 at 2:39 AM, andrew whytea...@paramita-electronics.com wrote: Apologies if this post is a little late.  I realise that others have answered this, but I have some more info, and more questions... I have used pstoedit to creat pcb logos in the silk screen,   I made my logo

Re: gEDA-user: edit selection

2009-07-21 Thread Kai-Martin Knaak
On Mon, 20 Jul 2009 20:20:32 -0700, Josh Jordan wrote: I want to move a component to an absolute location.. You may use the MoveObject command. See the wiki for the details: http://geda.seul.org/wiki/geda:pcb_tips#how_do_i_move_objects_by_an_arbitrary_distance There is no GUI way to this, yet.

Re: gEDA-user: Timing in Icarus Verilog not working

2009-07-21 Thread Philipp Klaus Krause
I now found a working alternative: module and2 (A, B, O); input A ; input B ; output O ; and #(3.62329, 4.98817) (O, A, B); endmodule Philipp ___ geda-user mailing list geda-user@moria.seul.org

gEDA-user: gnetlist/Scheme tutorial

2009-07-21 Thread John Doty
Here, as promised, is the text of the first installment of my tutorial. Text only, I still gotta figure out the wiki. Comments are welcome. Don't Panic! If you've never written a program in Lisp, it looks daunting. But it's a lot easier than it looks. Wrap a little bit of syntactic sugar

Re: gEDA-user: gnetlist/Scheme tutorial

2009-07-21 Thread Peter TB Brett
On Tuesday 21 July 2009 18:45:55 John Doty wrote: Here, as promised, is the text of the first installment of my tutorial. Text only, I still gotta figure out the wiki. Comments are welcome. I would teach people the: (define (add1 x) (+ x 1)) Syntax for function definition before

gEDA-user: comments in gaf source

2009-07-21 Thread Kai-Martin Knaak
In the c-code of gaf I see some non standard comment syntax. E.g /*! whatever */ or /* ! \brief foobar */ or /** @brief foo * * @param bar */ or even more detailed: /*! \file foo.c * \brief bar * * lots-of-commenting-text * * \image foobar.png * \image latex barfoo.pdf page

Re: gEDA-user: gnetlist/Scheme tutorial

2009-07-21 Thread John Doty
On Jul 21, 2009, at 2:10 PM, Peter TB Brett wrote: On Tuesday 21 July 2009 18:45:55 John Doty wrote: Here, as promised, is the text of the first installment of my tutorial. Text only, I still gotta figure out the wiki. Comments are welcome. I would teach people the: (define (add1 x)

Re: gEDA-user: comments in gaf source

2009-07-21 Thread Stuart Brorson
DOxygen http://www.stack.nl/~dimitri/doxygen/ Stuart On Tue, 21 Jul 2009, Kai-Martin Knaak wrote: In the c-code of gaf I see some non standard comment syntax. E.g /*! whatever */ or /* ! \brief foobar */ or /** @brief foo * * @param bar */ or even more detailed: /*!

Re: gEDA-user: Timing in Icarus Verilog not working

2009-07-21 Thread Stephen Williams
What verion of Icarus Verilog are you using? Icarus Verilog doesn't support specify blocks before the 0.9 release. I think with the 0.9 release, it is default turned off, you enable it with -gspecify. Philipp Klaus Krause wrote: I want to model gate delays, but everything happens without delay.

gEDA-user: merge multi symbol components

2009-07-21 Thread Kai-Martin Knaak
As you probably know by now, I try to improve the way gnetlist handles multi part symbols. As a first step, the list of symbols is sorted according to refdes. Next would be a merge of symbols with the same refdes. This would also be the right place to check for conflicting definitions of pins

Re: gEDA-user: merge multi symbol components

2009-07-21 Thread DJ Delorie
Note that I have at least one schematic where the merging of the symbols would have duplicated pins; this is intentional and they're supposed to be connected together. Currently I end up with two separate netlists, which I have to merge with a separate program.