[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: gaf.git: branch: master updated (1.5.0-20080706-207-g2a9f558)
The branch, master has been updated
via 2a9f5584219a894557aa7fd97f94a9a941c5bc1b (commit)
from a17b67c07298e707fbfa2d10f8ec18c16b0b7482 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
gnetlist/scheme/gnet-gsch2pcb.scm.in | 43 +++++++++++++++++++++------------
1 files changed, 27 insertions(+), 16 deletions(-)
=================
Commit Messages
=================
commit 2a9f5584219a894557aa7fd97f94a9a941c5bc1b
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date: Wed Oct 1 18:17:19 2008 +0100
gnetlist / gsch2pcb: Update default board to match current PCB version.
Ensures greater compatibility with layouts created using PCB from the
outset, rather than via gsch2pcb.
:100644 100644 a1f7b8b... 0e071c8... M gnetlist/scheme/gnet-gsch2pcb.scm.in
=========
Changes
=========
commit 2a9f5584219a894557aa7fd97f94a9a941c5bc1b
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date: Wed Oct 1 18:17:19 2008 +0100
gnetlist / gsch2pcb: Update default board to match current PCB version.
Ensures greater compatibility with layouts created using PCB from the
outset, rather than via gsch2pcb.
diff --git a/gnetlist/scheme/gnet-gsch2pcb.scm.in b/gnetlist/scheme/gnet-gsch2pcb.scm.in
index a1f7b8b..0e071c8 100644
--- a/gnetlist/scheme/gnet-gsch2pcb.scm.in
+++ b/gnetlist/scheme/gnet-gsch2pcb.scm.in
@@ -29,27 +29,38 @@
;;
(define gsch2pcb:write-top-header
(lambda (port)
- (display "# release: pcb 1.6.3\n" port)
- (display "PCB(\"\" 6000 5000)\n" port)
- (display "Grid(10 0 0)\n" port)
- (display "Cursor(0 0 3)\n" port)
- (display "Flags(0x000008d0)\n" port)
- (display "Groups(\"1,2,3,s:4,5,6,c:7:8:\")\n" port)
- (display "Styles(\"Signal,10,40,20:Power,25,60,35:Fat,40,60,35:Skinny,8,36,20\")\n" port)))
-
+ (display "# release: pcb 1.99x\n" port)
+ (display "# To read pcb files, the pcb version (or the" port)
+ (display " cvs source date) must be >= the file version\n" port)
+ (display "FileVersion[20070407]\n" port)
+ (display "PCB[\"\" 600000 500000]\n" port)
+ (display "Grid[10000.000000 0 0 0]\n" port)
+ (display "Cursor[0 0 0.000000]\n" port)
+ (display "PolyArea[200000000.000000]\n" port)
+ (display "Thermal[0.500000]\n" port)
+ (display "DRC[1000 1000 1000 1000 1500 1000]\n" port)
+ (display "Flags(\"nameonpcb,uniquename,clearnew,snappin\")\n" port)
+ (display "Groups(\"1,c:2,s:3:4:5:6:7:8\")\n" port)
+ (display "Styles[\"Signal,1000,3600,2000,1000:" port)
+ (display "Power,2500,6000,3500,1000:" port)
+ (display "Fat,4000,6000,3500,1000:" port)
+ (display "Skinny,600,2402,1181,600\"]\n" port)
+))
;;
;;
(define gsch2pcb:write-bottom-footer
(lambda (port)
- (display "Layer(1 \"solder\")\n(\n)\n" port)
- (display "Layer(2 \"GND-sldr\")\n(\n)\n" port)
- (display "Layer(3 \"Vcc-sldr\")\n(\n)\n" port)
- (display "Layer(4 \"component\")\n(\n)\n" port)
- (display "Layer(5 \"GND-comp\")\n(\n)\n" port)
- (display "Layer(6 \"Vcc-comp\")\n(\n)\n" port)
- (display "Layer(7 \"unused\")\n(\n)\n" port)
- (display "Layer(8 \"unused\")\n(\n)" port)
+ (display "Layer(1 \"component\")\n(\n)\n" port)
+ (display "Layer(2 \"solder\")\n(\n)\n" port)
+ (display "Layer(3 \"outline\")\n(\n)\n" port)
+ (display "Layer(4 \"GND\")\n(\n)\n" port)
+ (display "Layer(5 \"power\")\n(\n)\n" port)
+ (display "Layer(6 \"signal1\")\n(\n)\n" port)
+ (display "Layer(7 \"signal2\")\n(\n)\n" port)
+ (display "Layer(8 \"signal3\")\n(\n)\n" port)
+ (display "Layer(9 \"silk\")\n(\n)\n" port)
+ (display "Layer(10 \"silk\")\n(\n)" port)
(newline port)))
;;
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs