Date:2011-03-07 18:42:44 (13 years 21 days ago)
Author:Werner Almesberger
Commit:5b14b505b421f1458fa165f27b1a0bdcbcd3486d
Message:uart/: great renaming to nxuart, including references in Makefile

Files: nxuart/Makefile (1 diff)
nxuart/bom/Makefile (1 diff)
nxuart/bom/dk/Makefile (1 diff)
nxuart/bom/dk/digi-key.equ (1 diff)
nxuart/bom/dk/dk-db.pl (1 diff)
nxuart/bom/uart.equ (1 diff)
nxuart/bom/uart.inv (1 diff)
nxuart/bom/uart.sub (1 diff)
nxuart/cam/Makefile (1 diff)
nxuart/cam/mkmk (1 diff)
nxuart/fw/Makefile (1 diff)
nxuart/fw/uart.c (1 diff)
nxuart/nxuart.brd (1 diff)
nxuart/nxuart.cmp (1 diff)
nxuart/nxuart.pro (1 diff)
nxuart/nxuart.sch (1 diff)
uart/Makefile (1 diff)
uart/bom/Makefile (1 diff)
uart/bom/dk/Makefile (1 diff)
uart/bom/dk/digi-key.equ (1 diff)
uart/bom/dk/dk-db.pl (1 diff)
uart/bom/uart.equ (1 diff)
uart/bom/uart.inv (1 diff)
uart/bom/uart.sub (1 diff)
uart/cam/Makefile (1 diff)
uart/cam/mkmk (1 diff)
uart/fw/Makefile (1 diff)
uart/fw/uart.c (1 diff)
uart/uart.brd (1 diff)
uart/uart.cmp (1 diff)
uart/uart.pro (1 diff)
uart/uart.sch (1 diff)

Change Details

nxuart/Makefile
1PLOT_BRD = pcbnew --plot=ps_a4 --ps-pads-drill-opt=none --fill-all-zones
2
3NAME = nxuart
4
5.PHONY: all sch brd front back clean
6
7all:
8        @echo "make what ? target: sch brd front back clean"
9        @exit 1
10
11sch:
12        eeschema `pwd`/$(NAME).sch
13
14brd:
15        pcbnew `pwd`/$(NAME).brd
16
17front: $(NAME)-Front.ps
18        lpr $<
19
20back: $(NAME)-Back.ps
21        lpr $<
22
23%-Front.ps: %.brd
24        $(PLOT_BRD) -l Front --mirror $<
25
26%-Back.ps: %.brd
27        $(PLOT_BRD) -l Back $<
28
29clean:
30        rm -f $(NAME)-Front.ps $(NAME)-Back.ps
31        rm -f $(NAME).drl $(NAME)-PCB_Edges.gbr
nxuart/bom/Makefile
1BOOM=PATH=/home/moko/svn.openmoko.org/trunk/eda/boom:../boom:$$PATH boom
2
3BOOM2=../../../eda-tools/boom
4BOOM_CONFIG=$(BOOM2)/boom-config
5
6KITS=1
7
8EQU=uart.equ dk/digi-key.equ $(shell $(BOOM_CONFIG) equ)
9INV=uart.inv dk/digi-key.inv $(shell $(BOOM_CONFIG) inv)
10DSC=dk/digi-key.dsc $(shell $(BOOM_CONFIG) dsc)
11CHR=$(shell $(BOOM_CONFIG) chr)
12
13
14.PHONY: all again spotless
15.PRECIOUS: %.par %.lst
16
17all: uart.ord
18
19again:
20        $(MAKE) spotless
21        $(MAKE) all
22
23%.ord: %.par $(INV) $(EQU)
24        $(BOOM) part2order $(KITS) $^ >$@ || { rm -f $@; exit 1; }
25
26%.par: $(EQU) $(INV) $(CHR) %.lst uart.sub
27        $(BOOM) bom2part $^ >$@ || { rm -f $@; exit 1; }
28
29dk/digi-key.inv:
30        $(MAKE) -C dk digi-key.inv
31
32dk/digi-key.dsc:
33        $(MAKE) -C dk digi-key.dsc
34
35%.lst: ../*.sch ../*.cmp
36        eeschema --bom `pwd`/../$*.sch
37        mv ../$*.lst .
38
39show-%: %.ord $(DSC)
40        grep -vw UART $< | $(BOOM) prettyord -t - $(DSC) | \
41          sed 's/^... //'
42
43spotless:
44        $(MAKE) -C dk spotless
45        rm -f uart.lst uart.par uart.ord
nxuart/bom/dk/Makefile
1CACHE=query.data
2
3.PHONY: update regen regenerate clean spotless
4
5all: digi-key.dsc digi-key.inv
6
7$(CACHE): digi-key.equ
8        awk '/^#END/ { exit } /^DIGI-KEY / { print $$2 }' \
9          digi-key.equ | \
10          perl ./dk-db.pl query \
11          `[ -r $(CACHE) ] && echo '' -i $(CACHE)` >_$@ || \
12          { rm -f $@ _$@; exit 1; }
13        mv _$@ $@
14
15digi-key.dsc: $(CACHE)
16        perl ./dk-db.pl dsc $(CACHE) >$@ || { rm -f $@; exit 1; }
17
18digi-key.inv: $(CACHE)
19        perl ./dk-db.pl inv $(CACHE) >$@ || { rm -f $@; exit 1; }
20
21update:
22        $(MAKE) clean all
23
24regen regenerate:
25        rm -f digi-key.dsc digi-key.inv
26        $(MAKE) all
27
28clean:
29        rm -f $(CACHE) _$(CACHE)
30
31#
32# we don't do a "make clean" on "make spotless", so that things like "make
33# optimist" don't erase the cache.
34#
35
36spotless:
37        rm -f digi-key.dsc digi-key.inv _$(CACHE)
nxuart/bom/dk/digi-key.equ
1#EQU
2
3# MCU
4
5DIGI-KEY ATMEGA48-20MMU-ND ATMEL ATMEGA48-20MMU
6
7# LEDs
8
9DIGI-KEY 160-1436-1-ND LITE-ON LTST-C190KRKT
10
11# Header
12
13DIGI-KEY 3M9468-ND 3M 961103-5604-AR
nxuart/bom/dk/dk-db.pl
1#!/usr/bin/perl
2
3sub rows
4{
5    local $s = $_[0];
6    my @res = ();
7
8    while ($s =~ m#.*?<tr>(.*?)</tr>#) {
9    push(@res, $1);
10    $s = $';
11    }
12    return @res;
13}
14
15
16sub cols
17{
18    local $s = $_[0];
19    my @res = ();
20
21    while ($s =~ m#.*?<td[^>]*>(.*?)</td>#) {
22    push(@res, $1);
23    $s = $';
24    }
25    return @res;
26}
27
28
29sub usage
30{
31    print STDERR "usage: $0 (query [-i cache_file] | dsc | inv) [file ...]\n";
32    exit(1);
33}
34
35
36$mode = shift @ARGV;
37&usage unless $mode eq "query" || $mode eq "dsc" || $mode eq "inv";
38
39if ($mode eq "query") {
40    if ($ARGV[0] eq "-i") {
41    shift @ARGV;
42    $name = shift @ARGV;
43    open(OLD, $name) || die "$name: $!";
44    $q = join("", <OLD>);
45    ($old = $q) =~ tr/\r\n//d;
46    close OLD;
47    }
48
49    while (<>) {
50    chop;
51    s/#.*//;
52    next if /^\s*$/;
53    next if /^\s/;
54    s/\s.*//;
55    next if $old =~ m#align=right>Digi-Key Part Number</th><td>$_</td#;
56    push(@pn, $_);
57    }
58
59    if (0+@pn) {
60    $cmd = "wget -nv -O - ".join(" ",
61      map
62      "http://search.digikey.com/scripts/DkSearch/dksus.dll?Detail\\&name=$_",
63      @pn);
64    $q .= `$cmd`;
65    }
66
67    print $q;
68    exit;
69}
70
71
72$q = join("", <>);
73$q =~ tr/\r\n//d;
74
75print "#DSC\n" if $mode eq "dsc";
76print "#INV\n" if $mode eq "inv";
77print "# MACHINE-GENERATED. DO NOT EDIT !\n";
78print "# ", `date -u`;
79
80for (split(/<!DOCTYPE HTML/, $q)) {
81    next unless m#align=right>Digi-Key Part Number</th><td>([^<]+)</td#;
82    $pn = $1;
83    $qty = 0;
84    if (m#align=right>Quantity Available</th><td[^>]*>([0-9,]+)<#) {
85    ($qty = $1) =~ tr/,//d;
86    }
87    next unless m#align=right>Description</th><td>(.*?)</td#;
88    $dsc = $1;
89    next unless m#<table.*<th>Price Break<(.*?)</table>#;
90    if ($mode eq "dsc") {
91    print "DIGI-KEY $pn $dsc\n";
92    next;
93    }
94    print "DIGI-KEY $pn $qty USD";
95    for (&rows($1)) {
96    @c = &cols($_);
97    next unless $c[0] =~ /^[0-9,]+$/;
98    next unless $c[1] =~ /^[0-9.]+$/;
99    $c[0] =~ tr/,//d;
100    $c[1] =~ tr/,//d; # let's hope we don't need this one often :)
101    $c[1] =~ s/0+$// if $c[1] =~ /\./;
102    print " $c[0] $c[1]";
103    }
104    print "\n";
105}
nxuart/bom/uart.equ
1#EQU
2
3ATMEL ATMEGA48-MMU ATMEL ATMEGA48-20MMU
4
5UART 3M_961103-5604-AR 3M 961103-5604-AR
nxuart/bom/uart.inv
1#INV
2
3# Pseudo-inventory for PCB features.
4
5UART 8:10-card 999999 USD 1 0
6UART PAD_2mm 999999 USD 1 0
nxuart/bom/uart.sub
1#SUB
2
3# From ben-wpan/bom, which in turn inherited it from gta02-core
4
5-> T=unknown
6
7R[0-9P]* { # also handle RP...
8    -> T=R
9    VAL=*[0-9] -> R=${VAL}R
10    VAL=$R -> R=$VAL
11# -> TOL=5%
12    FN=$% -> TOL=$FN
13}
14
15RP[0-9]* {
16    -> T=RA
17    RP220[123] -> ARRAY=4
18    # the other parameters have already been taken care of by R*
19}
20
21C[0-9]* {
22    -> T=C
23    VAL=*F -> C=$VAL
24    VAL=(*F)/RF -> C=$VAL:1 X=RF # *F/RF "wins" against the *F above
25    FN=*V -> V=>=$FN
26}
27
28L[0-9]* {
29    -> T=L
30    VAL=*H -> L=$VAL
31    FN=*A -> I=>=$FN
32}
33
34B[0-9]* {
35    -> T=FILTER M=BEAD
36    VAL=$R -> R=$VAL
37    FN=*A -> I=$FN
38    FN=*R -> Rdc=$FN
39    FN=0.45R -> Rdc=450mR # hack
40}
41
42D[0-9]* {
43    -> T=D
44    VAL=*F { # heuristic to detect TVS
45    -> M=TVS
46    VAL=*F -> C=<=$VAL
47    FN=(*V)ac -> Vac=$FN:1
48    FN=(*V)dc -> Vdc=$FN:1
49
50    #
51    # Hack: some companies specify the class of varistors with Vdc = 9 V
52    # as Vac = 6.5 V while others use Vac = 7 V. Sometimes, Vac is even
53    # omitted entirely.
54    #
55    # Here, we work around the issue that Karmax use Vac = 6.5 V,
56    # Cooper/Bussmann use Vac = 7V if at all, and out schematics specify
57    # Vac = 6.5 V.
58    #
59    Vac=6.5V {
60        -> Vac=
61        -> Vdc=9V
62    }
63    }
64}
65
66VR[0-9]* -> T=D M=TVS {
67    VAL=$V -> Vdc=$VAL # neither clean nor consistent with the above
68    FN=*F -> C=<=$FN
69}
70
71X[0-9]* {
72    -> T=XTAL
73    VAL=*Hz -> F=$VAL
74    FN=*F -> C=$FN
75    FN=*ppm -> TOL=<=$FN
76}
77
78
79FP=8:10-card -> VAL=8:10-card
80FP=PAD_2mm -> VAL=PAD_2mm
nxuart/cam/Makefile
1.PHONY: all clean
2
3NAME=nxuart
4
5all: Makefile.mkmk
6
7Makefile.mkmk: mkmk ../$(NAME).drl ../$(NAME)-PCB_Edges.gbr
8            ./mkmk
9
10../$(NAME).drl: ../$(NAME).brd
11            pcbnew --drill `pwd`/../$(NAME).brd
12
13../$(NAME)-PCB_Edges.gbr: ../$(NAME).brd
14            pcbnew --plot=gerber -l PCB_Edges `pwd`/../$(NAME).brd
15
16-include Makefile.mkmk
17
18clean::
19            rm -f Makefile.mkmk
nxuart/cam/mkmk
1#!/bin/sh
2PATH=$PATH:/home/qi/cae-tools/cameo
3PATH=$PATH:/home/moko/svn.openmoko.org/developers/werner/cncmap/gp2rml
4
5NAME=nxuart
6X=2
7Y=0
8
9cameo <<EOF
10mm
11
12gerber 35mil ../$NAME-PCB_Edges.gbr
13align 1 8.9mm 10.4mm # align relative to board corner
14translate 4mm 4mm # move to PCB zone assigned to project
15array +3mm +3mm $X $Y
16z 0 -58.9mm # board surface (tool fully retracted)
17z 1.5mm # slack for extending the tool
18z -0.8mm # board thickness
19z -0.5mm # tool extra depth
20clear
21
22excellon ../$NAME.drl
23drill 7mil 15mil # 12.5-13.5 mil drill
24optimize
25write drill.gp
26
27remainder
28mill 25mil 0.01mm # 35 mil endmill; pretend it is a little smaller,
29            # to compensate for tool/board deflections
30write mill.gp
31
32remainder
33empty
34
35gerber 45mil ../$NAME-PCB_Edges.gbr # 35 mil endmill, -10 mil deflection
36offset
37append mill.gp
38EOF
39
40gp2rml 2 0.5 0.5 mill.gp >mill.rml
41gp2rml 2 0.1 0.5 drill.gp >drill.rml
42
43
44cat <<EOF >Makefile.mkmk
45SPOOL=/home/moko/svn.openmoko.org/developers/werner/cncmap/spool/spool
46CNGT=/home/qi/cae-tools/cngt/cngt
47
48.PHONY: mill drill cng plot dplot
49
50mill:
51        PORT=/dev/ttyUSB0 \$(SPOOL) mill.rml
52
53drill:
54        PORT=/dev/ttyUSB0 \$(SPOOL) drill.rml
55
56cng:
57        \$(CNGT) -57.4 20 mill.gp
58
59plot:
60        echo 'plot "drill.gp" with points, "mill.gp" with lines' | \\
61          gnuplot -persist
62
63dplot:
64        echo 'plot "< sed /^\$\$/d drill.gp" with linespoints' | \\
65          gnuplot -persist
66
67clean::
68        rm -f mill.gp mill.rml drill.gp drill.rml
69EOF
nxuart/fw/Makefile
1CFLAGS = -g -Wall -Wshadow -Werror \
2     -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
3
4CHIP=atmega48
5
6AVR_PREFIX = $(BIN_PATH) avr-
7CC = $(AVR_PREFIX)gcc
8OBJCOPY = $(AVR_PREFIX)objcopy
9#OBJDUMP = $(AVR_PREFIX)objdump
10
11.PHONY: all upload prog
12
13all: uart.bin
14
15%.elf: %.c
16    $(CC) -mmcu=$(CHIP) -Os -o $@ $<
17
18%.bin: %.elf
19    $(OBJCOPY) -j .text -j .data -O binary $< $@
20
21upload: uart.bin
22    scp uart.bin jlime:
23
24prog:
25    ssh jlime avrdude -p atmega48 -c nanonote_uart -e -U flash:w:uart.bin:r
nxuart/fw/uart.c
1#include <stdint.h>
2
3#include <avr/io.h>
4
5#define F_CPU 1000000UL
6#include <util/delay.h>
7
8
9#define LED 2 /* PD2 */
10
11
12int main(void)
13{
14    DDRD = 1 << LED;
15    while (1) {
16        PORTD ^= 1 << LED;
17        _delay_ms(50);
18    }
19}
nxuart/nxuart.brd
1PCBNEW-BOARD Version 1 date Mon Jan 31 21:29:39 2011
2
3# Created by Pcbnew(2010-12-27 BZR 2685)-unstable
4
5$GENERAL
6LayerCount 2
7Ly 1FFF8001
8EnabledLayers 13E88001
9Links 24
10NoConn 0
11Di 54540 41785 64794 47524
12Ndraw 17
13Ntrack 130
14Nzone 0
15BoardThickness 630
16Nmodule 11
17Nnets 18
18$EndGENERAL
19
20$SHEETDESCR
21Sheet A4 11700 8267
22Title "External UART (3.3 V) as 8:10 card"
23Date "1 feb 2011"
24Rev "20110131"
25Comp "Werner Almesberger"
26Comment1 ""
27Comment2 ""
28Comment3 ""
29Comment4 ""
30$EndSHEETDESCR
31
32$SETUP
33InternalUnit 0.000100 INCH
34ZoneGridSize 250
35Layers 2
36Layer[0] Back signal
37Layer[15] Front signal
38TrackWidth 80
39TrackClearence 78
40ZoneClearence 150
41TrackMinWidth 80
42DrawSegmWidth 50
43EdgeSegmWidth 50
44ViaSize 300
45ViaDrill 100
46ViaMinSize 300
47ViaMinDrill 100
48MicroViaSize 200
49MicroViaDrill 50
50MicroViasAllowed 0
51MicroViaMinSize 200
52MicroViaMinDrill 50
53TextPcbWidth 120
54TextPcbSize 600 800
55EdgeModWidth 150
56TextModSize 600 600
57TextModWidth 120
58PadSize 800 800
59PadDrill 400
60Pad2MaskClearance 100
61AuxiliaryAxisOrg 0 0
62$EndSETUP
63
64$EQUIPOT
65Na 0 ""
66St ~
67$EndEQUIPOT
68$EQUIPOT
69Na 1 "/CLK"
70St ~
71$EndEQUIPOT
72$EQUIPOT
73Na 2 "/MISO"
74St ~
75$EndEQUIPOT
76$EQUIPOT
77Na 3 "/MOSI"
78St ~
79$EndEQUIPOT
80$EQUIPOT
81Na 4 "/SCK"
82St ~
83$EndEQUIPOT
84$EQUIPOT
85Na 5 "/nRESET"
86St ~
87$EndEQUIPOT
88$EQUIPOT
89Na 6 "/nSS"
90St ~
91$EndEQUIPOT
92$EQUIPOT
93Na 7 "GND"
94St ~
95$EndEQUIPOT
96$EQUIPOT
97Na 8 "N-000004"
98St ~
99$EndEQUIPOT
100$EQUIPOT
101Na 9 "N-000005"
102St ~
103$EndEQUIPOT
104$EQUIPOT
105Na 10 "N-000014"
106St ~
107$EndEQUIPOT
108$EQUIPOT
109Na 11 "N-000015"
110St ~
111$EndEQUIPOT
112$EQUIPOT
113Na 12 "N-000016"
114St ~
115$EndEQUIPOT
116$EQUIPOT
117Na 13 "N-000018"
118St ~
119$EndEQUIPOT
120$EQUIPOT
121Na 14 "N-000021"
122St ~
123$EndEQUIPOT
124$EQUIPOT
125Na 15 "N-000022"
126St ~
127$EndEQUIPOT
128$EQUIPOT
129Na 16 "N-000028"
130St ~
131$EndEQUIPOT
132$EQUIPOT
133Na 17 "VDD"
134St ~
135$EndEQUIPOT
136$NCLASS
137Name "Default"
138Desc "This is the default net class."
139Clearance 78
140TrackWidth 80
141ViaDia 300
142ViaDrill 100
143uViaDia 200
144uViaDrill 50
145AddNet ""
146AddNet "/CLK"
147AddNet "/MISO"
148AddNet "/MOSI"
149AddNet "/SCK"
150AddNet "/nRESET"
151AddNet "/nSS"
152AddNet "N-000004"
153AddNet "N-000005"
154AddNet "N-000014"
155AddNet "N-000015"
156AddNet "N-000016"
157AddNet "N-000018"
158AddNet "N-000021"
159AddNet "N-000022"
160AddNet "N-000028"
161$EndNCLASS
162$NCLASS
163Name "Power"
164Desc ""
165Clearance 78
166TrackWidth 90
167ViaDia 300
168ViaDrill 100
169uViaDia 200
170uViaDrill 50
171AddNet "GND"
172AddNet "VDD"
173$EndNCLASS
174$MODULE 0402
175Po 57323 44252 1800 15 4D3AED1A 4D470BA3 ~~
176Li 0402
177Sc 4D470BA3
178AR /4D47052C
179Op 0 0 0
180At SMD
181T0 0 -150 200 200 1800 40 N V 25 N"R1"
182T1 0 150 200 200 1800 40 N I 25 N"100"
183DS -354 177 -354 -177 50 21
184DS -354 -177 354 -177 50 21
185DS 354 -177 354 177 50 21
186DS 354 177 -354 177 50 21
187$PAD
188Sh "1" R 197 236 0 0 1800
189Dr 0 0 0
190At SMD N 00888000
191Ne 9 "N-000005"
192Po -196 0
193$EndPAD
194$PAD
195Sh "2" R 197 236 0 0 1800
196Dr 0 0 0
197At SMD N 00888000
198Ne 10 "N-000014"
199Po 196 0
200$EndPAD
201$EndMODULE 0402
202$MODULE 0402
203Po 56024 44252 0 15 4D3AED1A 4D470BA5 ~~
204Li 0402
205Sc 4D470BA5
206AR /4D47052E
207Op 0 0 0
208At SMD
209T0 0 -150 200 200 0 40 N V 25 N"R2"
210T1 0 150 200 200 0 40 N I 25 N"100"
211DS -354 177 -354 -177 50 21
212DS -354 -177 354 -177 50 21
213DS 354 -177 354 177 50 21
214DS 354 177 -354 177 50 21
215$PAD
216Sh "1" R 197 236 0 0 0
217Dr 0 0 0
218At SMD N 00888000
219Ne 8 "N-000004"
220Po -196 0
221$EndPAD
222$PAD
223Sh "2" R 197 236 0 0 0
224Dr 0 0 0
225At SMD N 00888000
226Ne 11 "N-000015"
227Po 196 0
228$EndPAD
229$EndMODULE 0402
230$MODULE 0402
231Po 55669 45591 2700 15 4D3AED1A 4D470BA7 ~~
232Li 0402
233Sc 4D470BA7
234AR /4D470731
235Op 0 0 0
236At SMD
237T0 0 -150 200 200 2700 40 N V 25 N"C1"
238T1 0 150 200 200 2700 40 N I 25 N"100nF"
239DS -354 177 -354 -177 50 21
240DS -354 -177 354 -177 50 21
241DS 354 -177 354 177 50 21
242DS 354 177 -354 177 50 21
243$PAD
244Sh "1" R 197 236 0 0 2700
245Dr 0 0 0
246At SMD N 00888000
247Ne 17 "VDD"
248Po -196 0
249$EndPAD
250$PAD
251Sh "2" R 197 236 0 0 2700
252Dr 0 0 0
253At SMD N 00888000
254Ne 7 "GND"
255Po 196 0
256$EndPAD
257$EndMODULE 0402
258$MODULE 8:10-card
259Po 58780 45039 0 15 4D34E84A 4D470BA8 ~~
260Li 8:10-card
261Sc 4D470BA8
262AR /4D4702F7
263Op 0 0 0
264At SMD
265T0 0 -150 200 200 0 40 N V 25 N"P1"
266T1 0 150 200 200 0 40 N I 25 N"8:10-CARD"
267DS 0 2165 0 -2165 30 21
268DS 0 -2165 2007 -2165 30 21
269DS 2007 -2165 2322 -1850 30 21
270DS 2322 -1850 2795 -1850 30 21
271DS 2795 -1850 2795 -2165 30 21
272DS 2795 -2165 3346 -2165 30 21
273DS 3346 -2165 3897 -1614 30 21
274DS 0 2165 5905 2165 30 21
275DS 3897 -1614 5905 -1614 30 21
276DS 5905 2165 5905 -1614 30 21
277DS -551 2165 -551 -2165 30 21
278$PAD
279Sh "1" R 1181 355 0 0 0
280Dr 0 0 0
281At SMD N 00808000
282Ne 5 "/nRESET"
283Po 4920 -1239
284$EndPAD
285$PAD
286Sh "2" R 1181 355 0 0 0
287Dr 0 0 0
288At SMD N 00808000
289Ne 3 "/MOSI"
290Po 4920 -806
291$EndPAD
292$PAD
293Sh "3" R 1181 355 0 0 0
294Dr 0 0 0
295At SMD N 00808000
296Ne 6 "/nSS"
297Po 4920 -373
298$EndPAD
299$PAD
300Sh "4" R 1299 354 0 0 0
301Dr 0 0 0
302At SMD N 00808000
303Ne 17 "VDD"
304Po 4979 59
305$EndPAD
306$PAD
307Sh "5" R 1181 355 0 0 0
308Dr 0 0 0
309At SMD N 00808000
310Ne 1 "/CLK"
311Po 4920 491
312$EndPAD
313$PAD
314Sh "6" R 1299 354 0 0 0
315Dr 0 0 0
316At SMD N 00808000
317Ne 7 "GND"
318Po 4979 925
319$EndPAD
320$PAD
321Sh "7" R 1181 354 0 0 0
322Dr 0 0 0
323At SMD N 00808000
324Ne 4 "/SCK"
325Po 4920 1358
326$EndPAD
327$PAD
328Sh "8" R 1181 354 0 0 0
329Dr 0 0 0
330At SMD N 00808000
331Ne 2 "/MISO"
332Po 4920 1791
333$EndPAD
334$EndMODULE 8:10-card
335$MODULE PIN_ARRAY_3X1
336Po 56457 43504 0 15 4D471131 4D470BA9 ~~
337Li PIN_ARRAY_3X1
338Cd Connecteur 3 pins
339Kw CONN DEV
340Sc 4D470BA9
341AR /4D4704D9
342Op 0 0 0
343T0 100 -850 400 400 0 60 N V 21 N"K1"
344T1 0 -850 400 400 0 60 N I 21 N"CONN_3"
345DS -1500 500 -1500 -500 60 21
346DS -1500 -500 1500 -500 60 21
347DS 1500 -500 1500 500 60 21
348DS 1500 500 -1500 500 60 21
349DS -500 -500 -500 500 60 21
350$PAD
351Sh "1" R 800 800 0 0 0
352Dr 400 0 0
353At STD N 00E0FFFF
354Ne 8 "N-000004"
355Po -1000 0
356$EndPAD
357$PAD
358Sh "2" C 800 800 0 0 0
359Dr 400 0 0
360At STD N 00E0FFFF
361Ne 7 "GND"
362Po 0 0
363$EndPAD
364$PAD
365Sh "3" C 800 800 0 0 0
366Dr 400 0 0
367At STD N 00E0FFFF
368Ne 9 "N-000005"
369Po 1000 0
370$EndPAD
371$SHAPE3D
372Na "pin_array/pins_array_3x1.wrl"
373Sc 1.000000 1.000000 1.000000
374Of 0.000000 0.000000 0.000000
375Ro 0.000000 0.000000 0.000000
376$EndSHAPE3D
377$EndMODULE PIN_ARRAY_3X1
378$MODULE 0402
379Po 55118 44685 900 15 4D3AED1A 4D472640 ~~
380Li 0402
381Sc 4D472640
382AR /4D472610
383Op 0 0 0
384At SMD
385T0 0 -150 200 200 900 40 N V 25 N"R3"
386T1 0 150 200 200 900 40 N I 25 N"68"
387DS -354 177 -354 -177 50 21
388DS -354 -177 354 -177 50 21
389DS 354 -177 354 177 50 21
390DS 354 177 -354 177 50 21
391$PAD
392Sh "1" R 197 236 0 0 900
393Dr 0 0 0
394At SMD N 00888000
395Ne 15 "N-000022"
396Po -196 0
397$EndPAD
398$PAD
399Sh "2" R 197 236 0 0 900
400Dr 0 0 0
401At SMD N 00888000
402Ne 12 "N-000016"
403Po 196 0
404$EndPAD
405$EndMODULE 0402
406$MODULE 0603
407Po 55197 45906 2700 15 4D3AED1A 4D472641 ~~
408Li 0603
409Sc 4D472641
410AR /4D47260E
411Op 0 0 0
412At SMD
413T0 0 -150 200 200 2700 40 N V 25 N"D1"
414T1 0 150 200 200 2700 40 N I 25 N"LED"
415DS -531 275 -531 -275 50 21
416DS -531 -275 531 -275 50 21
417DS 531 -275 531 275 50 21
418DS 531 275 -531 275 50 21
419$PAD
420Sh "1" R 276 354 0 0 2700
421Dr 0 0 0
422At SMD N 00888000
423Ne 15 "N-000022"
424Po -295 0
425$EndPAD
426$PAD
427Sh "2" R 276 354 0 0 2700
428Dr 0 0 0
429At SMD N 00888000
430Ne 7 "GND"
431Po 295 0
432$EndPAD
433$EndMODULE 0603
434$MODULE PAD_2mm
435Po 55512 46929 0 15 4D34EABB 4D4727A5 ~~
436Li PAD_2mm
437Sc 4D4727A5
438AR /4D472716
439Op 0 0 0
440At SMD
441T0 0 -150 200 200 0 40 N V 25 N"P3"
442T1 0 150 200 200 0 40 N I 25 N"CONN_1"
443$PAD
444Sh "1" O 786 196 0 0 0
445Dr 0 0 0
446At SMD N 00808000
447Ne 14 "N-000021"
448Po 0 0
449$EndPAD
450$EndMODULE PAD_2mm
451$MODULE PAD_2mm
452Po 55472 46614 0 15 4D34EABB 4D4727A7 ~~
453Li PAD_2mm
454Sc 4D4727A7
455AR /4D472714
456Op 0 0 0
457At SMD
458T0 0 -150 200 200 0 40 N V 25 N"P2"
459T1 0 150 200 200 0 40 N I 25 N"CONN_1"
460$PAD
461Sh "1" O 786 196 0 0 0
462Dr 0 0 0
463At SMD N 00808000
464Ne 13 "N-000018"
465Po 0 0
466$EndPAD
467$EndMODULE PAD_2mm
468$MODULE QFN28-Atmel
469Po 57008 45630 0 15 4D472F2A 4D470C12 ~~
470Li QFN28-Atmel
471Sc 4D470C12
472AR /4D4702FE
473Op 0 0 0
474At SMD
475T0 0 -150 200 200 0 40 N V 25 N"U1"
476T1 0 150 200 200 0 40 N I 25 N"ATMEGA48-MMU"
477DS -807 -807 -669 -807 50 21
478DS -807 -807 -807 -669 50 21
479DS -807 -669 -669 -807 50 21
480DS -807 807 -807 669 50 21
481DS -807 807 -669 807 50 21
482DS -669 807 -669 807 50 21
483DS 807 807 669 807 50 21
484DS 807 807 807 669 50 21
485DS 807 669 807 669 50 21
486DS 807 -807 807 -669 50 21
487DS 807 -807 669 -807 50 21
488DS 669 -807 669 -807 50 21
489$PAD
490Sh "1" R 275 94 0 0 0
491Dr 0 0 0
492At SMD N 00888000
493Ne 0 ""
494Po -806 -531
495$EndPAD
496$PAD
497Sh "2" R 275 94 0 0 0
498Dr 0 0 0
499At SMD N 00888000
500Ne 0 ""
501Po -806 -354
502$EndPAD
503$PAD
504Sh "3" R 275 95 0 0 0
505Dr 0 0 0
506At SMD N 00888000
507Ne 17 "VDD"
508Po -806 -176
509$EndPAD
510$PAD
511Sh "4" R 275 94 0 0 0
512Dr 0 0 0
513At SMD N 00888000
514Ne 7 "GND"
515Po -806 0
516$EndPAD
517$PAD
518Sh "5" R 275 95 0 0 0
519Dr 0 0 0
520At SMD N 00888000
521Ne 1 "/CLK"
522Po -806 176
523$EndPAD
524$PAD
525Sh "6" R 275 94 0 0 0
526Dr 0 0 0
527At SMD N 00888000
528Ne 0 ""
529Po -806 354
530$EndPAD
531$PAD
532Sh "7" R 275 94 0 0 0
533Dr 0 0 0
534At SMD N 00888000
535Ne 13 "N-000018"
536Po -806 531
537$EndPAD
538$PAD
539Sh "8" R 94 275 0 0 0
540Dr 0 0 0
541At SMD N 00888000
542Ne 14 "N-000021"
543Po -531 806
544$EndPAD
545$PAD
546Sh "9" R 94 275 0 0 0
547Dr 0 0 0
548At SMD N 00888000
549Ne 16 "N-000028"
550Po -354 806
551$EndPAD
552$PAD
553Sh "10" R 95 275 0 0 0
554Dr 0 0 0
555At SMD N 00888000
556Ne 0 ""
557Po -176 806
558$EndPAD
559$PAD
560Sh "11" R 94 275 0 0 0
561Dr 0 0 0
562At SMD N 00888000
563Ne 0 ""
564Po 0 806
565$EndPAD
566$PAD
567Sh "12" R 95 275 0 0 0
568Dr 0 0 0
569At SMD N 00888000
570Ne 6 "/nSS"
571Po 176 806
572$EndPAD
573$PAD
574Sh "13" R 94 275 0 0 0
575Dr 0 0 0
576At SMD N 00888000
577Ne 3 "/MOSI"
578Po 354 806
579$EndPAD
580$PAD
581Sh "14" R 94 275 0 0 0
582Dr 0 0 0
583At SMD N 00888000
584Ne 2 "/MISO"
585Po 531 806
586$EndPAD
587$PAD
588Sh "15" R 275 94 0 0 0
589Dr 0 0 0
590At SMD N 00888000
591Ne 4 "/SCK"
592Po 806 531
593$EndPAD
594$PAD
595Sh "16" R 275 94 0 0 0
596Dr 0 0 0
597At SMD N 00888000
598Ne 17 "VDD"
599Po 806 354
600$EndPAD
601$PAD
602Sh "17" R 275 95 0 0 0
603Dr 0 0 0
604At SMD N 00888000
605Ne 0 ""
606Po 806 176
607$EndPAD
608$PAD
609Sh "18" R 275 94 0 0 0
610Dr 0 0 0
611At SMD N 00888000
612Ne 7 "GND"
613Po 806 0
614$EndPAD
615$PAD
616Sh "19" R 275 95 0 0 0
617Dr 0 0 0
618At SMD N 00888000
619Ne 0 ""
620Po 806 -176
621$EndPAD
622$PAD
623Sh "20" R 275 94 0 0 0
624Dr 0 0 0
625At SMD N 00888000
626Ne 0 ""
627Po 806 -354
628$EndPAD
629$PAD
630Sh "21" R 275 94 0 0 0
631Dr 0 0 0
632At SMD N 00888000
633Ne 0 ""
634Po 806 -531
635$EndPAD
636$PAD
637Sh "22" R 94 275 0 0 0
638Dr 0 0 0
639At SMD N 00888000
640Ne 0 ""
641Po 531 -806
642$EndPAD
643$PAD
644Sh "23" R 94 275 0 0 0
645Dr 0 0 0
646At SMD N 00888000
647Ne 0 ""
648Po 354 -806
649$EndPAD
650$PAD
651Sh "24" R 95 275 0 0 0
652Dr 0 0 0
653At SMD N 00888000
654Ne 0 ""
655Po 176 -806
656$EndPAD
657$PAD
658Sh "25" R 94 275 0 0 0
659Dr 0 0 0
660At SMD N 00888000
661Ne 5 "/nRESET"
662Po 0 -806
663$EndPAD
664$PAD
665Sh "26" R 95 275 0 0 0
666Dr 0 0 0
667At SMD N 00888000
668Ne 10 "N-000014"
669Po -176 -806
670$EndPAD
671$PAD
672Sh "27" R 94 275 0 0 0
673Dr 0 0 0
674At SMD N 00888000
675Ne 11 "N-000015"
676Po -354 -806
677$EndPAD
678$PAD
679Sh "28" R 94 275 0 0 0
680Dr 0 0 0
681At SMD N 00888000
682Ne 12 "N-000016"
683Po -531 -806
684$EndPAD
685$PAD
686Sh "29" R 944 944 0 0 0
687Dr 0 0 0
688At SMD N 00808000
689Ne 7 "GND"
690Po 0 0
691$EndPAD
692$PAD
693Sh "" R 315 315 0 0 0
694Dr 0 0 0
695At SMD N 00080000
696Ne 0 ""
697Po -196 196
698$EndPAD
699$PAD
700Sh "" R 315 315 0 0 0
701Dr 0 0 0
702At SMD N 00080000
703Ne 0 ""
704Po -196 -196
705$EndPAD
706$PAD
707Sh "" R 315 315 0 0 0
708Dr 0 0 0
709At SMD N 00080000
710Ne 0 ""
711Po 196 196
712$EndPAD
713$PAD
714Sh "" R 315 315 0 0 0
715Dr 0 0 0
716At SMD N 00080000
717Ne 0 ""
718Po 196 -196
719$EndPAD
720$EndMODULE QFN28-Atmel
721$MODULE PAD_2mm
722Po 56417 46929 0 15 4D34EABB 4D474F35 ~~
723Li PAD_2mm
724Sc 4D474F35
725AR /4D47292F
726Op 0 0 0
727At SMD
728T0 0 -150 200 200 0 40 N V 25 N"P4"
729T1 0 150 200 200 0 40 N I 25 N"CONN_1"
730$PAD
731Sh "1" O 786 196 0 0 0
732Dr 0 0 0
733At SMD N 00808000
734Ne 16 "N-000028"
735Po 0 0
736$EndPAD
737$EndMODULE PAD_2mm
738$DRAWSEGMENT
739Po 0 55039 41811 58228 41811 50
740De 28 0 900 0 0
741$EndDRAWSEGMENT
742$DRAWSEGMENT
743Po 0 54646 42205 55039 41812 50
744De 28 0 900 0 0
745$EndDRAWSEGMENT
746$DRAWSEGMENT
747Po 0 55118 47205 55197 47205 50
748De 28 0 900 0 0
749$EndDRAWSEGMENT
750$DRAWSEGMENT
751Po 0 54646 46732 55118 47204 50
752De 28 0 900 0 0
753$EndDRAWSEGMENT
754$DRAWSEGMENT
755Po 0 54646 46732 54646 42205 50
756De 28 0 900 0 0
757$EndDRAWSEGMENT
758$DRAWSEGMENT
759Po 0 58228 42874 58228 41811 50
760De 28 0 900 0 0
761$EndDRAWSEGMENT
762$TEXTPCB
763Te "110131"
764Po 59528 43425 500 500 100 0
765De 15 1 0 Normal
766$EndTEXTPCB
767$TEXTPCB
768Te "TGR"
769Po 56497 42519 600 600 120 0
770De 15 1 0 Normal
771$EndTEXTPCB
772$DRAWSEGMENT
773Po 0 60788 42874 58229 42874 50
774De 28 0 900 0 0
775$EndDRAWSEGMENT
776$DRAWSEGMENT
777Po 0 55197 47203 64686 47203 50
778De 28 0 900 0 0
779$EndDRAWSEGMENT
780$DRAWSEGMENT
781Po 0 61103 43189 60788 42874 50
782De 28 0 900 0 0
783$EndDRAWSEGMENT
784$DRAWSEGMENT
785Po 0 61575 43189 61103 43189 50
786De 28 0 900 0 0
787$EndDRAWSEGMENT
788$DRAWSEGMENT
789Po 0 61575 42874 61575 43189 50
790De 28 0 900 0 0
791$EndDRAWSEGMENT
792$DRAWSEGMENT
793Po 0 62127 42874 61575 42874 50
794De 28 0 900 0 0
795$EndDRAWSEGMENT
796$DRAWSEGMENT
797Po 0 62678 43425 62127 42874 50
798De 28 0 900 0 0
799$EndDRAWSEGMENT
800$DRAWSEGMENT
801Po 0 64686 43425 62678 43425 50
802De 28 0 900 0 0
803$EndDRAWSEGMENT
804$DRAWSEGMENT
805Po 0 64686 43425 64686 47204 50
806De 28 0 900 0 0
807$EndDRAWSEGMENT
808$TRACK
809Po 0 56202 45806 55966 45806 80 -1
810De 15 0 1 0 800
811Po 0 58504 46102 59076 45530 80 -1
812De 15 0 1 0 0
813Po 3 58346 46102 58346 46102 300 -1
814De 15 1 1 0 0
815Po 0 59076 45530 63700 45530 80 -1
816De 15 0 1 0 400
817Po 0 58346 46102 58504 46102 80 -1
818De 15 0 1 0 0
819Po 0 55788 46102 58346 46102 80 -1
820De 0 0 1 0 0
821Po 0 55709 46181 55788 46102 80 -1
822De 0 0 1 0 0
823Po 3 55709 46181 55709 46181 300 -1
824De 15 1 1 0 0
825Po 0 55945 45945 55709 46181 80 -1
826De 15 0 1 0 0
827Po 0 55945 45827 55945 45945 80 -1
828De 15 0 1 0 0
829Po 0 55966 45806 55945 45827 80 -1
830De 15 0 1 0 0
831Po 0 58071 46968 57952 46968 80 -1
832De 15 0 2 0 0
833Po 0 57539 46555 57539 46436 80 -1
834De 15 0 2 0 400
835Po 0 57952 46968 57539 46555 80 -1
836De 15 0 2 0 0
837Po 0 58070 46968 58071 46968 80 -1
838De 15 0 2 0 0
839Po 0 58071 46968 59174 46968 80 -1
840De 15 0 2 0 0
841Po 0 59312 46830 63700 46830 80 -1
842De 15 0 2 0 400
843Po 0 59312 46830 59174 46968 80 -1
844De 15 0 2 0 0
845Po 0 58504 46969 57560 46969 80 -1
846De 0 0 3 0 0
847Po 0 58347 44528 58782 44963 80 -1
848De 0 0 3 0 0
849Po 0 58782 44963 58782 46691 80 -1
850De 0 0 3 0 0
851Po 0 58782 46691 58504 46969 80 -1
852De 0 0 3 0 0
853Po 0 58799 44233 58641 44233 80 -1
854De 15 0 3 0 0
855Po 0 63700 44233 58799 44233 80 -1
856De 15 0 3 0 800
857Po 3 58346 44528 58346 44528 300 -1
858De 15 1 3 0 0
859Po 0 58641 44233 58346 44528 80 -1
860De 15 0 3 0 0
861Po 0 58346 44528 58347 44528 80 -1
862De 0 0 3 0 0
863Po 0 57362 46771 57362 46436 80 -1
864De 15 0 3 0 400
865Po 0 57441 46850 57362 46771 80 -1
866De 15 0 3 0 0
867Po 3 57441 46850 57441 46850 300 -1
868De 15 1 3 0 0
869Po 0 57560 46969 57441 46850 80 -1
870De 0 0 3 0 0
871Po 0 57814 46161 57932 46161 80 -1
872De 15 0 4 0 800
873Po 0 58997 46397 63700 46397 80 -1
874De 15 0 4 0 400
875Po 0 58997 46397 58623 46771 80 -1
876De 15 0 4 0 0
877Po 0 58149 46771 58623 46771 80 -1
878De 15 0 4 0 0
879Po 0 58031 46653 58149 46771 80 -1
880De 15 0 4 0 0
881Po 0 58031 46260 58031 46653 80 -1
882De 15 0 4 0 0
883Po 0 57932 46161 58031 46260 80 -1
884De 15 0 4 0 0
885Po 0 58759 43800 58681 43800 80 -1
886De 15 0 5 0 0
887Po 0 63700 43800 58759 43800 80 -1
888De 15 0 5 0 800
889Po 0 57008 44567 57008 44824 80 -1
890De 15 0 5 0 400
891Po 0 57047 44528 57008 44567 80 -1
892De 15 0 5 0 0
893Po 0 57953 44528 57047 44528 80 -1
894De 15 0 5 0 0
895Po 0 58681 43800 57953 44528 80 -1
896De 15 0 5 0 0
897Po 0 58465 46772 58111 46772 80 -1
898De 0 0 6 0 0
899Po 0 58347 44921 58622 45196 80 -1
900De 0 0 6 0 0
901Po 0 58622 45196 58622 46615 80 -1
902De 0 0 6 0 0
903Po 0 58622 46615 58465 46772 80 -1
904De 0 0 6 0 0
905Po 0 58759 44666 58601 44666 80 -1
906De 15 0 6 0 0
907Po 0 63700 44666 58759 44666 80 -1
908De 15 0 6 0 800
909Po 3 58346 44921 58346 44921 300 -1
910De 15 1 6 0 0
911Po 0 58601 44666 58346 44921 80 -1
912De 15 0 6 0 0
913Po 0 58346 44921 58347 44921 80 -1
914De 0 0 6 0 0
915Po 0 57184 46713 57184 46436 80 -1
916De 15 0 6 0 400
917Po 0 57047 46850 57184 46713 80 -1
918De 15 0 6 0 0
919Po 3 57047 46850 57047 46850 300 -1
920De 15 1 6 0 0
921Po 0 57362 46535 57047 46850 80 -1
922De 0 0 6 0 0
923Po 0 57874 46535 57362 46535 80 -1
924De 0 0 6 0 0
925Po 0 58111 46772 57874 46535 80 -1
926De 0 0 6 0 0
927Po 0 58346 46496 58228 46496 90 -1
928De 0 0 7 0 0
929Po 0 58504 46496 59036 45964 80 -1
930De 15 0 7 0 0
931Po 3 58346 46496 58346 46496 300 -1
932De 15 1 7 0 0
933Po 0 63759 45964 59036 45964 95 -1
934De 15 0 7 0 800
935Po 0 58346 46496 58504 46496 80 -1
936De 15 0 7 0 0
937Po 0 55394 44803 55394 46417 95 -1
938De 0 0 7 0 0
939Po 0 55394 46417 55591 46614 95 -1
940De 0 0 7 0 0
941Po 0 55591 46614 56063 46614 95 -1
942De 0 0 7 0 0
943Po 0 56063 46614 56181 46496 95 -1
944De 0 0 7 0 0
945Po 0 55552 44645 56693 44645 90 -1
946De 0 0 7 0 0
947Po 0 55552 44645 55394 44803 95 -1
948De 0 0 7 0 0
949Po 0 56338 46339 56181 46496 90 -1
950De 0 0 7 0 0
951Po 0 58071 46339 56338 46339 90 -1
952De 0 0 7 0 0
953Po 0 58228 46496 58071 46339 90 -1
954De 0 0 7 0 0
955Po 0 57814 45630 57008 45630 90 -1
956De 15 0 7 0 C00
957Po 0 56202 45630 57008 45630 90 -1
958De 15 0 7 0 C00
959Po 0 55669 45787 55611 45787 90 -1
960De 15 0 7 0 800
961Po 0 55611 45787 55197 46201 90 -1
962De 15 0 7 0 400
963Po 0 56202 45630 55826 45630 90 -1
964De 15 0 7 0 800
965Po 0 55826 45630 55669 45787 90 -1
966De 15 0 7 0 400
967Po 0 56693 44645 56693 44252 90 -1
968De 0 0 7 0 0
969Po 0 56457 44016 56693 44252 90 -1
970De 15 0 7 0 0
971Po 3 56693 44252 56693 44252 300 -1
972De 15 1 7 0 0
973Po 0 56457 44016 56457 43504 90 -1
974De 15 0 7 0 400
975Po 0 56772 44645 57676 44645 80 -1
976De 0 0 7 0 0
977Po 0 58031 45630 58346 45315 90 -1
978De 15 0 7 0 0
979Po 3 58346 45315 58346 45315 300 -1
980De 15 1 7 0 0
981Po 0 57814 45630 58031 45630 90 -1
982De 15 0 7 0 800
983Po 0 57676 44645 58346 45315 80 -1
984De 0 0 7 0 0
985Po 0 56772 44645 56693 44645 90 -1
986De 0 0 7 0 0
987Po 0 55457 43504 55457 43881 80 -1
988De 15 0 8 0 800
989Po 0 55457 43881 55828 44252 80 -1
990De 15 0 8 0 400
991Po 0 57519 44252 57519 43566 80 -1
992De 15 0 9 0 800
993Po 0 57519 43566 57457 43504 80 -1
994De 15 0 9 0 400
995Po 0 56832 44824 56832 44506 80 -1
996De 15 0 10 0 800
997Po 0 57086 44252 57127 44252 80 -1
998De 15 0 10 0 400
999Po 0 56832 44506 57086 44252 80 -1
1000De 15 0 10 0 0
1001Po 0 56654 44824 56654 44607 80 -1
1002De 15 0 11 0 800
1003Po 0 56299 44252 56220 44252 80 -1
1004De 15 0 11 0 400
1005Po 0 56654 44607 56299 44252 80 -1
1006De 15 0 11 0 0
1007Po 0 56477 44824 56477 44745 80 -1
1008De 15 0 12 0 800
1009Po 0 55157 44528 55118 44489 80 -1
1010De 15 0 12 0 400
1011Po 0 56260 44528 55157 44528 80 -1
1012De 15 0 12 0 0
1013Po 0 56477 44745 56260 44528 80 -1
1014De 15 0 12 0 0
1015Po 0 56202 46161 56122 46161 80 -1
1016De 15 0 13 0 800
1017Po 0 55788 46614 55472 46614 80 -1
1018De 15 0 13 0 400
1019Po 0 56024 46378 55788 46614 80 -1
1020De 15 0 13 0 0
1021Po 0 56024 46259 56024 46378 80 -1
1022De 15 0 13 0 0
1023Po 0 56122 46161 56024 46259 80 -1
1024De 15 0 13 0 0
1025Po 0 56477 46436 56477 46516 80 -1
1026De 15 0 14 0 800
1027Po 0 55788 46929 55512 46929 80 -1
1028De 15 0 14 0 400
1029Po 0 56063 46654 55788 46929 80 -1
1030De 15 0 14 0 0
1031Po 0 56339 46654 56063 46654 80 -1
1032De 15 0 14 0 0
1033Po 0 56477 46516 56339 46654 80 -1
1034De 15 0 14 0 0
1035Po 0 55118 44881 55118 45532 80 -1
1036De 15 0 15 0 800
1037Po 0 55118 45532 55197 45611 80 -1
1038De 15 0 15 0 400
1039Po 0 56654 46436 56654 46692 80 -1
1040De 15 0 16 0 800
1041Po 0 56654 46692 56417 46929 80 -1
1042De 15 0 16 0 400
1043Po 0 55669 45395 55669 45001 90 -1
1044De 15 0 17 0 800
1045Po 3 58346 45709 58346 45709 300 -1
1046De 15 1 17 0 0
1047Po 0 56457 45709 58346 45709 90 -1
1048De 0 0 17 0 0
1049Po 0 55709 44961 56457 45709 90 -1
1050De 0 0 17 0 0
1051Po 3 55709 44961 55709 44961 300 -1
1052De 15 1 17 0 0
1053Po 0 55669 45001 55709 44961 90 -1
1054De 15 0 17 0 0
1055Po 0 56202 45454 55728 45454 90 -1
1056De 15 0 17 0 800
1057Po 0 55728 45454 55669 45395 90 -1
1058De 15 0 17 0 400
1059Po 0 58346 45709 58503 45709 90 -1
1060De 15 0 17 0 0
1061Po 0 63759 45098 59114 45098 95 -1
1062De 15 0 17 0 800
1063Po 0 58503 45709 59114 45098 90 -1
1064De 15 0 17 0 0
1065Po 0 58071 45984 58346 45709 90 -1
1066De 15 0 17 0 1
1067Po 0 58071 45984 57814 45984 90 -1
1068De 15 0 17 0 400
1069$EndTRACK
1070$ZONE
1071$EndZONE
1072$CZONE_OUTLINE
1073ZInfo 4D471C9C 7 "GND"
1074ZLayer 0
1075ZAux 8 E
1076ZClearance 150 T
1077ZMinThickness 100
1078ZOptions 1 16 F 200 200
1079ZCorner 64607 47126 0
1080ZCorner 64607 43504 0
1081ZCorner 61300 43504 0
1082ZCorner 60749 42952 0
1083ZCorner 54961 42953 0
1084ZCorner 54764 43150 0
1085ZCorner 54764 46693 0
1086ZCorner 55197 47126 1
1087$POLYSCORNERS
108855190 47029 0 0
108955197 47028 0 0
109056743 47028 0 0
109156698 46919 0 0
109256698 46780 0 0
109356751 46652 0 0
109456850 46554 0 0
109556978 46501 0 0
109657056 46501 0 0
109757192 46365 0 0
109857226 46342 0 0
109956020 46342 0 0
110056005 46379 0 0
110155906 46477 0 0
110255778 46530 0 0
110355639 46530 0 0
110455511 46477 0 0
110555413 46378 0 0
110655360 46250 0 0
110755360 46111 0 0
110855413 45983 0 0
110955512 45885 0 0
111055640 45832 0 0
111155779 45832 0 0
111255851 45862 0 0
111356263 45862 0 0
111455711 45310 0 0
111555639 45310 0 0
111655511 45257 0 0
111755413 45158 0 0
111855360 45030 0 0
111955360 44891 0 0
112055413 44763 0 0
112155512 44665 0 0
112255640 44612 0 0
112355779 44612 0 0
112455907 44665 0 0
112556005 44764 0 0
112656058 44892 0 0
112756058 44963 0 0
112856354 45259 0 1
112956354 44145 0 0
113056117 44058 0 0
113156079 43953 0 0
113256456 43575 0 0
113356835 43953 0 0
113456797 44058 0 0
113556608 44135 0 0
113656354 44145 0 1
113756354 45259 0 0
113856558 45464 0 0
113958097 45464 0 0
114058149 45413 0 0
114158277 45360 0 0
114258382 45360 0 0
114358382 45295 0 0
114458356 45270 0 0
114558276 45270 0 0
114658148 45217 0 0
114758050 45118 0 0
114857997 44990 0 0
114957997 44851 0 0
115058049 44723 0 0
115157997 44597 0 0
115257997 44458 0 0
115358050 44330 0 0
115458149 44232 0 0
115558277 44179 0 0
115658416 44179 0 0
115758544 44232 0 0
115858642 44331 0 0
115958695 44459 0 0
116058695 44536 0 0
116158952 44793 0 0
116259004 44871 0 0
116359022 44963 0 0
116459022 46691 0 0
116559004 46783 0 0
116658952 46861 0 0
116758785 47028 0 0
116864511 47028 0 0
116964511 43600 0 0
117062678 43600 0 0
117162611 43587 0 0
117262561 43554 0 0
117361279 43554 0 0
117461086 43360 0 0
117561035 43351 0 0
117661012 43335 0 0
117760979 43313 0 0
117860977 43310 0 0
117960715 43049 0 0
118058229 43049 0 0
118158228 43048 0 0
118258228 43049 0 0
118358161 43036 0 0
118458110 43002 0 0
118557802 43002 0 0
118657965 43165 0 0
118758056 43385 0 0
118858056 43623 0 0
118957965 43843 0 0
119057796 44012 0 0
119157576 44103 0 0
119257338 44103 0 0
119357118 44012 0 0
119456966 43860 0 0
119556906 43882 0 0
119656528 43504 0 0
119756906 43126 0 0
119856966 43147 0 0
119957111 43002 0 0
120056815 43002 0 0
120156835 43055 0 0
120256456 43432 0 0
120356079 43055 0 0
120456098 43002 0 0
120556030 43002 0 0
120656048 43048 0 0
120756060 43037 0 0
120856456 43432 0 0
120956386 43504 0 0
121056056 43173 0 0
121156056 43174 0 0
121256386 43504 0 0
121356056 43834 0 0
121456056 43834 0 0
121556386 43504 0 0
121656456 43575 0 0
121756060 43971 0 0
121856049 43960 0 0
121956025 44017 0 0
122055969 44073 0 0
122155896 44103 0 0
122255017 44103 0 0
122354944 44072 0 0
122454888 44016 0 0
122554858 43943 0 0
122654858 43125 0 0
122754821 43162 0 0
122854821 46659 1 0
122958365 46532 0 0
123058382 46515 0 0
123158382 46451 0 0
123258276 46451 0 0
123358148 46398 0 0
123458092 46342 0 0
123558009 46342 0 0
123658044 46365 0 0
123758211 46532 1 0
1238$endPOLYSCORNERS
1239$FILLSEGMENTS
124056030 43002 56098 43002
124156815 43002 57111 43002
124257802 43002 58110 43002
124356106 43082 56106 43082
124456807 43082 57031 43082
124557882 43082 60748 43082
124654821 43162 54858 43162
124756186 43162 56186 43162
124856727 43162 56870 43162
124957962 43162 60828 43162
125054821 43242 54858 43242
125156124 43242 56124 43242
125256266 43242 56266 43242
125356647 43242 56790 43242
125457997 43242 60908 43242
125554821 43322 54858 43322
125656204 43322 56204 43322
125756346 43322 56346 43322
125856566 43322 56710 43322
125958030 43322 60992 43322
126054821 43402 54858 43402
126156284 43402 56284 43402
126256426 43402 56426 43402
126356486 43402 56630 43402
126458056 43402 61127 43402
126554821 43482 54858 43482
126656364 43482 56364 43482
126756407 43482 56550 43482
126858056 43482 61207 43482
126954821 43562 54858 43562
127056328 43562 56328 43562
127156444 43562 56586 43562
127258056 43562 62573 43562
127354821 43642 54858 43642
127456248 43642 56248 43642
127556389 43642 56390 43642
127656524 43642 56666 43642
127758048 43642 64511 43642
127854821 43722 54858 43722
127956168 43722 56168 43722
128056309 43722 56310 43722
128156604 43722 56746 43722
128258015 43722 64511 43722
128354821 43802 54858 43802
128456088 43802 56088 43802
128556229 43802 56230 43802
128656684 43802 56826 43802
128757981 43802 64511 43802
128854821 43882 54858 43882
128956149 43882 56150 43882
129056764 43882 56988 43882
129157926 43882 64511 43882
129254821 43962 54865 43962
129356048 43962 56051 43962
129456069 43962 56082 43962
129556831 43962 57068 43962
129657846 43962 64511 43962
129754821 44042 54914 44042
129856000 44042 56111 44042
129956802 44042 57190 44042
130057723 44042 64511 44042
130154821 44122 56291 44122
130256639 44122 64511 44122
130354821 44202 58222 44202
130458472 44202 64511 44202
130554821 44282 58099 44282
130658594 44282 64511 44282
130754821 44362 58037 44362
130858655 44362 64511 44362
130954821 44442 58004 44442
131058688 44442 64511 44442
131154821 44522 57997 44522
131258695 44522 64511 44522
131354821 44602 57999 44602
131458761 44602 64511 44602
131554821 44682 55495 44682
131655924 44682 58032 44682
131758841 44682 64511 44682
131854821 44762 55415 44762
131956004 44762 58034 44762
132058921 44762 64511 44762
132154821 44842 55381 44842
132256038 44842 58001 44842
132358985 44842 64511 44842
132454821 44922 55360 44922
132556058 44922 57997 44922
132659014 44922 64511 44922
132754821 45002 55360 45002
132856097 45002 58001 45002
132959022 45002 64511 45002
133054821 45082 55381 45082
133156177 45082 58035 45082
133259022 45082 64511 45082
133354821 45162 55416 45162
133456257 45162 58093 45162
133559022 45162 64511 45162
133654821 45242 55496 45242
133756337 45242 58208 45242
133859022 45242 64511 45242
133954821 45322 55723 45322
134056417 45322 58382 45322
134159022 45322 64511 45322
134254821 45402 55803 45402
134356497 45402 58176 45402
134459022 45402 64511 45402
134554821 45482 55883 45482
134659022 45482 64511 45482
134754821 45562 55963 45562
134859022 45562 64511 45562
134954821 45642 56043 45642
135059022 45642 64511 45642
135154821 45722 56123 45722
135259022 45722 64511 45722
135354821 45802 56203 45802
135459022 45802 64511 45802
135554821 45882 55520 45882
135659022 45882 64511 45882
135754821 45962 55435 45962
135859022 45962 64511 45962
135954821 46042 55389 46042
136059022 46042 64511 46042
136154821 46122 55360 46122
136259022 46122 64511 46122
136354821 46202 55360 46202
136459022 46202 64511 46202
136554821 46282 55373 46282
136659022 46282 64511 46282
136754821 46362 55406 46362
136856011 46362 57197 46362
136959022 46362 64511 46362
137054821 46442 55476 46442
137155941 46442 57115 46442
137259022 46442 64511 46442
137354821 46522 55619 46522
137455797 46522 56928 46522
137559022 46522 64511 46522
137654821 46602 56802 46602
137759022 46602 64511 46602
137854844 46682 56739 46682
137959022 46682 64511 46682
138054924 46762 56706 46762
138159008 46762 64511 46762
138255004 46842 56698 46842
138358964 46842 64511 46842
138455084 46922 56699 46922
138558891 46922 64511 46922
138655164 47002 56732 47002
138758811 47002 64511 47002
138858009 46342 58092 46342
138958101 46422 58205 46422
139058181 46502 58382 46502
1391$endFILLSEGMENTS
1392$endCZONE_OUTLINE
1393$EndBOARD
nxuart/nxuart.cmp
1Cmp-Mod V01 Created by CvPCB (2010-12-27 BZR 2685)-unstable date = Mon Jan 31 18:30:06 2011
2
3BeginCmp
4TimeStamp = /4D470731;
5Reference = C1;
6ValeurCmp = 100nF;
7IdModule = 0402;
8EndCmp
9
10BeginCmp
11TimeStamp = /4D47260E;
12Reference = D1;
13ValeurCmp = LED;
14IdModule = 0603;
15EndCmp
16
17BeginCmp
18TimeStamp = /4D4704D9;
19Reference = K1;
20ValeurCmp = CONN_3;
21IdModule = PIN_ARRAY_3X1;
22EndCmp
23
24BeginCmp
25TimeStamp = /4D4702F7;
26Reference = P1;
27ValeurCmp = 8:10-CARD;
28IdModule = 8:10-card;
29EndCmp
30
31BeginCmp
32TimeStamp = /4D472714;
33Reference = P2;
34ValeurCmp = CONN_1;
35IdModule = PAD_2mm;
36EndCmp
37
38BeginCmp
39TimeStamp = /4D472716;
40Reference = P3;
41ValeurCmp = CONN_1;
42IdModule = PAD_2mm;
43EndCmp
44
45BeginCmp
46TimeStamp = /4D47292F;
47Reference = P4;
48ValeurCmp = CONN_1;
49IdModule = PAD_2mm;
50EndCmp
51
52BeginCmp
53TimeStamp = /4D47052C;
54Reference = R1;
55ValeurCmp = 100;
56IdModule = 0402;
57EndCmp
58
59BeginCmp
60TimeStamp = /4D47052E;
61Reference = R2;
62ValeurCmp = 100;
63IdModule = 0402;
64EndCmp
65
66BeginCmp
67TimeStamp = /4D472610;
68Reference = R3;
69ValeurCmp = 68;
70IdModule = 0402;
71EndCmp
72
73BeginCmp
74TimeStamp = /4D4702FE;
75Reference = U1;
76ValeurCmp = ATMEGA48-MMU;
77IdModule = QFN28-Atmel;
78EndCmp
79
80EndListe
nxuart/nxuart.pro
1update=Mon Jan 31 19:00:31 2011
2last_client=pcbnew
3[eeschema]
4version=1
5LibDir=
6NetFmt=1
7HPGLSpd=20
8HPGLDm=15
9HPGLNum=1
10offX_A4=0
11offY_A4=0
12offX_A3=0
13offY_A3=0
14offX_A2=0
15offY_A2=0
16offX_A1=0
17offY_A1=0
18offX_A0=0
19offY_A0=0
20offX_A=0
21offY_A=0
22offX_B=0
23offY_B=0
24offX_C=0
25offY_C=0
26offX_D=0
27offY_D=0
28offX_E=0
29offY_E=0
30RptD_X=0
31RptD_Y=100
32RptLab=1
33LabSize=60
34PrintMonochrome=1
35ShowSheetReferenceAndTitleBlock=1
36[eeschema/libraries]
37LibName1=power
38LibName2=device
39LibName3=conn
40LibName4=../../kicad-libs/components/8_10-card
41LibName5=../components/atmega48-mmu
42[cvpcb]
43version=1
44NetIExt=net
45[cvpcb/libraries]
46EquName1=devcms
47[pcbnew]
48version=1
49PadDrlX=400
50PadDimH=800
51PadDimV=800
52BoardThickness=630
53SgPcb45=1
54TxtPcbV=800
55TxtPcbH=600
56TxtModV=600
57TxtModH=600
58TxtModW=120
59VEgarde=100
60DrawLar=50
61EdgeLar=50
62TxtLar=120
63MSegLar=150
64LastNetListRead=uart.net
65[pcbnew/libraries]
66LibDir=
67LibName1=pin_array
68LibName2=../../kicad-libs/modules/stdpass
69LibName3=../../kicad-libs/modules/8_10-card
70LibName4=../../ben-wpan/modules/qfn
71LibName5=../../kicad-libs/modules/pads
nxuart/nxuart.sch
1EESchema Schematic File Version 2 date Sun Feb 6 17:42:09 2011
2LIBS:power
3LIBS:device
4LIBS:conn
5LIBS:8_10-card
6LIBS:atmega48-mmu
7EELAYER 24 0
8EELAYER END
9$Descr A4 11700 8267
10Sheet 1 1
11Title "External UART (3.3 V) as 8:10 card"
12Date "2 feb 2011"
13Rev "20110131"
14Comp "Werner Almesberger"
15Comment1 ""
16Comment2 ""
17Comment3 ""
18Comment4 ""
19$EndDescr
20Wire Wire Line
21    4950 4550 4950 5350
22Wire Wire Line
23    4950 5350 8050 5350
24Wire Wire Line
25    3100 3600 2700 3600
26Wire Wire Line
27    2700 3600 2700 4550
28Wire Wire Line
29    2700 4550 2400 4550
30Wire Wire Line
31    2400 4750 4350 4750
32Wire Wire Line
33    4350 4750 4350 4550
34Wire Wire Line
35    3450 1550 3650 1550
36Wire Wire Line
37    5250 4550 5250 5850
38Wire Wire Line
39    5250 5850 8050 5850
40Wire Wire Line
41    8050 5150 6200 5150
42Wire Wire Line
43    1850 3600 1850 4000
44Wire Wire Line
45    3100 3000 1850 3000
46Wire Wire Line
47    6700 3450 6500 3450
48Wire Wire Line
49    3100 3300 2900 3300
50Wire Wire Line
51    2900 3300 2900 5550
52Wire Wire Line
53    2900 5550 8050 5550
54Wire Wire Line
55    4300 1050 4500 1050
56Wire Wire Line
57    3300 1050 3800 1050
58Wire Wire Line
59    3500 1250 3500 950
60Wire Wire Line
61    3500 950 3300 950
62Wire Wire Line
63    4500 1050 4500 1750
64Wire Wire Line
65    4650 1750 4650 850
66Wire Wire Line
67    3300 850 3800 850
68Wire Wire Line
69    4650 850 4300 850
70Wire Wire Line
71    5700 4550 5700 4750
72Wire Wire Line
73    6500 3600 6700 3600
74Wire Wire Line
75    7250 6050 7250 5650
76Wire Wire Line
77    7250 5650 8050 5650
78Wire Wire Line
79    6500 3150 6700 3150
80Wire Wire Line
81    8050 5450 7250 5450
82Wire Wire Line
83    7250 5450 7250 4950
84Wire Wire Line
85    1850 3200 1850 2800
86Connection ~ 1850 3000
87Wire Wire Line
88    1850 3800 2350 3800
89Connection ~ 1850 3800
90Wire Wire Line
91    2350 3800 2350 3150
92Wire Wire Line
93    2350 3150 3100 3150
94Wire Wire Line
95    4800 1750 4800 850
96Wire Wire Line
97    4800 850 5350 850
98Wire Wire Line
99    8050 5750 6700 5750
100Wire Wire Line
101    6700 5750 6700 3600
102Wire Wire Line
103    2850 1750 2850 1550
104Wire Wire Line
105    2850 1550 3050 1550
106Wire Wire Line
107    4350 1750 4350 1550
108Wire Wire Line
109    4350 1550 4150 1550
110Wire Wire Line
111    2400 4950 4500 4950
112Wire Wire Line
113    4500 4950 4500 4550
114Wire Wire Line
115    8050 5250 5100 5250
116Wire Wire Line
117    5100 5250 5100 4550
118Text Label 7550 5350 0 60 ~ 0
119nSS
120NoConn ~ 6500 2700
121$Comp
122L CONN_1 P4
123U 1 1 4D47292F
124P 2250 4950
125F 0 "P4" H 2330 4950 40 0000 L CNN
126F 1 "CONN_1" H 2250 5005 30 0001 C CNN
127F 2 "PAD_2mm" H 2250 4950 60 0001 C CNN
128    1 2250 4950
129    -1 0 0 1
130$EndComp
131$Comp
132L GND #PWR01
133U 1 1 4D4728FC
134P 2850 1750
135F 0 "#PWR01" H 2850 1750 30 0001 C CNN
136F 1 "GND" H 2850 1680 30 0001 C CNN
137    1 2850 1750
138    1 0 0 -1
139$EndComp
140$Comp
141L CONN_1 P3
142U 1 1 4D472716
143P 2250 4750
144F 0 "P3" H 2330 4750 40 0000 L CNN
145F 1 "CONN_1" H 2250 4805 30 0001 C CNN
146F 2 "PAD_2mm" H 2250 4750 60 0001 C CNN
147    1 2250 4750
148    -1 0 0 1
149$EndComp
150$Comp
151L CONN_1 P2
152U 1 1 4D472714
153P 2250 4550
154F 0 "P2" H 2330 4550 40 0000 L CNN
155F 1 "CONN_1" H 2250 4605 30 0001 C CNN
156F 2 "PAD_2mm" H 2250 4550 60 0001 C CNN
157    1 2250 4550
158    -1 0 0 1
159$EndComp
160$Comp
161L R R3
162U 1 1 4D472610
163P 3900 1550
164F 0 "R3" V 3980 1550 50 0000 C CNN
165F 1 "68" V 3900 1550 50 0000 C CNN
166F 2 "0402" H 3900 1550 60 0001 C CNN
167    1 3900 1550
168    0 -1 -1 0
169$EndComp
170$Comp
171L LED D1
172U 1 1 4D47260E
173P 3250 1550
174F 0 "D1" H 3250 1650 50 0000 C CNN
175F 1 "LTST-C190KRKT" H 3250 1450 50 0000 C CNN
176F 2 "0603" H 3250 1550 60 0001 C CNN
177    1 3250 1550
178    -1 0 0 -1
179$EndComp
180Text Label 7550 5550 0 60 ~ 0
181CLK
182Text Label 7550 5150 0 60 ~ 0
183nRESET
184Text Label 7550 5750 0 60 ~ 0
185SCK
186Text Label 7550 5850 0 60 ~ 0
187MISO
188Text Label 7550 5250 0 60 ~ 0
189MOSI
190Text Label 5000 850 0 60 ~ 0
191nRESET
192Text Label 6500 5150 2 60 ~ 0
193nRESET
194$Comp
195L C C1
196U 1 1 4D470731
197P 1850 3400
198F 0 "C1" H 1900 3500 50 0000 L CNN
199F 1 "100nF" H 1900 3300 50 0000 L CNN
200F 2 "0402" H 1850 3400 60 0001 C CNN
201    1 1850 3400
202    1 0 0 -1
203$EndComp
204NoConn ~ 3100 3450
205NoConn ~ 6500 2850
206NoConn ~ 6500 3000
207NoConn ~ 6500 3300
208$Comp
209L GND #PWR02
210U 1 1 4D470651
211P 6700 3150
212F 0 "#PWR02" H 6700 3150 30 0001 C CNN
213F 1 "GND" H 6700 3080 30 0001 C CNN
214    1 6700 3150
215    0 -1 -1 0
216$EndComp
217$Comp
218L VDD #PWR03
219U 1 1 4D470644
220P 1850 2800
221F 0 "#PWR03" H 1850 2900 30 0001 C CNN
222F 1 "VDD" H 1850 2910 30 0000 C CNN
223    1 1850 2800
224    1 0 0 -1
225$EndComp
226$Comp
227L VDD #PWR04
228U 1 1 4D470639
229P 6700 3450
230F 0 "#PWR04" H 6700 3550 30 0001 C CNN
231F 1 "VDD" H 6700 3560 30 0000 C CNN
232    1 6700 3450
233    0 1 1 0
234$EndComp
235$Comp
236L VDD #PWR05
237U 1 1 4D47062B
238P 7250 4950
239F 0 "#PWR05" H 7250 5050 30 0001 C CNN
240F 1 "VDD" H 7250 5060 30 0000 C CNN
241    1 7250 4950
242    1 0 0 -1
243$EndComp
244$Comp
245L GND #PWR06
246U 1 1 4D470615
247P 7250 6050
248F 0 "#PWR06" H 7250 6050 30 0001 C CNN
249F 1 "GND" H 7250 5980 30 0001 C CNN
250    1 7250 6050
251    1 0 0 -1
252$EndComp
253NoConn ~ 4800 4550
254NoConn ~ 4650 4550
255NoConn ~ 3100 2850
256NoConn ~ 3100 2700
257NoConn ~ 5250 1750
258NoConn ~ 5100 1750
259NoConn ~ 4950 1750
260$Comp
261L R R2
262U 1 1 4D47052E
263P 4050 1050
264F 0 "R2" V 4130 1050 50 0000 C CNN
265F 1 "100" V 4050 1050 50 0000 C CNN
266F 2 "0402" H 4050 1050 60 0001 C CNN
267    1 4050 1050
268    0 -1 -1 0
269$EndComp
270$Comp
271L R R1
272U 1 1 4D47052C
273P 4050 850
274F 0 "R1" V 4130 850 50 0000 C CNN
275F 1 "100" V 4050 850 50 0000 C CNN
276F 2 "0402" H 4050 850 60 0001 C CNN
277    1 4050 850
278    0 -1 -1 0
279$EndComp
280$Comp
281L GND #PWR07
282U 1 1 4D4704FA
283P 3500 1250
284F 0 "#PWR07" H 3500 1250 30 0001 C CNN
285F 1 "GND" H 3500 1180 30 0001 C CNN
286    1 3500 1250
287    1 0 0 -1
288$EndComp
289$Comp
290L CONN_3 K1
291U 1 1 4D4704D9
292P 2950 950
293F 0 "K1" V 2900 950 50 0000 C CNN
294F 1 "3M 961103-5604-AR" H 2950 1200 50 0000 C CNN
295F 2 "CONN_3" H 2950 950 60 0001 C CNN
296F 4 "(or any similar 0.1 in header)" H 3050 1300 50 0000 C CNN "Field4"
297    1 2950 950
298    -1 0 0 1
299$EndComp
300$Comp
301L GND #PWR08
302U 1 1 4D4704BC
303P 1850 4000
304F 0 "#PWR08" H 1850 4000 30 0001 C CNN
305F 1 "GND" H 1850 3930 30 0001 C CNN
306    1 1850 4000
307    1 0 0 -1
308$EndComp
309$Comp
310L GND #PWR09
311U 1 1 4D4704B4
312P 5700 4750
313F 0 "#PWR09" H 5700 4750 30 0001 C CNN
314F 1 "GND" H 5700 4680 30 0001 C CNN
315    1 5700 4750
316    1 0 0 -1
317$EndComp
318$Comp
319L ATMEGA48-MMU U1
320U 1 1 4D4702FE
321P 4800 3150
322F 0 "U1" H 3450 4350 60 0000 C CNN
323F 1 "ATMEGA48-MMU" H 4800 3150 60 0000 C CNN
324F 2 "QFN28-Atmel" H 4800 3150 60 0001 C CNN
325    1 4800 3150
326    1 0 0 -1
327$EndComp
328$Comp
329L 8:10-CARD P1
330U 1 1 4D4702F7
331P 8350 5450
332F 0 "P1" H 8150 6000 60 0000 C CNN
333F 1 "8:10-CARD" H 8400 4850 60 0000 C CNN
334F 2 "8:10-card" H 8350 5450 60 0001 C CNN
335    1 8350 5450
336    1 0 0 -1
337$EndComp
338$EndSCHEMATC
uart/Makefile
1PLOT_BRD = pcbnew --plot=ps_a4 --ps-pads-drill-opt=none --fill-all-zones
2
3NAME = uart
4
5.PHONY: all sch brd front back clean
6
7all:
8        @echo "make what ? target: sch brd front back clean"
9        @exit 1
10
11sch:
12        eeschema `pwd`/$(NAME).sch
13
14brd:
15        pcbnew `pwd`/$(NAME).brd
16
17front: $(NAME)-Front.ps
18        lpr $<
19
20back: $(NAME)-Back.ps
21        lpr $<
22
23%-Front.ps: %.brd
24        $(PLOT_BRD) -l Front --mirror $<
25
26%-Back.ps: %.brd
27        $(PLOT_BRD) -l Back $<
28
29clean:
30        rm -f $(NAME)-Front.ps $(NAME)-Back.ps
31        rm -f $(NAME).drl $(NAME)-PCB_Edges.gbr
uart/bom/Makefile
1BOOM=PATH=/home/moko/svn.openmoko.org/trunk/eda/boom:../boom:$$PATH boom
2
3BOOM2=../../../eda-tools/boom
4BOOM_CONFIG=$(BOOM2)/boom-config
5
6KITS=1
7
8EQU=uart.equ dk/digi-key.equ $(shell $(BOOM_CONFIG) equ)
9INV=uart.inv dk/digi-key.inv $(shell $(BOOM_CONFIG) inv)
10DSC=dk/digi-key.dsc $(shell $(BOOM_CONFIG) dsc)
11CHR=$(shell $(BOOM_CONFIG) chr)
12
13
14.PHONY: all again spotless
15.PRECIOUS: %.par %.lst
16
17all: uart.ord
18
19again:
20        $(MAKE) spotless
21        $(MAKE) all
22
23%.ord: %.par $(INV) $(EQU)
24        $(BOOM) part2order $(KITS) $^ >$@ || { rm -f $@; exit 1; }
25
26%.par: $(EQU) $(INV) $(CHR) %.lst uart.sub
27        $(BOOM) bom2part $^ >$@ || { rm -f $@; exit 1; }
28
29dk/digi-key.inv:
30        $(MAKE) -C dk digi-key.inv
31
32dk/digi-key.dsc:
33        $(MAKE) -C dk digi-key.dsc
34
35%.lst: ../*.sch ../*.cmp
36        eeschema --bom `pwd`/../$*.sch
37        mv ../$*.lst .
38
39show-%: %.ord $(DSC)
40        grep -vw UART $< | $(BOOM) prettyord -t - $(DSC) | \
41          sed 's/^... //'
42
43spotless:
44        $(MAKE) -C dk spotless
45        rm -f uart.lst uart.par uart.ord
uart/bom/dk/Makefile
1CACHE=query.data
2
3.PHONY: update regen regenerate clean spotless
4
5all: digi-key.dsc digi-key.inv
6
7$(CACHE): digi-key.equ
8        awk '/^#END/ { exit } /^DIGI-KEY / { print $$2 }' \
9          digi-key.equ | \
10          perl ./dk-db.pl query \
11          `[ -r $(CACHE) ] && echo '' -i $(CACHE)` >_$@ || \
12          { rm -f $@ _$@; exit 1; }
13        mv _$@ $@
14
15digi-key.dsc: $(CACHE)
16        perl ./dk-db.pl dsc $(CACHE) >$@ || { rm -f $@; exit 1; }
17
18digi-key.inv: $(CACHE)
19        perl ./dk-db.pl inv $(CACHE) >$@ || { rm -f $@; exit 1; }
20
21update:
22        $(MAKE) clean all
23
24regen regenerate:
25        rm -f digi-key.dsc digi-key.inv
26        $(MAKE) all
27
28clean:
29        rm -f $(CACHE) _$(CACHE)
30
31#
32# we don't do a "make clean" on "make spotless", so that things like "make
33# optimist" don't erase the cache.
34#
35
36spotless:
37        rm -f digi-key.dsc digi-key.inv _$(CACHE)
uart/bom/dk/digi-key.equ
1#EQU
2
3# MCU
4
5DIGI-KEY ATMEGA48-20MMU-ND ATMEL ATMEGA48-20MMU
6
7# LEDs
8
9DIGI-KEY 160-1436-1-ND LITE-ON LTST-C190KRKT
10
11# Header
12
13DIGI-KEY 3M9468-ND 3M 961103-5604-AR
uart/bom/dk/dk-db.pl
1#!/usr/bin/perl
2
3sub rows
4{
5    local $s = $_[0];
6    my @res = ();
7
8    while ($s =~ m#.*?<tr>(.*?)</tr>#) {
9    push(@res, $1);
10    $s = $';
11    }
12    return @res;
13}
14
15
16sub cols
17{
18    local $s = $_[0];
19    my @res = ();
20
21    while ($s =~ m#.*?<td[^>]*>(.*?)</td>#) {
22    push(@res, $1);
23    $s = $';
24    }
25    return @res;
26}
27
28
29sub usage
30{
31    print STDERR "usage: $0 (query [-i cache_file] | dsc | inv) [file ...]\n";
32    exit(1);
33}
34
35
36$mode = shift @ARGV;
37&usage unless $mode eq "query" || $mode eq "dsc" || $mode eq "inv";
38
39if ($mode eq "query") {
40    if ($ARGV[0] eq "-i") {
41    shift @ARGV;
42    $name = shift @ARGV;
43    open(OLD, $name) || die "$name: $!";
44    $q = join("", <OLD>);
45    ($old = $q) =~ tr/\r\n//d;
46    close OLD;
47    }
48
49    while (<>) {
50    chop;
51    s/#.*//;
52    next if /^\s*$/;
53    next if /^\s/;
54    s/\s.*//;
55    next if $old =~ m#align=right>Digi-Key Part Number</th><td>$_</td#;
56    push(@pn, $_);
57    }
58
59    if (0+@pn) {
60    $cmd = "wget -nv -O - ".join(" ",
61      map
62      "http://search.digikey.com/scripts/DkSearch/dksus.dll?Detail\\&name=$_",
63      @pn);
64    $q .= `$cmd`;
65    }
66
67    print $q;
68    exit;
69}
70
71
72$q = join("", <>);
73$q =~ tr/\r\n//d;
74
75print "#DSC\n" if $mode eq "dsc";
76print "#INV\n" if $mode eq "inv";
77print "# MACHINE-GENERATED. DO NOT EDIT !\n";
78print "# ", `date -u`;
79
80for (split(/<!DOCTYPE HTML/, $q)) {
81    next unless m#align=right>Digi-Key Part Number</th><td>([^<]+)</td#;
82    $pn = $1;
83    $qty = 0;
84    if (m#align=right>Quantity Available</th><td[^>]*>([0-9,]+)<#) {
85    ($qty = $1) =~ tr/,//d;
86    }
87    next unless m#align=right>Description</th><td>(.*?)</td#;
88    $dsc = $1;
89    next unless m#<table.*<th>Price Break<(.*?)</table>#;
90    if ($mode eq "dsc") {
91    print "DIGI-KEY $pn $dsc\n";
92    next;
93    }
94    print "DIGI-KEY $pn $qty USD";
95    for (&rows($1)) {
96    @c = &cols($_);
97    next unless $c[0] =~ /^[0-9,]+$/;
98    next unless $c[1] =~ /^[0-9.]+$/;
99    $c[0] =~ tr/,//d;
100    $c[1] =~ tr/,//d; # let's hope we don't need this one often :)
101    $c[1] =~ s/0+$// if $c[1] =~ /\./;
102    print " $c[0] $c[1]";
103    }
104    print "\n";
105}
uart/bom/uart.equ
1#EQU
2
3ATMEL ATMEGA48-MMU ATMEL ATMEGA48-20MMU
4
5UART 3M_961103-5604-AR 3M 961103-5604-AR
uart/bom/uart.inv
1#INV
2
3# Pseudo-inventory for PCB features.
4
5UART 8:10-card 999999 USD 1 0
6UART PAD_2mm 999999 USD 1 0
uart/bom/uart.sub
1#SUB
2
3# From ben-wpan/bom, which in turn inherited it from gta02-core
4
5-> T=unknown
6
7R[0-9P]* { # also handle RP...
8    -> T=R
9    VAL=*[0-9] -> R=${VAL}R
10    VAL=$R -> R=$VAL
11# -> TOL=5%
12    FN=$% -> TOL=$FN
13}
14
15RP[0-9]* {
16    -> T=RA
17    RP220[123] -> ARRAY=4
18    # the other parameters have already been taken care of by R*
19}
20
21C[0-9]* {
22    -> T=C
23    VAL=*F -> C=$VAL
24    VAL=(*F)/RF -> C=$VAL:1 X=RF # *F/RF "wins" against the *F above
25    FN=*V -> V=>=$FN
26}
27
28L[0-9]* {
29    -> T=L
30    VAL=*H -> L=$VAL
31    FN=*A -> I=>=$FN
32}
33
34B[0-9]* {
35    -> T=FILTER M=BEAD
36    VAL=$R -> R=$VAL
37    FN=*A -> I=$FN
38    FN=*R -> Rdc=$FN
39    FN=0.45R -> Rdc=450mR # hack
40}
41
42D[0-9]* {
43    -> T=D
44    VAL=*F { # heuristic to detect TVS
45    -> M=TVS
46    VAL=*F -> C=<=$VAL
47    FN=(*V)ac -> Vac=$FN:1
48    FN=(*V)dc -> Vdc=$FN:1
49
50    #
51    # Hack: some companies specify the class of varistors with Vdc = 9 V
52    # as Vac = 6.5 V while others use Vac = 7 V. Sometimes, Vac is even
53    # omitted entirely.
54    #
55    # Here, we work around the issue that Karmax use Vac = 6.5 V,
56    # Cooper/Bussmann use Vac = 7V if at all, and out schematics specify
57    # Vac = 6.5 V.
58    #
59    Vac=6.5V {
60        -> Vac=
61        -> Vdc=9V
62    }
63    }
64}
65
66VR[0-9]* -> T=D M=TVS {
67    VAL=$V -> Vdc=$VAL # neither clean nor consistent with the above
68    FN=*F -> C=<=$FN
69}
70
71X[0-9]* {
72    -> T=XTAL
73    VAL=*Hz -> F=$VAL
74    FN=*F -> C=$FN
75    FN=*ppm -> TOL=<=$FN
76}
77
78
79FP=8:10-card -> VAL=8:10-card
80FP=PAD_2mm -> VAL=PAD_2mm
uart/cam/Makefile
1.PHONY: all clean
2
3NAME=uart
4
5all: Makefile.mkmk
6
7Makefile.mkmk: mkmk ../uart.drl ../uart-PCB_Edges.gbr
8            ./mkmk
9
10../uart.drl: ../uart.brd
11            pcbnew --drill `pwd`/../uart.brd
12
13../uart-PCB_Edges.gbr: ../uart.brd
14            pcbnew --plot=gerber -l PCB_Edges `pwd`/../uart.brd
15
16-include Makefile.mkmk
17
18clean::
19            rm -f Makefile.mkmk
uart/cam/mkmk
1#!/bin/sh
2PATH=$PATH:/home/qi/cae-tools/cameo
3PATH=$PATH:/home/moko/svn.openmoko.org/developers/werner/cncmap/gp2rml
4
5NAME=uart
6X=2
7Y=0
8
9cameo <<EOF
10mm
11
12gerber 35mil ../$NAME-PCB_Edges.gbr
13align 1 8.9mm 10.4mm # align relative to board corner
14translate 4mm 4mm # move to PCB zone assigned to project
15array +3mm +3mm $X $Y
16z 0 -58.9mm # board surface (tool fully retracted)
17z 1.5mm # slack for extending the tool
18z -0.8mm # board thickness
19z -0.5mm # tool extra depth
20clear
21
22excellon ../$NAME.drl
23drill 7mil 15mil # 12.5-13.5 mil drill
24optimize
25write drill.gp
26
27remainder
28mill 25mil 0.01mm # 35 mil endmill; pretend it is a little smaller,
29            # to compensate for tool/board deflections
30write mill.gp
31
32remainder
33empty
34
35gerber 45mil ../$NAME-PCB_Edges.gbr # 35 mil endmill, -10 mil deflection
36offset
37append mill.gp
38EOF
39
40gp2rml 2 0.5 0.5 mill.gp >mill.rml
41gp2rml 2 0.1 0.5 drill.gp >drill.rml
42
43
44cat <<EOF >Makefile.mkmk
45SPOOL=/home/moko/svn.openmoko.org/developers/werner/cncmap/spool/spool
46CNGT=/home/qi/cae-tools/cngt/cngt
47
48.PHONY: mill drill cng plot dplot
49
50mill:
51        PORT=/dev/ttyUSB0 \$(SPOOL) mill.rml
52
53drill:
54        PORT=/dev/ttyUSB0 \$(SPOOL) drill.rml
55
56cng:
57        \$(CNGT) -57.4 20 mill.gp
58
59plot:
60        echo 'plot "drill.gp" with points, "mill.gp" with lines' | \\
61          gnuplot -persist
62
63dplot:
64        echo 'plot "< sed /^\$\$/d drill.gp" with linespoints' | \\
65          gnuplot -persist
66
67clean::
68        rm -f mill.gp mill.rml drill.gp drill.rml
69EOF
uart/fw/Makefile
1CFLAGS = -g -Wall -Wshadow -Werror \
2     -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
3
4CHIP=atmega48
5
6AVR_PREFIX = $(BIN_PATH) avr-
7CC = $(AVR_PREFIX)gcc
8OBJCOPY = $(AVR_PREFIX)objcopy
9#OBJDUMP = $(AVR_PREFIX)objdump
10
11.PHONY: all upload prog
12
13all: uart.bin
14
15%.elf: %.c
16    $(CC) -mmcu=$(CHIP) -Os -o $@ $<
17
18%.bin: %.elf
19    $(OBJCOPY) -j .text -j .data -O binary $< $@
20
21upload: uart.bin
22    scp uart.bin jlime:
23
24prog:
25    ssh jlime avrdude -p atmega48 -c nanonote_uart -e -U flash:w:uart.bin:r
uart/fw/uart.c
1#include <stdint.h>
2
3#include <avr/io.h>
4
5#define F_CPU 1000000UL
6#include <util/delay.h>
7
8
9#define LED 2 /* PD2 */
10
11
12int main(void)
13{
14    DDRD = 1 << LED;
15    while (1) {
16        PORTD ^= 1 << LED;
17        _delay_ms(50);
18    }
19}
uart/uart.brd
1PCBNEW-BOARD Version 1 date Mon Jan 31 21:29:39 2011
2
3# Created by Pcbnew(2010-12-27 BZR 2685)-unstable
4
5$GENERAL
6LayerCount 2
7Ly 1FFF8001
8EnabledLayers 13E88001
9Links 24
10NoConn 0
11Di 54540 41785 64794 47524
12Ndraw 17
13Ntrack 130
14Nzone 0
15BoardThickness 630
16Nmodule 11
17Nnets 18
18$EndGENERAL
19
20$SHEETDESCR
21Sheet A4 11700 8267
22Title "External UART (3.3 V) as 8:10 card"
23Date "1 feb 2011"
24Rev "20110131"
25Comp "Werner Almesberger"
26Comment1 ""
27Comment2 ""
28Comment3 ""
29Comment4 ""
30$EndSHEETDESCR
31
32$SETUP
33InternalUnit 0.000100 INCH
34ZoneGridSize 250
35Layers 2
36Layer[0] Back signal
37Layer[15] Front signal
38TrackWidth 80
39TrackClearence 78
40ZoneClearence 150
41TrackMinWidth 80
42DrawSegmWidth 50
43EdgeSegmWidth 50
44ViaSize 300
45ViaDrill 100
46ViaMinSize 300
47ViaMinDrill 100
48MicroViaSize 200
49MicroViaDrill 50
50MicroViasAllowed 0
51MicroViaMinSize 200
52MicroViaMinDrill 50
53TextPcbWidth 120
54TextPcbSize 600 800
55EdgeModWidth 150
56TextModSize 600 600
57TextModWidth 120
58PadSize 800 800
59PadDrill 400
60Pad2MaskClearance 100
61AuxiliaryAxisOrg 0 0
62$EndSETUP
63
64$EQUIPOT
65Na 0 ""
66St ~
67$EndEQUIPOT
68$EQUIPOT
69Na 1 "/CLK"
70St ~
71$EndEQUIPOT
72$EQUIPOT
73Na 2 "/MISO"
74St ~
75$EndEQUIPOT
76$EQUIPOT
77Na 3 "/MOSI"
78St ~
79$EndEQUIPOT
80$EQUIPOT
81Na 4 "/SCK"
82St ~
83$EndEQUIPOT
84$EQUIPOT
85Na 5 "/nRESET"
86St ~
87$EndEQUIPOT
88$EQUIPOT
89Na 6 "/nSS"
90St ~
91$EndEQUIPOT
92$EQUIPOT
93Na 7 "GND"
94St ~
95$EndEQUIPOT
96$EQUIPOT
97Na 8 "N-000004"
98St ~
99$EndEQUIPOT
100$EQUIPOT
101Na 9 "N-000005"
102St ~
103$EndEQUIPOT
104$EQUIPOT
105Na 10 "N-000014"
106St ~
107$EndEQUIPOT
108$EQUIPOT
109Na 11 "N-000015"
110St ~
111$EndEQUIPOT
112$EQUIPOT
113Na 12 "N-000016"
114St ~
115$EndEQUIPOT
116$EQUIPOT
117Na 13 "N-000018"
118St ~
119$EndEQUIPOT
120$EQUIPOT
121Na 14 "N-000021"
122St ~
123$EndEQUIPOT
124$EQUIPOT
125Na 15 "N-000022"
126St ~
127$EndEQUIPOT
128$EQUIPOT
129Na 16 "N-000028"
130St ~
131$EndEQUIPOT
132$EQUIPOT
133Na 17 "VDD"
134St ~
135$EndEQUIPOT
136$NCLASS
137Name "Default"
138Desc "This is the default net class."
139Clearance 78
140TrackWidth 80
141ViaDia 300
142ViaDrill 100
143uViaDia 200
144uViaDrill 50
145AddNet ""
146AddNet "/CLK"
147AddNet "/MISO"
148AddNet "/MOSI"
149AddNet "/SCK"
150AddNet "/nRESET"
151AddNet "/nSS"
152AddNet "N-000004"
153AddNet "N-000005"
154AddNet "N-000014"
155AddNet "N-000015"
156AddNet "N-000016"
157AddNet "N-000018"
158AddNet "N-000021"
159AddNet "N-000022"
160AddNet "N-000028"
161$EndNCLASS
162$NCLASS
163Name "Power"
164Desc ""
165Clearance 78
166TrackWidth 90
167ViaDia 300
168ViaDrill 100
169uViaDia 200
170uViaDrill 50
171AddNet "GND"
172AddNet "VDD"
173$EndNCLASS
174$MODULE 0402
175Po 57323 44252 1800 15 4D3AED1A 4D470BA3 ~~
176Li 0402
177Sc 4D470BA3
178AR /4D47052C
179Op 0 0 0
180At SMD
181T0 0 -150 200 200 1800 40 N V 25 N"R1"
182T1 0 150 200 200 1800 40 N I 25 N"100"
183DS -354 177 -354 -177 50 21
184DS -354 -177 354 -177 50 21
185DS 354 -177 354 177 50 21
186DS 354 177 -354 177 50 21
187$PAD
188Sh "1" R 197 236 0 0 1800
189Dr 0 0 0
190At SMD N 00888000
191Ne 9 "N-000005"
192Po -196 0
193$EndPAD
194$PAD
195Sh "2" R 197 236 0 0 1800
196Dr 0 0 0
197At SMD N 00888000
198Ne 10 "N-000014"
199Po 196 0
200$EndPAD
201$EndMODULE 0402
202$MODULE 0402
203Po 56024 44252 0 15 4D3AED1A 4D470BA5 ~~
204Li 0402
205Sc 4D470BA5
206AR /4D47052E
207Op 0 0 0
208At SMD
209T0 0 -150 200 200 0 40 N V 25 N"R2"
210T1 0 150 200 200 0 40 N I 25 N"100"
211DS -354 177 -354 -177 50 21
212DS -354 -177 354 -177 50 21
213DS 354 -177 354 177 50 21
214DS 354 177 -354 177 50 21
215$PAD
216Sh "1" R 197 236 0 0 0
217Dr 0 0 0
218At SMD N 00888000
219Ne 8 "N-000004"
220Po -196 0
221$EndPAD
222$PAD
223Sh "2" R 197 236 0 0 0
224Dr 0 0 0
225At SMD N 00888000
226Ne 11 "N-000015"
227Po 196 0
228$EndPAD
229$EndMODULE 0402
230$MODULE 0402
231Po 55669 45591 2700 15 4D3AED1A 4D470BA7 ~~
232Li 0402
233Sc 4D470BA7
234AR /4D470731
235Op 0 0 0
236At SMD
237T0 0 -150 200 200 2700 40 N V 25 N"C1"
238T1 0 150 200 200 2700 40 N I 25 N"100nF"
239DS -354 177 -354 -177 50 21
240DS -354 -177 354 -177 50 21
241DS 354 -177 354 177 50 21
242DS 354 177 -354 177 50 21
243$PAD
244Sh "1" R 197 236 0 0 2700
245Dr 0 0 0
246At SMD N 00888000
247Ne 17 "VDD"
248Po -196 0
249$EndPAD
250$PAD
251Sh "2" R 197 236 0 0 2700
252Dr 0 0 0
253At SMD N 00888000
254Ne 7 "GND"
255Po 196 0
256$EndPAD
257$EndMODULE 0402
258$MODULE 8:10-card
259Po 58780 45039 0 15 4D34E84A 4D470BA8 ~~
260Li 8:10-card
261Sc 4D470BA8
262AR /4D4702F7
263Op 0 0 0
264At SMD
265T0 0 -150 200 200 0 40 N V 25 N"P1"
266T1 0 150 200 200 0 40 N I 25 N"8:10-CARD"
267DS 0 2165 0 -2165 30 21
268DS 0 -2165 2007 -2165 30 21
269DS 2007 -2165 2322 -1850 30 21
270DS 2322 -1850 2795 -1850 30 21
271DS 2795 -1850 2795 -2165 30 21
272DS 2795 -2165 3346 -2165 30 21
273DS 3346 -2165 3897 -1614 30 21
274DS 0 2165 5905 2165 30 21
275DS 3897 -1614 5905 -1614 30 21
276DS 5905 2165 5905 -1614 30 21
277DS -551 2165 -551 -2165 30 21
278$PAD
279Sh "1" R 1181 355 0 0 0
280Dr 0 0 0
281At SMD N 00808000
282Ne 5 "/nRESET"
283Po 4920 -1239
284$EndPAD
285$PAD
286Sh "2" R 1181 355 0 0 0
287Dr 0 0 0
288At SMD N 00808000
289Ne 3 "/MOSI"
290Po 4920 -806
291$EndPAD
292$PAD
293Sh "3" R 1181 355 0 0 0
294Dr 0 0 0
295At SMD N 00808000
296Ne 6 "/nSS"
297Po 4920 -373
298$EndPAD
299$PAD
300Sh "4" R 1299 354 0 0 0
301Dr 0 0 0
302At SMD N 00808000
303Ne 17 "VDD"
304Po 4979 59
305$EndPAD
306$PAD
307Sh "5" R 1181 355 0 0 0
308Dr 0 0 0
309At SMD N 00808000
310Ne 1 "/CLK"
311Po 4920 491
312$EndPAD
313$PAD
314Sh "6" R 1299 354 0 0 0
315Dr 0 0 0
316At SMD N 00808000
317Ne 7 "GND"
318Po 4979 925
319$EndPAD
320$PAD
321Sh "7" R 1181 354 0 0 0
322Dr 0 0 0
323At SMD N 00808000
324Ne 4 "/SCK"
325Po 4920 1358
326$EndPAD
327$PAD
328Sh "8" R 1181 354 0 0 0
329Dr 0 0 0
330At SMD N 00808000
331Ne 2 "/MISO"
332Po 4920 1791
333$EndPAD
334$EndMODULE 8:10-card
335$MODULE PIN_ARRAY_3X1
336Po 56457 43504 0 15 4D471131 4D470BA9 ~~
337Li PIN_ARRAY_3X1
338Cd Connecteur 3 pins
339Kw CONN DEV
340Sc 4D470BA9
341AR /4D4704D9
342Op 0 0 0
343T0 100 -850 400 400 0 60 N V 21 N"K1"
344T1 0 -850 400 400 0 60 N I 21 N"CONN_3"
345DS -1500 500 -1500 -500 60 21
346DS -1500 -500 1500 -500 60 21
347DS 1500 -500 1500 500 60 21
348DS 1500 500 -1500 500 60 21
349DS -500 -500 -500 500 60 21
350$PAD
351Sh "1" R 800 800 0 0 0
352Dr 400 0 0
353At STD N 00E0FFFF
354Ne 8 "N-000004"
355Po -1000 0
356$EndPAD
357$PAD
358Sh "2" C 800 800 0 0 0
359Dr 400 0 0
360At STD N 00E0FFFF
361Ne 7 "GND"
362Po 0 0
363$EndPAD
364$PAD
365Sh "3" C 800 800 0 0 0
366Dr 400 0 0
367At STD N 00E0FFFF
368Ne 9 "N-000005"
369Po 1000 0
370$EndPAD
371$SHAPE3D
372Na "pin_array/pins_array_3x1.wrl"
373Sc 1.000000 1.000000 1.000000
374Of 0.000000 0.000000 0.000000
375Ro 0.000000 0.000000 0.000000
376$EndSHAPE3D
377$EndMODULE PIN_ARRAY_3X1
378$MODULE 0402
379Po 55118 44685 900 15 4D3AED1A 4D472640 ~~
380Li 0402
381Sc 4D472640
382AR /4D472610
383Op 0 0 0
384At SMD
385T0 0 -150 200 200 900 40 N V 25 N"R3"
386T1 0 150 200 200 900 40 N I 25 N"68"
387DS -354 177 -354 -177 50 21
388DS -354 -177 354 -177 50 21
389DS 354 -177 354 177 50 21
390DS 354 177 -354 177 50 21
391$PAD
392Sh "1" R 197 236 0 0 900
393Dr 0 0 0
394At SMD N 00888000
395Ne 15 "N-000022"
396Po -196 0
397$EndPAD
398$PAD
399Sh "2" R 197 236 0 0 900
400Dr 0 0 0
401At SMD N 00888000
402Ne 12 "N-000016"
403Po 196 0
404$EndPAD
405$EndMODULE 0402
406$MODULE 0603
407Po 55197 45906 2700 15 4D3AED1A 4D472641 ~~
408Li 0603
409Sc 4D472641
410AR /4D47260E
411Op 0 0 0
412At SMD
413T0 0 -150 200 200 2700 40 N V 25 N"D1"
414T1 0 150 200 200 2700 40 N I 25 N"LED"
415DS -531 275 -531 -275 50 21
416DS -531 -275 531 -275 50 21
417DS 531 -275 531 275 50 21
418DS 531 275 -531 275 50 21
419$PAD
420Sh "1" R 276 354 0 0 2700
421Dr 0 0 0
422At SMD N 00888000
423Ne 15 "N-000022"
424Po -295 0
425$EndPAD
426$PAD
427Sh "2" R 276 354 0 0 2700
428Dr 0 0 0
429At SMD N 00888000
430Ne 7 "GND"
431Po 295 0
432$EndPAD
433$EndMODULE 0603
434$MODULE PAD_2mm
435Po 55512 46929 0 15 4D34EABB 4D4727A5 ~~
436Li PAD_2mm
437Sc 4D4727A5
438AR /4D472716
439Op 0 0 0
440At SMD
441T0 0 -150 200 200 0 40 N V 25 N"P3"
442T1 0 150 200 200 0 40 N I 25 N"CONN_1"
443$PAD
444Sh "1" O 786 196 0 0 0
445Dr 0 0 0
446At SMD N 00808000
447Ne 14 "N-000021"
448Po 0 0
449$EndPAD
450$EndMODULE PAD_2mm
451$MODULE PAD_2mm
452Po 55472 46614 0 15 4D34EABB 4D4727A7 ~~
453Li PAD_2mm
454Sc 4D4727A7
455AR /4D472714
456Op 0 0 0
457At SMD
458T0 0 -150 200 200 0 40 N V 25 N"P2"
459T1 0 150 200 200 0 40 N I 25 N"CONN_1"
460$PAD
461Sh "1" O 786 196 0 0 0
462Dr 0 0 0
463At SMD N 00808000
464Ne 13 "N-000018"
465Po 0 0
466$EndPAD
467$EndMODULE PAD_2mm
468$MODULE QFN28-Atmel
469Po 57008 45630 0 15 4D472F2A 4D470C12 ~~
470Li QFN28-Atmel
471Sc 4D470C12
472AR /4D4702FE
473Op 0 0 0
474At SMD
475T0 0 -150 200 200 0 40 N V 25 N"U1"
476T1 0 150 200 200 0 40 N I 25 N"ATMEGA48-MMU"
477DS -807 -807 -669 -807 50 21
478DS -807 -807 -807 -669 50 21
479DS -807 -669 -669 -807 50 21
480DS -807 807 -807 669 50 21
481DS -807 807 -669 807 50 21
482DS -669 807 -669 807 50 21
483DS 807 807 669 807 50 21
484DS 807 807 807 669 50 21
485DS 807 669 807 669 50 21
486DS 807 -807 807 -669 50 21
487DS 807 -807 669 -807 50 21
488DS 669 -807 669 -807 50 21
489$PAD
490Sh "1" R 275 94 0 0 0
491Dr 0 0 0
492At SMD N 00888000
493Ne 0 ""
494Po -806 -531
495$EndPAD
496$PAD
497Sh "2" R 275 94 0 0 0
498Dr 0 0 0
499At SMD N 00888000
500Ne 0 ""
501Po -806 -354
502$EndPAD
503$PAD
504Sh "3" R 275 95 0 0 0
505Dr 0 0 0
506At SMD N 00888000
507Ne 17 "VDD"
508Po -806 -176
509$EndPAD
510$PAD
511Sh "4" R 275 94 0 0 0
512Dr 0 0 0
513At SMD N 00888000
514Ne 7 "GND"
515Po -806 0
516$EndPAD
517$PAD
518Sh "5" R 275 95 0 0 0
519Dr 0 0 0
520At SMD N 00888000
521Ne 1 "/CLK"
522Po -806 176
523$EndPAD
524$PAD
525Sh "6" R 275 94 0 0 0
526Dr 0 0 0
527At SMD N 00888000
528Ne 0 ""
529Po -806 354
530$EndPAD
531$PAD
532Sh "7" R 275 94 0 0 0
533Dr 0 0 0
534At SMD N 00888000
535Ne 13 "N-000018"
536Po -806 531
537$EndPAD
538$PAD
539Sh "8" R 94 275 0 0 0
540Dr 0 0 0
541At SMD N 00888000
542Ne 14 "N-000021"
543Po -531 806
544$EndPAD
545$PAD
546Sh "9" R 94 275 0 0 0
547Dr 0 0 0
548At SMD N 00888000
549Ne 16 "N-000028"
550Po -354 806
551$EndPAD
552$PAD
553Sh "10" R 95 275 0 0 0
554Dr 0 0 0
555At SMD N 00888000
556Ne 0 ""
557Po -176 806
558$EndPAD
559$PAD
560Sh "11" R 94 275 0 0 0
561Dr 0 0 0
562At SMD N 00888000
563Ne 0 ""
564Po 0 806
565$EndPAD
566$PAD
567Sh "12" R 95 275 0 0 0
568Dr 0 0 0
569At SMD N 00888000
570Ne 6 "/nSS"
571Po 176 806
572$EndPAD
573$PAD
574Sh "13" R 94 275 0 0 0
575Dr 0 0 0
576At SMD N 00888000
577Ne 3 "/MOSI"
578Po 354 806
579$EndPAD
580$PAD
581Sh "14" R 94 275 0 0 0
582Dr 0 0 0
583At SMD N 00888000
584Ne 2 "/MISO"
585Po 531 806
586$EndPAD
587$PAD
588Sh "15" R 275 94 0 0 0
589Dr 0 0 0
590At SMD N 00888000
591Ne 4 "/SCK"
592Po 806 531
593$EndPAD
594$PAD
595Sh "16" R 275 94 0 0 0
596Dr 0 0 0
597At SMD N 00888000
598Ne 17 "VDD"
599Po 806 354
600$EndPAD
601$PAD
602Sh "17" R 275 95 0 0 0
603Dr 0 0 0
604At SMD N 00888000
605Ne 0 ""
606Po 806 176
607$EndPAD
608$PAD
609Sh "18" R 275 94 0 0 0
610Dr 0 0 0
611At SMD N 00888000
612Ne 7 "GND"
613Po 806 0
614$EndPAD
615$PAD
616Sh "19" R 275 95 0 0 0
617Dr 0 0 0
618At SMD N 00888000
619Ne 0 ""
620Po 806 -176
621$EndPAD
622$PAD
623Sh "20" R 275 94 0 0 0
624Dr 0 0 0
625At SMD N 00888000
626Ne 0 ""
627Po 806 -354
628$EndPAD
629$PAD
630Sh "21" R 275 94 0 0 0
631Dr 0 0 0
632At SMD N 00888000
633Ne 0 ""
634Po 806 -531
635$EndPAD
636$PAD
637Sh "22" R 94 275 0 0 0
638Dr 0 0 0
639At SMD N 00888000
640Ne 0 ""
641Po 531 -806
642$EndPAD
643$PAD
644Sh "23" R 94 275 0 0 0
645Dr 0 0 0
646At SMD N 00888000
647Ne 0 ""
648Po 354 -806
649$EndPAD
650$PAD
651Sh "24" R 95 275 0 0 0
652Dr 0 0 0
653At SMD N 00888000
654Ne 0 ""
655Po 176 -806
656$EndPAD
657$PAD
658Sh "25" R 94 275 0 0 0
659Dr 0 0 0
660At SMD N 00888000
661Ne 5 "/nRESET"
662Po 0 -806
663$EndPAD
664$PAD
665Sh "26" R 95 275 0 0 0
666Dr 0 0 0
667At SMD N 00888000
668Ne 10 "N-000014"
669Po -176 -806
670$EndPAD
671$PAD
672Sh "27" R 94 275 0 0 0
673Dr 0 0 0
674At SMD N 00888000
675Ne 11 "N-000015"
676Po -354 -806
677$EndPAD
678$PAD
679Sh "28" R 94 275 0 0 0
680Dr 0 0 0
681At SMD N 00888000
682Ne 12 "N-000016"
683Po -531 -806
684$EndPAD
685$PAD
686Sh "29" R 944 944 0 0 0
687Dr 0 0 0
688At SMD N 00808000
689Ne 7 "GND"
690Po 0 0
691$EndPAD
692$PAD
693Sh "" R 315 315 0 0 0
694Dr 0 0 0
695At SMD N 00080000
696Ne 0 ""
697Po -196 196
698$EndPAD
699$PAD
700Sh "" R 315 315 0 0 0
701Dr 0 0 0
702At SMD N 00080000
703Ne 0 ""
704Po -196 -196
705$EndPAD
706$PAD
707Sh "" R 315 315 0 0 0
708Dr 0 0 0
709At SMD N 00080000
710Ne 0 ""
711Po 196 196
712$EndPAD
713$PAD
714Sh "" R 315 315 0 0 0
715Dr 0 0 0
716At SMD N 00080000
717Ne 0 ""
718Po 196 -196
719$EndPAD
720$EndMODULE QFN28-Atmel
721$MODULE PAD_2mm
722Po 56417 46929 0 15 4D34EABB 4D474F35 ~~
723Li PAD_2mm
724Sc 4D474F35
725AR /4D47292F
726Op 0 0 0
727At SMD
728T0 0 -150 200 200 0 40 N V 25 N"P4"
729T1 0 150 200 200 0 40 N I 25 N"CONN_1"
730$PAD
731Sh "1" O 786 196 0 0 0
732Dr 0 0 0
733At SMD N 00808000
734Ne 16 "N-000028"
735Po 0 0
736$EndPAD
737$EndMODULE PAD_2mm
738$DRAWSEGMENT
739Po 0 55039 41811 58228 41811 50
740De 28 0 900 0 0
741$EndDRAWSEGMENT
742$DRAWSEGMENT
743Po 0 54646 42205 55039 41812 50
744De 28 0 900 0 0
745$EndDRAWSEGMENT
746$DRAWSEGMENT
747Po 0 55118 47205 55197 47205 50
748De 28 0 900 0 0
749$EndDRAWSEGMENT
750$DRAWSEGMENT
751Po 0 54646 46732 55118 47204 50
752De 28 0 900 0 0
753$EndDRAWSEGMENT
754$DRAWSEGMENT
755Po 0 54646 46732 54646 42205 50
756De 28 0 900 0 0
757$EndDRAWSEGMENT
758$DRAWSEGMENT
759Po 0 58228 42874 58228 41811 50
760De 28 0 900 0 0
761$EndDRAWSEGMENT
762$TEXTPCB
763Te "110131"
764Po 59528 43425 500 500 100 0
765De 15 1 0 Normal
766$EndTEXTPCB
767$TEXTPCB
768Te "TGR"
769Po 56497 42519 600 600 120 0
770De 15 1 0 Normal
771$EndTEXTPCB
772$DRAWSEGMENT
773Po 0 60788 42874 58229 42874 50
774De 28 0 900 0 0
775$EndDRAWSEGMENT
776$DRAWSEGMENT
777Po 0 55197 47203 64686 47203 50
778De 28 0 900 0 0
779$EndDRAWSEGMENT
780$DRAWSEGMENT
781Po 0 61103 43189 60788 42874 50
782De 28 0 900 0 0
783$EndDRAWSEGMENT
784$DRAWSEGMENT
785Po 0 61575 43189 61103 43189 50
786De 28 0 900 0 0
787$EndDRAWSEGMENT
788$DRAWSEGMENT
789Po 0 61575 42874 61575 43189 50
790De 28 0 900 0 0
791$EndDRAWSEGMENT
792$DRAWSEGMENT
793Po 0 62127 42874 61575 42874 50
794De 28 0 900 0 0
795$EndDRAWSEGMENT
796$DRAWSEGMENT
797Po 0 62678 43425 62127 42874 50
798De 28 0 900 0 0
799$EndDRAWSEGMENT
800$DRAWSEGMENT
801Po 0 64686 43425 62678 43425 50
802De 28 0 900 0 0
803$EndDRAWSEGMENT
804$DRAWSEGMENT
805Po 0 64686 43425 64686 47204 50
806De 28 0 900 0 0
807$EndDRAWSEGMENT
808$TRACK
809Po 0 56202 45806 55966 45806 80 -1
810De 15 0 1 0 800
811Po 0 58504 46102 59076 45530 80 -1
812De 15 0 1 0 0
813Po 3 58346 46102 58346 46102 300 -1
814De 15 1 1 0 0
815Po 0 59076 45530 63700 45530 80 -1
816De 15 0 1 0 400
817Po 0 58346 46102 58504 46102 80 -1
818De 15 0 1 0 0
819Po 0 55788 46102 58346 46102 80 -1
820De 0 0 1 0 0
821Po 0 55709 46181 55788 46102 80 -1
822De 0 0 1 0 0
823Po 3 55709 46181 55709 46181 300 -1
824De 15 1 1 0 0
825Po 0 55945 45945 55709 46181 80 -1
826De 15 0 1 0 0
827Po 0 55945 45827 55945 45945 80 -1
828De 15 0 1 0 0
829Po 0 55966 45806 55945 45827 80 -1
830De 15 0 1 0 0
831Po 0 58071 46968 57952 46968 80 -1
832De 15 0 2 0 0
833Po 0 57539 46555 57539 46436 80 -1
834De 15 0 2 0 400
835Po 0 57952 46968 57539 46555 80 -1
836De 15 0 2 0 0
837Po 0 58070 46968 58071 46968 80 -1
838De 15 0 2 0 0
839Po 0 58071 46968 59174 46968 80 -1
840De 15 0 2 0 0
841Po 0 59312 46830 63700 46830 80 -1
842De 15 0 2 0 400
843Po 0 59312 46830 59174 46968 80 -1
844De 15 0 2 0 0
845Po 0 58504 46969 57560 46969 80 -1
846De 0 0 3 0 0
847Po 0 58347 44528 58782 44963 80 -1
848De 0 0 3 0 0
849Po 0 58782 44963 58782 46691 80 -1
850De 0 0 3 0 0
851Po 0 58782 46691 58504 46969 80 -1
852De 0 0 3 0 0
853Po 0 58799 44233 58641 44233 80 -1
854De 15 0 3 0 0
855Po 0 63700 44233 58799 44233 80 -1
856De 15 0 3 0 800
857Po 3 58346 44528 58346 44528 300 -1
858De 15 1 3 0 0
859Po 0 58641 44233 58346 44528 80 -1
860De 15 0 3 0 0
861Po 0 58346 44528 58347 44528 80 -1
862De 0 0 3 0 0
863Po 0 57362 46771 57362 46436 80 -1
864De 15 0 3 0 400
865Po 0 57441 46850 57362 46771 80 -1
866De 15 0 3 0 0
867Po 3 57441 46850 57441 46850 300 -1
868De 15 1 3 0 0
869Po 0 57560 46969 57441 46850 80 -1
870De 0 0 3 0 0
871Po 0 57814 46161 57932 46161 80 -1
872De 15 0 4 0 800
873Po 0 58997 46397 63700 46397 80 -1
874De 15 0 4 0 400
875Po 0 58997 46397 58623 46771 80 -1
876De 15 0 4 0 0
877Po 0 58149 46771 58623 46771 80 -1
878De 15 0 4 0 0
879Po 0 58031 46653 58149 46771 80 -1
880De 15 0 4 0 0
881Po 0 58031 46260 58031 46653 80 -1
882De 15 0 4 0 0
883Po 0 57932 46161 58031 46260 80 -1
884De 15 0 4 0 0
885Po 0 58759 43800 58681 43800 80 -1
886De 15 0 5 0 0
887Po 0 63700 43800 58759 43800 80 -1
888De 15 0 5 0 800
889Po 0 57008 44567 57008 44824 80 -1
890De 15 0 5 0 400
891Po 0 57047 44528 57008 44567 80 -1
892De 15 0 5 0 0
893Po 0 57953 44528 57047 44528 80 -1
894De 15 0 5 0 0
895Po 0 58681 43800 57953 44528 80 -1
896De 15 0 5 0 0
897Po 0 58465 46772 58111 46772 80 -1
898De 0 0 6 0 0
899Po 0 58347 44921 58622 45196 80 -1
900De 0 0 6 0 0
901Po 0 58622 45196 58622 46615 80 -1
902De 0 0 6 0 0
903Po 0 58622 46615 58465 46772 80 -1
904De 0 0 6 0 0
905Po 0 58759 44666 58601 44666 80 -1
906De 15 0 6 0 0
907Po 0 63700 44666 58759 44666 80 -1
908De 15 0 6 0 800
909Po 3 58346 44921 58346 44921 300 -1
910De 15 1 6 0 0
911Po 0 58601 44666 58346 44921 80 -1
912De 15 0 6 0 0
913Po 0 58346 44921 58347 44921 80 -1
914De 0 0 6 0 0
915Po 0 57184 46713 57184 46436 80 -1
916De 15 0 6 0 400
917Po 0 57047 46850 57184 46713 80 -1
918De 15 0 6 0 0
919Po 3 57047 46850 57047 46850 300 -1
920De 15 1 6 0 0
921Po 0 57362 46535 57047 46850 80 -1
922De 0 0 6 0 0
923Po 0 57874 46535 57362 46535 80 -1
924De 0 0 6 0 0
925Po 0 58111 46772 57874 46535 80 -1
926De 0 0 6 0 0
927Po 0 58346 46496 58228 46496 90 -1
928De 0 0 7 0 0
929Po 0 58504 46496 59036 45964 80 -1
930De 15 0 7 0 0
931Po 3 58346 46496 58346 46496 300 -1
932De 15 1 7 0 0
933Po 0 63759 45964 59036 45964 95 -1
934De 15 0 7 0 800
935Po 0 58346 46496 58504 46496 80 -1
936De 15 0 7 0 0
937Po 0 55394 44803 55394 46417 95 -1
938De 0 0 7 0 0
939Po 0 55394 46417 55591 46614 95 -1
940De 0 0 7 0 0
941Po 0 55591 46614 56063 46614 95 -1
942De 0 0 7 0 0
943Po 0 56063 46614 56181 46496 95 -1
944De 0 0 7 0 0
945Po 0 55552 44645 56693 44645 90 -1
946De 0 0 7 0 0
947Po 0 55552 44645 55394 44803 95 -1
948De 0 0 7 0 0
949Po 0 56338 46339 56181 46496 90 -1
950De 0 0 7 0 0
951Po 0 58071 46339 56338 46339 90 -1
952De 0 0 7 0 0
953Po 0 58228 46496 58071 46339 90 -1
954De 0 0 7 0 0
955Po 0 57814 45630 57008 45630 90 -1
956De 15 0 7 0 C00
957Po 0 56202 45630 57008 45630 90 -1
958De 15 0 7 0 C00
959Po 0 55669 45787 55611 45787 90 -1
960De 15 0 7 0 800
961Po 0 55611 45787 55197 46201 90 -1
962De 15 0 7 0 400
963Po 0 56202 45630 55826 45630 90 -1
964De 15 0 7 0 800
965Po 0 55826 45630 55669 45787 90 -1
966De 15 0 7 0 400
967Po 0 56693 44645 56693 44252 90 -1
968De 0 0 7 0 0
969Po 0 56457 44016 56693 44252 90 -1
970De 15 0 7 0 0
971Po 3 56693 44252 56693 44252 300 -1
972De 15 1 7 0 0
973Po 0 56457 44016 56457 43504 90 -1
974De 15 0 7 0 400
975Po 0 56772 44645 57676 44645 80 -1
976De 0 0 7 0 0
977Po 0 58031 45630 58346 45315 90 -1
978De 15 0 7 0 0
979Po 3 58346 45315 58346 45315 300 -1
980De 15 1 7 0 0
981Po 0 57814 45630 58031 45630 90 -1
982De 15 0 7 0 800
983Po 0 57676 44645 58346 45315 80 -1
984De 0 0 7 0 0
985Po 0 56772 44645 56693 44645 90 -1
986De 0 0 7 0 0
987Po 0 55457 43504 55457 43881 80 -1
988De 15 0 8 0 800
989Po 0 55457 43881 55828 44252 80 -1
990De 15 0 8 0 400
991Po 0 57519 44252 57519 43566 80 -1
992De 15 0 9 0 800
993Po 0 57519 43566 57457 43504 80 -1
994De 15 0 9 0 400
995Po 0 56832 44824 56832 44506 80 -1
996De 15 0 10 0 800
997Po 0 57086 44252 57127 44252 80 -1
998De 15 0 10 0 400
999Po 0 56832 44506 57086 44252 80 -1
1000De 15 0 10 0 0
1001Po 0 56654 44824 56654 44607 80 -1
1002De 15 0 11 0 800
1003Po 0 56299 44252 56220 44252 80 -1
1004De 15 0 11 0 400
1005Po 0 56654 44607 56299 44252 80 -1
1006De 15 0 11 0 0
1007Po 0 56477 44824 56477 44745 80 -1
1008De 15 0 12 0 800
1009Po 0 55157 44528 55118 44489 80 -1
1010De 15 0 12 0 400
1011Po 0 56260 44528 55157 44528 80 -1
1012De 15 0 12 0 0
1013Po 0 56477 44745 56260 44528 80 -1
1014De 15 0 12 0 0
1015Po 0 56202 46161 56122 46161 80 -1
1016De 15 0 13 0 800
1017Po 0 55788 46614 55472 46614 80 -1
1018De 15 0 13 0 400
1019Po 0 56024 46378 55788 46614 80 -1
1020De 15 0 13 0 0
1021Po 0 56024 46259 56024 46378 80 -1
1022De 15 0 13 0 0
1023Po 0 56122 46161 56024 46259 80 -1
1024De 15 0 13 0 0
1025Po 0 56477 46436 56477 46516 80 -1
1026De 15 0 14 0 800
1027Po 0 55788 46929 55512 46929 80 -1
1028De 15 0 14 0 400
1029Po 0 56063 46654 55788 46929 80 -1
1030De 15 0 14 0 0
1031Po 0 56339 46654 56063 46654 80 -1
1032De 15 0 14 0 0
1033Po 0 56477 46516 56339 46654 80 -1
1034De 15 0 14 0 0
1035Po 0 55118 44881 55118 45532 80 -1
1036De 15 0 15 0 800
1037Po 0 55118 45532 55197 45611 80 -1
1038De 15 0 15 0 400
1039Po 0 56654 46436 56654 46692 80 -1
1040De 15 0 16 0 800
1041Po 0 56654 46692 56417 46929 80 -1
1042De 15 0 16 0 400
1043Po 0 55669 45395 55669 45001 90 -1
1044De 15 0 17 0 800
1045Po 3 58346 45709 58346 45709 300 -1
1046De 15 1 17 0 0
1047Po 0 56457 45709 58346 45709 90 -1
1048De 0 0 17 0 0
1049Po 0 55709 44961 56457 45709 90 -1
1050De 0 0 17 0 0
1051Po 3 55709 44961 55709 44961 300 -1
1052De 15 1 17 0 0
1053Po 0 55669 45001 55709 44961 90 -1
1054De 15 0 17 0 0
1055Po 0 56202 45454 55728 45454 90 -1
1056De 15 0 17 0 800
1057Po 0 55728 45454 55669 45395 90 -1
1058De 15 0 17 0 400
1059Po 0 58346 45709 58503 45709 90 -1
1060De 15 0 17 0 0
1061Po 0 63759 45098 59114 45098 95 -1
1062De 15 0 17 0 800
1063Po 0 58503 45709 59114 45098 90 -1
1064De 15 0 17 0 0
1065Po 0 58071 45984 58346 45709 90 -1
1066De 15 0 17 0 1
1067Po 0 58071 45984 57814 45984 90 -1
1068De 15 0 17 0 400
1069$EndTRACK
1070$ZONE
1071$EndZONE
1072$CZONE_OUTLINE
1073ZInfo 4D471C9C 7 "GND"
1074ZLayer 0
1075ZAux 8 E
1076ZClearance 150 T
1077ZMinThickness 100
1078ZOptions 1 16 F 200 200
1079ZCorner 64607 47126 0
1080ZCorner 64607 43504 0
1081ZCorner 61300 43504 0
1082ZCorner 60749 42952 0
1083ZCorner 54961 42953 0
1084ZCorner 54764 43150 0
1085ZCorner 54764 46693 0
1086ZCorner 55197 47126 1
1087$POLYSCORNERS
108855190 47029 0 0
108955197 47028 0 0
109056743 47028 0 0
109156698 46919 0 0
109256698 46780 0 0
109356751 46652 0 0
109456850 46554 0 0
109556978 46501 0 0
109657056 46501 0 0
109757192 46365 0 0
109857226 46342 0 0
109956020 46342 0 0
110056005 46379 0 0
110155906 46477 0 0
110255778 46530 0 0
110355639 46530 0 0
110455511 46477 0 0
110555413 46378 0 0
110655360 46250 0 0
110755360 46111 0 0
110855413 45983 0 0
110955512 45885 0 0
111055640 45832 0 0
111155779 45832 0 0
111255851 45862 0 0
111356263 45862 0 0
111455711 45310 0 0
111555639 45310 0 0
111655511 45257 0 0
111755413 45158 0 0
111855360 45030 0 0
111955360 44891 0 0
112055413 44763 0 0
112155512 44665 0 0
112255640 44612 0 0
112355779 44612 0 0
112455907 44665 0 0
112556005 44764 0 0
112656058 44892 0 0
112756058 44963 0 0
112856354 45259 0 1
112956354 44145 0 0
113056117 44058 0 0
113156079 43953 0 0
113256456 43575 0 0
113356835 43953 0 0
113456797 44058 0 0
113556608 44135 0 0
113656354 44145 0 1
113756354 45259 0 0
113856558 45464 0 0
113958097 45464 0 0
114058149 45413 0 0
114158277 45360 0 0
114258382 45360 0 0
114358382 45295 0 0
114458356 45270 0 0
114558276 45270 0 0
114658148 45217 0 0
114758050 45118 0 0
114857997 44990 0 0
114957997 44851 0 0
115058049 44723 0 0
115157997 44597 0 0
115257997 44458 0 0
115358050 44330 0 0
115458149 44232 0 0
115558277 44179 0 0
115658416 44179 0 0
115758544 44232 0 0
115858642 44331 0 0
115958695 44459 0 0
116058695 44536 0 0
116158952 44793 0 0
116259004 44871 0 0
116359022 44963 0 0
116459022 46691 0 0
116559004 46783 0 0
116658952 46861 0 0
116758785 47028 0 0
116864511 47028 0 0
116964511 43600 0 0
117062678 43600 0 0
117162611 43587 0 0
117262561 43554 0 0
117361279 43554 0 0
117461086 43360 0 0
117561035 43351 0 0
117661012 43335 0 0
117760979 43313 0 0
117860977 43310 0 0
117960715 43049 0 0
118058229 43049 0 0
118158228 43048 0 0
118258228 43049 0 0
118358161 43036 0 0
118458110 43002 0 0
118557802 43002 0 0
118657965 43165 0 0
118758056 43385 0 0
118858056 43623 0 0
118957965 43843 0 0
119057796 44012 0 0
119157576 44103 0 0
119257338 44103 0 0
119357118 44012 0 0
119456966 43860 0 0
119556906 43882 0 0
119656528 43504 0 0
119756906 43126 0 0
119856966 43147 0 0
119957111 43002 0 0
120056815 43002 0 0
120156835 43055 0 0
120256456 43432 0 0
120356079 43055 0 0
120456098 43002 0 0
120556030 43002 0 0
120656048 43048 0 0
120756060 43037 0 0
120856456 43432 0 0
120956386 43504 0 0
121056056 43173 0 0
121156056 43174 0 0
121256386 43504 0 0
121356056 43834 0 0
121456056 43834 0 0
121556386 43504 0 0
121656456 43575 0 0
121756060 43971 0 0
121856049 43960 0 0
121956025 44017 0 0
122055969 44073 0 0
122155896 44103 0 0
122255017 44103 0 0
122354944 44072 0 0
122454888 44016 0 0
122554858 43943 0 0
122654858 43125 0 0
122754821 43162 0 0
122854821 46659 1 0
122958365 46532 0 0
123058382 46515 0 0
123158382 46451 0 0
123258276 46451 0 0
123358148 46398 0 0
123458092 46342 0 0
123558009 46342 0 0
123658044 46365 0 0
123758211 46532 1 0
1238$endPOLYSCORNERS
1239$FILLSEGMENTS
124056030 43002 56098 43002
124156815 43002 57111 43002
124257802 43002 58110 43002
124356106 43082 56106 43082
124456807 43082 57031 43082
124557882 43082 60748 43082
124654821 43162 54858 43162
124756186 43162 56186 43162
124856727 43162 56870 43162
124957962 43162 60828 43162
125054821 43242 54858 43242
125156124 43242 56124 43242
125256266 43242 56266 43242
125356647 43242 56790 43242
125457997 43242 60908 43242
125554821 43322 54858 43322
125656204 43322 56204 43322
125756346 43322 56346 43322
125856566 43322 56710 43322
125958030 43322 60992 43322
126054821 43402 54858 43402
126156284 43402 56284 43402
126256426 43402 56426 43402
126356486 43402 56630 43402
126458056 43402 61127 43402
126554821 43482 54858 43482
126656364 43482 56364 43482
126756407 43482 56550 43482
126858056 43482 61207 43482
126954821 43562 54858 43562
127056328 43562 56328 43562
127156444 43562 56586 43562
127258056 43562 62573 43562
127354821 43642 54858 43642
127456248 43642 56248 43642
127556389 43642 56390 43642
127656524 43642 56666 43642
127758048 43642 64511 43642
127854821 43722 54858 43722
127956168 43722 56168 43722
128056309 43722 56310 43722
128156604 43722 56746 43722
128258015 43722 64511 43722
128354821 43802 54858 43802
128456088 43802 56088 43802
128556229 43802 56230 43802
128656684 43802 56826 43802
128757981 43802 64511 43802
128854821 43882 54858 43882
128956149 43882 56150 43882
129056764 43882 56988 43882
129157926 43882 64511 43882
129254821 43962 54865 43962
129356048 43962 56051 43962
129456069 43962 56082 43962
129556831 43962 57068 43962
129657846 43962 64511 43962
129754821 44042 54914 44042
129856000 44042 56111 44042
129956802 44042 57190 44042
130057723 44042 64511 44042
130154821 44122 56291 44122
130256639 44122 64511 44122
130354821 44202 58222 44202
130458472 44202 64511 44202
130554821 44282 58099 44282
130658594 44282 64511 44282
130754821 44362 58037 44362
130858655 44362 64511 44362
130954821 44442 58004 44442
131058688 44442 64511 44442
131154821 44522 57997 44522
131258695 44522 64511 44522
131354821 44602 57999 44602
131458761 44602 64511 44602
131554821 44682 55495 44682
131655924 44682 58032 44682
131758841 44682 64511 44682
131854821 44762 55415 44762
131956004 44762 58034 44762
132058921 44762 64511 44762
132154821 44842 55381 44842
132256038 44842 58001 44842
132358985 44842 64511 44842
132454821 44922 55360 44922
132556058 44922 57997 44922
132659014 44922 64511 44922
132754821 45002 55360 45002
132856097 45002 58001 45002
132959022 45002 64511 45002
133054821 45082 55381 45082
133156177 45082 58035 45082
133259022 45082 64511 45082
133354821 45162 55416 45162
133456257 45162 58093 45162
133559022 45162 64511 45162
133654821 45242 55496 45242
133756337 45242 58208 45242
133859022 45242 64511 45242
133954821 45322 55723 45322
134056417 45322 58382 45322
134159022 45322 64511 45322
134254821 45402 55803 45402
134356497 45402 58176 45402
134459022 45402 64511 45402
134554821 45482 55883 45482
134659022 45482 64511 45482
134754821 45562 55963 45562
134859022 45562 64511 45562
134954821 45642 56043 45642
135059022 45642 64511 45642
135154821 45722 56123 45722
135259022 45722 64511 45722
135354821 45802 56203 45802
135459022 45802 64511 45802
135554821 45882 55520 45882
135659022 45882 64511 45882
135754821 45962 55435 45962
135859022 45962 64511 45962
135954821 46042 55389 46042
136059022 46042 64511 46042
136154821 46122 55360 46122
136259022 46122 64511 46122
136354821 46202 55360 46202
136459022 46202 64511 46202
136554821 46282 55373 46282
136659022 46282 64511 46282
136754821 46362 55406 46362
136856011 46362 57197 46362
136959022 46362 64511 46362
137054821 46442 55476 46442
137155941 46442 57115 46442
137259022 46442 64511 46442
137354821 46522 55619 46522
137455797 46522 56928 46522
137559022 46522 64511 46522
137654821 46602 56802 46602
137759022 46602 64511 46602
137854844 46682 56739 46682
137959022 46682 64511 46682
138054924 46762 56706 46762
138159008 46762 64511 46762
138255004 46842 56698 46842
138358964 46842 64511 46842
138455084 46922 56699 46922
138558891 46922 64511 46922
138655164 47002 56732 47002
138758811 47002 64511 47002
138858009 46342 58092 46342
138958101 46422 58205 46422
139058181 46502 58382 46502
1391$endFILLSEGMENTS
1392$endCZONE_OUTLINE
1393$EndBOARD
uart/uart.cmp
1Cmp-Mod V01 Created by CvPCB (2010-12-27 BZR 2685)-unstable date = Mon Jan 31 18:30:06 2011
2
3BeginCmp
4TimeStamp = /4D470731;
5Reference = C1;
6ValeurCmp = 100nF;
7IdModule = 0402;
8EndCmp
9
10BeginCmp
11TimeStamp = /4D47260E;
12Reference = D1;
13ValeurCmp = LED;
14IdModule = 0603;
15EndCmp
16
17BeginCmp
18TimeStamp = /4D4704D9;
19Reference = K1;
20ValeurCmp = CONN_3;
21IdModule = PIN_ARRAY_3X1;
22EndCmp
23
24BeginCmp
25TimeStamp = /4D4702F7;
26Reference = P1;
27ValeurCmp = 8:10-CARD;
28IdModule = 8:10-card;
29EndCmp
30
31BeginCmp
32TimeStamp = /4D472714;
33Reference = P2;
34ValeurCmp = CONN_1;
35IdModule = PAD_2mm;
36EndCmp
37
38BeginCmp
39TimeStamp = /4D472716;
40Reference = P3;
41ValeurCmp = CONN_1;
42IdModule = PAD_2mm;
43EndCmp
44
45BeginCmp
46TimeStamp = /4D47292F;
47Reference = P4;
48ValeurCmp = CONN_1;
49IdModule = PAD_2mm;
50EndCmp
51
52BeginCmp
53TimeStamp = /4D47052C;
54Reference = R1;
55ValeurCmp = 100;
56IdModule = 0402;
57EndCmp
58
59BeginCmp
60TimeStamp = /4D47052E;
61Reference = R2;
62ValeurCmp = 100;
63IdModule = 0402;
64EndCmp
65
66BeginCmp
67TimeStamp = /4D472610;
68Reference = R3;
69ValeurCmp = 68;
70IdModule = 0402;
71EndCmp
72
73BeginCmp
74TimeStamp = /4D4702FE;
75Reference = U1;
76ValeurCmp = ATMEGA48-MMU;
77IdModule = QFN28-Atmel;
78EndCmp
79
80EndListe
uart/uart.pro
1update=Mon Jan 31 19:00:31 2011
2last_client=pcbnew
3[eeschema]
4version=1
5LibDir=
6NetFmt=1
7HPGLSpd=20
8HPGLDm=15
9HPGLNum=1
10offX_A4=0
11offY_A4=0
12offX_A3=0
13offY_A3=0
14offX_A2=0
15offY_A2=0
16offX_A1=0
17offY_A1=0
18offX_A0=0
19offY_A0=0
20offX_A=0
21offY_A=0
22offX_B=0
23offY_B=0
24offX_C=0
25offY_C=0
26offX_D=0
27offY_D=0
28offX_E=0
29offY_E=0
30RptD_X=0
31RptD_Y=100
32RptLab=1
33LabSize=60
34PrintMonochrome=1
35ShowSheetReferenceAndTitleBlock=1
36[eeschema/libraries]
37LibName1=power
38LibName2=device
39LibName3=conn
40LibName4=../../kicad-libs/components/8_10-card
41LibName5=../components/atmega48-mmu
42[cvpcb]
43version=1
44NetIExt=net
45[cvpcb/libraries]
46EquName1=devcms
47[pcbnew]
48version=1
49PadDrlX=400
50PadDimH=800
51PadDimV=800
52BoardThickness=630
53SgPcb45=1
54TxtPcbV=800
55TxtPcbH=600
56TxtModV=600
57TxtModH=600
58TxtModW=120
59VEgarde=100
60DrawLar=50
61EdgeLar=50
62TxtLar=120
63MSegLar=150
64LastNetListRead=uart.net
65[pcbnew/libraries]
66LibDir=
67LibName1=pin_array
68LibName2=../../kicad-libs/modules/stdpass
69LibName3=../../kicad-libs/modules/8_10-card
70LibName4=../../ben-wpan/modules/qfn
71LibName5=../../kicad-libs/modules/pads
uart/uart.sch
1EESchema Schematic File Version 2 date Sun Feb 6 17:42:09 2011
2LIBS:power
3LIBS:device
4LIBS:conn
5LIBS:8_10-card
6LIBS:atmega48-mmu
7EELAYER 24 0
8EELAYER END
9$Descr A4 11700 8267
10Sheet 1 1
11Title "External UART (3.3 V) as 8:10 card"
12Date "2 feb 2011"
13Rev "20110131"
14Comp "Werner Almesberger"
15Comment1 ""
16Comment2 ""
17Comment3 ""
18Comment4 ""
19$EndDescr
20Wire Wire Line
21    4950 4550 4950 5350
22Wire Wire Line
23    4950 5350 8050 5350
24Wire Wire Line
25    3100 3600 2700 3600
26Wire Wire Line
27    2700 3600 2700 4550
28Wire Wire Line
29    2700 4550 2400 4550
30Wire Wire Line
31    2400 4750 4350 4750
32Wire Wire Line
33    4350 4750 4350 4550
34Wire Wire Line
35    3450 1550 3650 1550
36Wire Wire Line
37    5250 4550 5250 5850
38Wire Wire Line
39    5250 5850 8050 5850
40Wire Wire Line
41    8050 5150 6200 5150
42Wire Wire Line
43    1850 3600 1850 4000
44Wire Wire Line
45    3100 3000 1850 3000
46Wire Wire Line
47    6700 3450 6500 3450
48Wire Wire Line
49    3100 3300 2900 3300
50Wire Wire Line
51    2900 3300 2900 5550
52Wire Wire Line
53    2900 5550 8050 5550
54Wire Wire Line
55    4300 1050 4500 1050
56Wire Wire Line
57    3300 1050 3800 1050
58Wire Wire Line
59    3500 1250 3500 950
60Wire Wire Line
61    3500 950 3300 950
62Wire Wire Line
63    4500 1050 4500 1750
64Wire Wire Line
65    4650 1750 4650 850
66Wire Wire Line
67    3300 850 3800 850
68Wire Wire Line
69    4650 850 4300 850
70Wire Wire Line
71    5700 4550 5700 4750
72Wire Wire Line
73    6500 3600 6700 3600
74Wire Wire Line
75    7250 6050 7250 5650
76Wire Wire Line
77    7250 5650 8050 5650
78Wire Wire Line
79    6500 3150 6700 3150
80Wire Wire Line
81    8050 5450 7250 5450
82Wire Wire Line
83    7250 5450 7250 4950
84Wire Wire Line
85    1850 3200 1850 2800
86Connection ~ 1850 3000
87Wire Wire Line
88    1850 3800 2350 3800
89Connection ~ 1850 3800
90Wire Wire Line
91    2350 3800 2350 3150
92Wire Wire Line
93    2350 3150 3100 3150
94Wire Wire Line
95    4800 1750 4800 850
96Wire Wire Line
97    4800 850 5350 850
98Wire Wire Line
99    8050 5750 6700 5750
100Wire Wire Line
101    6700 5750 6700 3600
102Wire Wire Line
103    2850 1750 2850 1550
104Wire Wire Line
105    2850 1550 3050 1550
106Wire Wire Line
107    4350 1750 4350 1550
108Wire Wire Line
109    4350 1550 4150 1550
110Wire Wire Line
111    2400 4950 4500 4950
112Wire Wire Line
113    4500 4950 4500 4550
114Wire Wire Line
115    8050 5250 5100 5250
116Wire Wire Line
117    5100 5250 5100 4550
118Text Label 7550 5350 0 60 ~ 0
119nSS
120NoConn ~ 6500 2700
121$Comp
122L CONN_1 P4
123U 1 1 4D47292F
124P 2250 4950
125F 0 "P4" H 2330 4950 40 0000 L CNN
126F 1 "CONN_1" H 2250 5005 30 0001 C CNN
127F 2 "PAD_2mm" H 2250 4950 60 0001 C CNN
128    1 2250 4950
129    -1 0 0 1
130$EndComp
131$Comp
132L GND #PWR01
133U 1 1 4D4728FC
134P 2850 1750
135F 0 "#PWR01" H 2850 1750 30 0001 C CNN
136F 1 "GND" H 2850 1680 30 0001 C CNN
137    1 2850 1750
138    1 0 0 -1
139$EndComp
140$Comp
141L CONN_1 P3
142U 1 1 4D472716
143P 2250 4750
144F 0 "P3" H 2330 4750 40 0000 L CNN
145F 1 "CONN_1" H 2250 4805 30 0001 C CNN
146F 2 "PAD_2mm" H 2250 4750 60 0001 C CNN
147    1 2250 4750
148    -1 0 0 1
149$EndComp
150$Comp
151L CONN_1 P2
152U 1 1 4D472714
153P 2250 4550
154F 0 "P2" H 2330 4550 40 0000 L CNN
155F 1 "CONN_1" H 2250 4605 30 0001 C CNN
156F 2 "PAD_2mm" H 2250 4550 60 0001 C CNN
157    1 2250 4550
158    -1 0 0 1
159$EndComp
160$Comp
161L R R3
162U 1 1 4D472610
163P 3900 1550
164F 0 "R3" V 3980 1550 50 0000 C CNN
165F 1 "68" V 3900 1550 50 0000 C CNN
166F 2 "0402" H 3900 1550 60 0001 C CNN
167    1 3900 1550
168    0 -1 -1 0
169$EndComp
170$Comp
171L LED D1
172U 1 1 4D47260E
173P 3250 1550
174F 0 "D1" H 3250 1650 50 0000 C CNN
175F 1 "LTST-C190KRKT" H 3250 1450 50 0000 C CNN
176F 2 "0603" H 3250 1550 60 0001 C CNN
177    1 3250 1550
178    -1 0 0 -1
179$EndComp
180Text Label 7550 5550 0 60 ~ 0
181CLK
182Text Label 7550 5150 0 60 ~ 0
183nRESET
184Text Label 7550 5750 0 60 ~ 0
185SCK
186Text Label 7550 5850 0 60 ~ 0
187MISO
188Text Label 7550 5250 0 60 ~ 0
189MOSI
190Text Label 5000 850 0 60 ~ 0
191nRESET
192Text Label 6500 5150 2 60 ~ 0
193nRESET
194$Comp
195L C C1
196U 1 1 4D470731
197P 1850 3400
198F 0 "C1" H 1900 3500 50 0000 L CNN
199F 1 "100nF" H 1900 3300 50 0000 L CNN
200F 2 "0402" H 1850 3400 60 0001 C CNN
201    1 1850 3400
202    1 0 0 -1
203$EndComp
204NoConn ~ 3100 3450
205NoConn ~ 6500 2850
206NoConn ~ 6500 3000
207NoConn ~ 6500 3300
208$Comp
209L GND #PWR02
210U 1 1 4D470651
211P 6700 3150
212F 0 "#PWR02" H 6700 3150 30 0001 C CNN
213F 1 "GND" H 6700 3080 30 0001 C CNN
214    1 6700 3150
215    0 -1 -1 0
216$EndComp
217$Comp
218L VDD #PWR03
219U 1 1 4D470644
220P 1850 2800
221F 0 "#PWR03" H 1850 2900 30 0001 C CNN
222F 1 "VDD" H 1850 2910 30 0000 C CNN
223    1 1850 2800
224    1 0 0 -1
225$EndComp
226$Comp
227L VDD #PWR04
228U 1 1 4D470639
229P 6700 3450
230F 0 "#PWR04" H 6700 3550 30 0001 C CNN
231F 1 "VDD" H 6700 3560 30 0000 C CNN
232    1 6700 3450
233    0 1 1 0
234$EndComp
235$Comp
236L VDD #PWR05
237U 1 1 4D47062B
238P 7250 4950
239F 0 "#PWR05" H 7250 5050 30 0001 C CNN
240F 1 "VDD" H 7250 5060 30 0000 C CNN
241    1 7250 4950
242    1 0 0 -1
243$EndComp
244$Comp
245L GND #PWR06
246U 1 1 4D470615
247P 7250 6050
248F 0 "#PWR06" H 7250 6050 30 0001 C CNN
249F 1 "GND" H 7250 5980 30 0001 C CNN
250    1 7250 6050
251    1 0 0 -1
252$EndComp
253NoConn ~ 4800 4550
254NoConn ~ 4650 4550
255NoConn ~ 3100 2850
256NoConn ~ 3100 2700
257NoConn ~ 5250 1750
258NoConn ~ 5100 1750
259NoConn ~ 4950 1750
260$Comp
261L R R2
262U 1 1 4D47052E
263P 4050 1050
264F 0 "R2" V 4130 1050 50 0000 C CNN
265F 1 "100" V 4050 1050 50 0000 C CNN
266F 2 "0402" H 4050 1050 60 0001 C CNN
267    1 4050 1050
268    0 -1 -1 0
269$EndComp
270$Comp
271L R R1
272U 1 1 4D47052C
273P 4050 850
274F 0 "R1" V 4130 850 50 0000 C CNN
275F 1 "100" V 4050 850 50 0000 C CNN
276F 2 "0402" H 4050 850 60 0001 C CNN
277    1 4050 850
278    0 -1 -1 0
279$EndComp
280$Comp
281L GND #PWR07
282U 1 1 4D4704FA
283P 3500 1250
284F 0 "#PWR07" H 3500 1250 30 0001 C CNN
285F 1 "GND" H 3500 1180 30 0001 C CNN
286    1 3500 1250
287    1 0 0 -1
288$EndComp
289$Comp
290L CONN_3 K1
291U 1 1 4D4704D9
292P 2950 950
293F 0 "K1" V 2900 950 50 0000 C CNN
294F 1 "3M 961103-5604-AR" H 2950 1200 50 0000 C CNN
295F 2 "CONN_3" H 2950 950 60 0001 C CNN
296F 4 "(or any similar 0.1 in header)" H 3050 1300 50 0000 C CNN "Field4"
297    1 2950 950
298    -1 0 0 1
299$EndComp
300$Comp
301L GND #PWR08
302U 1 1 4D4704BC
303P 1850 4000
304F 0 "#PWR08" H 1850 4000 30 0001 C CNN
305F 1 "GND" H 1850 3930 30 0001 C CNN
306    1 1850 4000
307    1 0 0 -1
308$EndComp
309$Comp
310L GND #PWR09
311U 1 1 4D4704B4
312P 5700 4750
313F 0 "#PWR09" H 5700 4750 30 0001 C CNN
314F 1 "GND" H 5700 4680 30 0001 C CNN
315    1 5700 4750
316    1 0 0 -1
317$EndComp
318$Comp
319L ATMEGA48-MMU U1
320U 1 1 4D4702FE
321P 4800 3150
322F 0 "U1" H 3450 4350 60 0000 C CNN
323F 1 "ATMEGA48-MMU" H 4800 3150 60 0000 C CNN
324F 2 "QFN28-Atmel" H 4800 3150 60 0001 C CNN
325    1 4800 3150
326    1 0 0 -1
327$EndComp
328$Comp
329L 8:10-CARD P1
330U 1 1 4D4702F7
331P 8350 5450
332F 0 "P1" H 8150 6000 60 0000 C CNN
333F 1 "8:10-CARD" H 8400 4850 60 0000 C CNN
334F 2 "8:10-card" H 8350 5450 60 0001 C CNN
335    1 8350 5450
336    1 0 0 -1
337$EndComp
338$EndSCHEMATC

Archive Download the corresponding diff file

Branches:
master



interactive