23 Commits

Author SHA1 Message Date
Zane Kaminski 4e3586599a more 2025-04-28 00:30:52 -04:00
Zane Kaminski 9ffb24bc61 Update .gitignore 2025-04-27 22:27:52 -04:00
Zane Kaminski c8cd5d89fe more 2025-04-27 22:14:19 -04:00
Zane Kaminski bdc2b845be schematic and placement done? 2025-03-30 05:06:22 -04:00
Zane Kaminski 1c2fd797fd consolidate logic 2025-02-15 04:49:00 -05:00
Zane Kaminski fcd543a99b idk 2025-02-15 03:22:45 -05:00
Zane Kaminski e3ee42987f RC 1.3 2024-03-29 07:20:33 -04:00
Zane Kaminski bde9246685 Adopt 0.5mm via-to-via spacing 2024-03-18 18:40:03 -04:00
Zane Kaminski 2648e0d662 Update BOM, no board changes 2024-03-03 18:49:36 -05:00
Zane Kaminski a9034a00d9 Update Makefile
Reorganize slightly
2024-03-03 18:49:28 -05:00
Zane Kaminski 49958a41e4 Add BOM export and rebuild. No board changes 2024-03-03 18:38:07 -05:00
Zane Kaminski 6236eddd13 Update Makefile
Delete old gerber zip file before rezipping
2024-03-03 18:32:37 -05:00
Zane Kaminski 0123287002 1.2 RC4 2024-02-01 16:16:29 -05:00
Zane Kaminski 1b429df638 1.2 RC3
Moved 621024 bypass cap over--that's it
2024-01-30 21:10:24 -05:00
Zane Kaminski 6d71739d8b 1.2 RC2 2024-01-06 21:52:15 -05:00
Zane Kaminski ab99b97d07 Update schematic and PCB version and revision date 2023-12-07 05:42:10 -05:00
Zane Kaminski 4525f03f6e 1.2 prototype as sent to JLC 2023-12-07 05:09:04 -05:00
Zane Kaminski 8e92e3c78e 1.2? 2023-11-27 06:39:38 -05:00
Zane Kaminski 43c61f2720 1.2? 2023-11-27 06:15:46 -05:00
Zane Kaminski f279a2035a 1.2? 2023-11-27 06:01:47 -05:00
Zane Kaminski fd1db1b119 Update Makefile 2023-11-07 15:35:45 -05:00
Zane Kaminski dbfbaba0e6 1.1? 2023-11-03 04:37:35 -04:00
Zane Kaminski 83a09f8444 Create GW4208AManual.pdf 2023-03-05 13:36:02 -05:00
36 changed files with 123324 additions and 159698 deletions
+1
View File
@@ -29,3 +29,4 @@ RAM128-backups/*
*.DS_Store *.DS_Store
Documentation/~$4208BManual.docx Documentation/~$4208BManual.docx
*.kicad_prl *.kicad_prl
*.lck
+2694
View File
File diff suppressed because it is too large Load Diff
+4692
View File
File diff suppressed because it is too large Load Diff
+2010
View File
File diff suppressed because it is too large Load Diff
+12970
View File
File diff suppressed because it is too large Load Diff
+1609
View File
File diff suppressed because it is too large Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+4684
View File
File diff suppressed because it is too large Load Diff
+53
View File
@@ -0,0 +1,53 @@
KICAD = /Applications/KiCad/KiCad.app/Contents/MacOS/kicad-cli
LAYERS = F.Cu,In1.Cu,In2.Cu,B.Cu,F.Paste,F.SilkS,B.SilkS,F.Mask,B.Mask,Edge.Cuts
PYTHON = python3
BOM_SCRIPT = ../GW_KiCADBuild/export_bom.py
F_PCB = $@/../RAM128.kicad_pcb
F_SCH = $@/../RAM128.kicad_sch
F_NETLIST = $@/RAM128-NET.xml
F_BOM = $@/RAM128-BOM.csv
F_POS = $@/RAM128-top-pos.csv
F_ZIP = $@/RAM128.4208B-gerber.zip
F_SCHPDF = $@/RAM128.4208B-Schematic.pdf
F_PCBPDF = $@/RAM128.4208B-Placement.pdf
OPT_GERBER = -l $(LAYERS) --subtract-soldermask --no-netlist --no-x2
CMD_GERBER = pcb export gerbers $(OPT_GERBER) -o $@/ $(F_PCB)
CMD_DRILL = pcb export drill -o $@/ $(F_PCB)
CMD_NETLIST = sch export netlist --format kicadxml -o $(F_NETLIST) $(F_SCH)
OPT_POS = --smd-only --units mm --side front --format csv
CMD_POS = pcb export pos $(OPT_POS) -o $(F_POS) $(F_PCB)
CMD_SCHPDF = sch export pdf --black-and-white --no-background-color -o $(F_SCHPDF) $(F_SCH)
CMD_PCBPDF = pcb export pdf --black-and-white -l F.Fab,Edge.Cuts -o $(F_PCBPDF) $(F_PCB)
.PHONY: all clean gerber Documentation
all: gerber Documentation
clean:
rm -fr gerber/
rm -f Documentation/RAM128.4208B-Schematic.pdf
rm -f Documentation/RAM128.4208B-Placement.pdf
gerber:
mkdir -p $@
$(KICAD) $(CMD_GERBER)
$(KICAD) $(CMD_DRILL)
$(KICAD) $(CMD_POS)
$(KICAD) $(CMD_NETLIST)
sed -i '' 's/PosX/MidX/g' $(F_POS)
sed -i '' 's/PosY/MidY/g' $(F_POS)
sed -i '' 's/Rot/Rotation/g' $(F_POS)
$(PYTHON) $(BOM_SCRIPT) $(F_NETLIST) $(F_BOM)
rm -f $(F_ZIP)
zip -r $(F_ZIP) $@/
Documentation:
mkdir -p $@
$(KICAD) $(CMD_SCHPDF)
$(KICAD) $(CMD_PCBPDF)
+2533
View File
File diff suppressed because it is too large Load Diff
-578
View File
@@ -1,578 +0,0 @@
EESchema-LIBRARY Version 2.4
#encoding utf-8
#
# 74xx_74LS08
#
DEF 74xx_74LS08 U 0 40 Y Y 5 L N
F0 "U" 0 50 50 H V C CNN
F1 "74xx_74LS08" 0 -50 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
ALIAS 74LS09
$FPLIST
DIP*W7.62mm*
$ENDFPLIST
DRAW
A 0 0 150 -899 899 1 1 10 f 0 -150 0 150
A 0 0 150 -899 899 2 1 10 f 0 -150 0 150
A 0 0 150 -899 899 3 1 10 f 0 -150 0 150
A 0 0 150 -899 899 4 1 10 f 0 -150 0 150
A -360 0 258 354 -354 1 2 10 N -150 150 -150 -150
A -47 -52 204 150 837 1 2 10 f 150 0 -24 150
A -47 52 204 -150 -837 1 2 10 f 150 0 -24 -150
A -360 0 258 354 -354 2 2 10 N -150 150 -150 -150
A -47 -52 204 150 837 2 2 10 f 150 0 -24 150
A -47 52 204 -150 -837 2 2 10 f 150 0 -24 -150
A -360 0 258 354 -354 3 2 10 N -150 150 -150 -150
A -47 -52 204 150 837 3 2 10 f 150 0 -24 150
A -47 52 204 -150 -837 3 2 10 f 150 0 -24 -150
A -360 0 258 354 -354 4 2 10 N -150 150 -150 -150
A -47 -52 204 150 837 4 2 10 f 150 0 -24 150
A -47 52 204 -150 -837 4 2 10 f 150 0 -24 -150
S -200 300 200 -300 5 1 10 f
P 4 1 1 10 0 150 -150 150 -150 -150 0 -150 f
P 4 2 1 10 0 150 -150 150 -150 -150 0 -150 f
P 4 3 1 10 0 150 -150 150 -150 -150 0 -150 f
P 4 4 1 10 0 150 -150 150 -150 -150 0 -150 f
P 2 1 2 10 -150 -150 -25 -150 f
P 2 1 2 10 -150 150 -25 150 f
P 12 1 2 -1000 -25 150 -150 150 -150 150 -140 134 -119 89 -106 41 -103 -10 -109 -59 -125 -107 -150 -150 -150 -150 -25 -150 f
P 2 2 2 10 -150 -150 -25 -150 f
P 2 2 2 10 -150 150 -25 150 f
P 12 2 2 -1000 -25 150 -150 150 -150 150 -140 134 -119 89 -106 41 -103 -10 -109 -59 -125 -107 -150 -150 -150 -150 -25 -150 f
P 2 3 2 10 -150 -150 -25 -150 f
P 2 3 2 10 -150 150 -25 150 f
P 12 3 2 -1000 -25 150 -150 150 -150 150 -140 134 -119 89 -106 41 -103 -10 -109 -59 -125 -107 -150 -150 -150 -150 -25 -150 f
P 2 4 2 10 -150 -150 -25 -150 f
P 2 4 2 10 -150 150 -25 150 f
P 12 4 2 -1000 -25 150 -150 150 -150 150 -140 134 -119 89 -106 41 -103 -10 -109 -59 -125 -107 -150 -150 -150 -150 -25 -150 f
X VCC 14 0 500 200 D 50 50 5 0 W
X GND 7 0 -500 200 U 50 50 5 0 W
X ~ 1 -300 100 150 R 50 50 1 1 I
X ~ 2 -300 -100 150 R 50 50 1 1 I
X ~ 3 300 0 150 L 50 50 1 1 O
X ~ 4 -300 100 150 R 50 50 2 1 I
X ~ 5 -300 -100 150 R 50 50 2 1 I
X ~ 6 300 0 150 L 50 50 2 1 O
X ~ 10 -300 -100 150 R 50 50 3 1 I
X ~ 8 300 0 150 L 50 50 3 1 O
X ~ 9 -300 100 150 R 50 50 3 1 I
X ~ 11 300 0 150 L 50 50 4 1 O
X ~ 12 -300 100 150 R 50 50 4 1 I
X ~ 13 -300 -100 150 R 50 50 4 1 I
X ~ 1 -300 100 170 R 50 50 1 2 I I
X ~ 2 -300 -100 170 R 50 50 1 2 I I
X ~ 3 300 0 150 L 50 50 1 2 O I
X ~ 4 -300 100 170 R 50 50 2 2 I I
X ~ 5 -300 -100 170 R 50 50 2 2 I I
X ~ 6 300 0 150 L 50 50 2 2 O I
X ~ 10 -300 -100 170 R 50 50 3 2 I I
X ~ 8 300 0 150 L 50 50 3 2 O I
X ~ 9 -300 100 170 R 50 50 3 2 I I
X ~ 11 300 0 150 L 50 50 4 2 O I
X ~ 12 -300 100 170 R 50 50 4 2 I I
X ~ 13 -300 -100 170 R 50 50 4 2 I I
ENDDRAW
ENDDEF
#
# 74xx_74LS273
#
DEF 74xx_74LS273 U 0 20 Y Y 1 F N
F0 "U" -300 650 50 H V C CNN
F1 "74xx_74LS273" -300 -650 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
ALIAS 74HC273 74HCT273 74AHC273 74AHCT273
$FPLIST
DIP?20*
SO?20*
SOIC?20*
$ENDFPLIST
DRAW
S -300 600 300 -600 1 1 10 f
X ~Mr 1 -500 -500 200 R 50 50 1 0 I
X GND 10 0 -800 200 U 50 50 1 0 W
X Cp 11 -500 -400 200 R 50 50 1 0 I C
X Q4 12 500 100 200 L 50 50 1 0 O
X D4 13 -500 100 200 R 50 50 1 0 I
X D5 14 -500 0 200 R 50 50 1 0 I
X Q5 15 500 0 200 L 50 50 1 0 O
X Q6 16 500 -100 200 L 50 50 1 0 O
X D6 17 -500 -100 200 R 50 50 1 0 I
X D7 18 -500 -200 200 R 50 50 1 0 I
X Q7 19 500 -200 200 L 50 50 1 0 O
X Q0 2 500 500 200 L 50 50 1 0 O
X VCC 20 0 800 200 D 50 50 1 0 W
X D0 3 -500 500 200 R 50 50 1 0 I
X D1 4 -500 400 200 R 50 50 1 0 I
X Q1 5 500 400 200 L 50 50 1 0 O
X Q2 6 500 300 200 L 50 50 1 0 O
X D2 7 -500 300 200 R 50 50 1 0 I
X D3 8 -500 200 200 R 50 50 1 0 I
X Q3 9 500 200 200 L 50 50 1 0 O
ENDDRAW
ENDDEF
#
# 74xx_74LS32
#
DEF 74xx_74LS32 U 0 40 Y Y 5 L N
F0 "U" 0 50 50 H V C CNN
F1 "74xx_74LS32" 0 -50 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
DIP?14*
$ENDFPLIST
DRAW
A -360 0 258 354 -354 1 1 10 N -150 150 -150 -150
A -47 -52 204 150 837 1 1 10 f 150 0 -24 150
A -47 52 204 -150 -837 1 1 10 f 150 0 -24 -150
A -360 0 258 354 -354 2 1 10 N -150 150 -150 -150
A -47 -52 204 150 837 2 1 10 f 150 0 -24 150
A -47 52 204 -150 -837 2 1 10 f 150 0 -24 -150
A -360 0 258 354 -354 3 1 10 N -150 150 -150 -150
A -47 -52 204 150 837 3 1 10 f 150 0 -24 150
A -47 52 204 -150 -837 3 1 10 f 150 0 -24 -150
A -360 0 258 354 -354 4 1 10 N -150 150 -150 -150
A -47 -52 204 150 837 4 1 10 f 150 0 -24 150
A -47 52 204 -150 -837 4 1 10 f 150 0 -24 -150
A 0 0 150 -899 899 1 2 10 f 0 -150 0 150
A 0 0 150 -899 899 2 2 10 f 0 -150 0 150
A 0 0 150 -899 899 3 2 10 f 0 -150 0 150
A 0 0 150 -899 899 4 2 10 f 0 -150 0 150
S -200 300 200 -300 5 1 10 f
P 2 1 1 10 -150 -150 -25 -150 f
P 2 1 1 10 -150 150 -25 150 f
P 12 1 1 -1000 -25 150 -150 150 -150 150 -140 134 -119 89 -106 41 -103 -10 -109 -59 -125 -107 -150 -150 -150 -150 -25 -150 f
P 2 2 1 10 -150 -150 -25 -150 f
P 2 2 1 10 -150 150 -25 150 f
P 12 2 1 -1000 -25 150 -150 150 -150 150 -140 134 -119 89 -106 41 -103 -10 -109 -59 -125 -107 -150 -150 -150 -150 -25 -150 f
P 2 3 1 10 -150 -150 -25 -150 f
P 2 3 1 10 -150 150 -25 150 f
P 12 3 1 -1000 -25 150 -150 150 -150 150 -140 134 -119 89 -106 41 -103 -10 -109 -59 -125 -107 -150 -150 -150 -150 -25 -150 f
P 2 4 1 10 -150 -150 -25 -150 f
P 2 4 1 10 -150 150 -25 150 f
P 12 4 1 -1000 -25 150 -150 150 -150 150 -140 134 -119 89 -106 41 -103 -10 -109 -59 -125 -107 -150 -150 -150 -150 -25 -150 f
P 4 1 2 10 0 150 -150 150 -150 -150 0 -150 f
P 4 2 2 10 0 150 -150 150 -150 -150 0 -150 f
P 4 3 2 10 0 150 -150 150 -150 -150 0 -150 f
P 4 4 2 10 0 150 -150 150 -150 -150 0 -150 f
X VCC 14 0 500 200 D 50 50 5 0 W
X GND 7 0 -500 200 U 50 50 5 0 W
X ~ 1 -300 100 170 R 50 50 1 1 I
X ~ 2 -300 -100 170 R 50 50 1 1 I
X ~ 3 300 0 150 L 50 50 1 1 O
X ~ 4 -300 100 170 R 50 50 2 1 I
X ~ 5 -300 -100 170 R 50 50 2 1 I
X ~ 6 300 0 150 L 50 50 2 1 O
X ~ 10 -300 -100 170 R 50 50 3 1 I
X ~ 8 300 0 150 L 50 50 3 1 O
X ~ 9 -300 100 170 R 50 50 3 1 I
X ~ 11 300 0 150 L 50 50 4 1 O
X ~ 12 -300 100 170 R 50 50 4 1 I
X ~ 13 -300 -100 170 R 50 50 4 1 I
X ~ 1 -300 100 150 R 50 50 1 2 I I
X ~ 2 -300 -100 150 R 50 50 1 2 I I
X ~ 3 300 0 150 L 50 50 1 2 O I
X ~ 4 -300 100 150 R 50 50 2 2 I I
X ~ 5 -300 -100 150 R 50 50 2 2 I I
X ~ 6 300 0 150 L 50 50 2 2 O I
X ~ 10 -300 -100 150 R 50 50 3 2 I I
X ~ 8 300 0 150 L 50 50 3 2 O I
X ~ 9 -300 100 150 R 50 50 3 2 I I
X ~ 11 300 0 150 L 50 50 4 2 O I
X ~ 12 -300 100 150 R 50 50 4 2 I I
X ~ 13 -300 -100 150 R 50 50 4 2 I I
ENDDRAW
ENDDEF
#
# Connector_Generic_Conn_02x25_Counter_Clockwise
#
DEF Connector_Generic_Conn_02x25_Counter_Clockwise J 0 40 Y N 1 F N
F0 "J" 50 1300 50 H V C CNN
F1 "Connector_Generic_Conn_02x25_Counter_Clockwise" 50 -1300 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*_2x??_*
$ENDFPLIST
DRAW
S -50 -1195 0 -1205 1 1 6 N
S -50 -1095 0 -1105 1 1 6 N
S -50 -995 0 -1005 1 1 6 N
S -50 -895 0 -905 1 1 6 N
S -50 -795 0 -805 1 1 6 N
S -50 -695 0 -705 1 1 6 N
S -50 -595 0 -605 1 1 6 N
S -50 -495 0 -505 1 1 6 N
S -50 -395 0 -405 1 1 6 N
S -50 -295 0 -305 1 1 6 N
S -50 -195 0 -205 1 1 6 N
S -50 -95 0 -105 1 1 6 N
S -50 5 0 -5 1 1 6 N
S -50 105 0 95 1 1 6 N
S -50 205 0 195 1 1 6 N
S -50 305 0 295 1 1 6 N
S -50 405 0 395 1 1 6 N
S -50 505 0 495 1 1 6 N
S -50 605 0 595 1 1 6 N
S -50 705 0 695 1 1 6 N
S -50 805 0 795 1 1 6 N
S -50 905 0 895 1 1 6 N
S -50 1005 0 995 1 1 6 N
S -50 1105 0 1095 1 1 6 N
S -50 1205 0 1195 1 1 6 N
S -50 1250 150 -1250 1 1 10 f
S 150 -1195 100 -1205 1 1 6 N
S 150 -1095 100 -1105 1 1 6 N
S 150 -995 100 -1005 1 1 6 N
S 150 -895 100 -905 1 1 6 N
S 150 -795 100 -805 1 1 6 N
S 150 -695 100 -705 1 1 6 N
S 150 -595 100 -605 1 1 6 N
S 150 -495 100 -505 1 1 6 N
S 150 -395 100 -405 1 1 6 N
S 150 -295 100 -305 1 1 6 N
S 150 -195 100 -205 1 1 6 N
S 150 -95 100 -105 1 1 6 N
S 150 5 100 -5 1 1 6 N
S 150 105 100 95 1 1 6 N
S 150 205 100 195 1 1 6 N
S 150 305 100 295 1 1 6 N
S 150 405 100 395 1 1 6 N
S 150 505 100 495 1 1 6 N
S 150 605 100 595 1 1 6 N
S 150 705 100 695 1 1 6 N
S 150 805 100 795 1 1 6 N
S 150 905 100 895 1 1 6 N
S 150 1005 100 995 1 1 6 N
S 150 1105 100 1095 1 1 6 N
S 150 1205 100 1195 1 1 6 N
X Pin_1 1 -200 1200 150 R 50 50 1 1 P
X Pin_10 10 -200 300 150 R 50 50 1 1 P
X Pin_11 11 -200 200 150 R 50 50 1 1 P
X Pin_12 12 -200 100 150 R 50 50 1 1 P
X Pin_13 13 -200 0 150 R 50 50 1 1 P
X Pin_14 14 -200 -100 150 R 50 50 1 1 P
X Pin_15 15 -200 -200 150 R 50 50 1 1 P
X Pin_16 16 -200 -300 150 R 50 50 1 1 P
X Pin_17 17 -200 -400 150 R 50 50 1 1 P
X Pin_18 18 -200 -500 150 R 50 50 1 1 P
X Pin_19 19 -200 -600 150 R 50 50 1 1 P
X Pin_2 2 -200 1100 150 R 50 50 1 1 P
X Pin_20 20 -200 -700 150 R 50 50 1 1 P
X Pin_21 21 -200 -800 150 R 50 50 1 1 P
X Pin_22 22 -200 -900 150 R 50 50 1 1 P
X Pin_23 23 -200 -1000 150 R 50 50 1 1 P
X Pin_24 24 -200 -1100 150 R 50 50 1 1 P
X Pin_25 25 -200 -1200 150 R 50 50 1 1 P
X Pin_26 26 300 -1200 150 L 50 50 1 1 P
X Pin_27 27 300 -1100 150 L 50 50 1 1 P
X Pin_28 28 300 -1000 150 L 50 50 1 1 P
X Pin_29 29 300 -900 150 L 50 50 1 1 P
X Pin_3 3 -200 1000 150 R 50 50 1 1 P
X Pin_30 30 300 -800 150 L 50 50 1 1 P
X Pin_31 31 300 -700 150 L 50 50 1 1 P
X Pin_32 32 300 -600 150 L 50 50 1 1 P
X Pin_33 33 300 -500 150 L 50 50 1 1 P
X Pin_34 34 300 -400 150 L 50 50 1 1 P
X Pin_35 35 300 -300 150 L 50 50 1 1 P
X Pin_36 36 300 -200 150 L 50 50 1 1 P
X Pin_37 37 300 -100 150 L 50 50 1 1 P
X Pin_38 38 300 0 150 L 50 50 1 1 P
X Pin_39 39 300 100 150 L 50 50 1 1 P
X Pin_4 4 -200 900 150 R 50 50 1 1 P
X Pin_40 40 300 200 150 L 50 50 1 1 P
X Pin_41 41 300 300 150 L 50 50 1 1 P
X Pin_42 42 300 400 150 L 50 50 1 1 P
X Pin_43 43 300 500 150 L 50 50 1 1 P
X Pin_44 44 300 600 150 L 50 50 1 1 P
X Pin_45 45 300 700 150 L 50 50 1 1 P
X Pin_46 46 300 800 150 L 50 50 1 1 P
X Pin_47 47 300 900 150 L 50 50 1 1 P
X Pin_48 48 300 1000 150 L 50 50 1 1 P
X Pin_49 49 300 1100 150 L 50 50 1 1 P
X Pin_5 5 -200 800 150 R 50 50 1 1 P
X Pin_50 50 300 1200 150 L 50 50 1 1 P
X Pin_6 6 -200 700 150 R 50 50 1 1 P
X Pin_7 7 -200 600 150 R 50 50 1 1 P
X Pin_8 8 -200 500 150 R 50 50 1 1 P
X Pin_9 9 -200 400 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Device_C_Small
#
DEF Device_C_Small C 0 10 N N 1 F N
F0 "C" 10 70 50 H V L CNN
F1 "Device_C_Small" 10 -80 50 H V L CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
C_*
$ENDFPLIST
DRAW
P 2 0 1 13 -60 -20 60 -20 N
P 2 0 1 12 -60 20 60 20 N
X ~ 1 0 100 80 D 50 50 1 1 P
X ~ 2 0 -100 80 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Device_R_Small
#
DEF Device_R_Small R 0 10 N N 1 F N
F0 "R" 30 20 50 H V L CNN
F1 "Device_R_Small" 30 -40 50 H V L CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
R_*
$ENDFPLIST
DRAW
S -30 70 30 -70 0 1 8 N
X ~ 1 0 100 30 D 50 50 1 1 P
X ~ 2 0 -100 30 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# GW_Logic_741G04GW
#
DEF GW_Logic_741G04GW U 0 40 Y Y 1 F N
F0 "U" 0 250 50 H V C CNN
F1 "GW_Logic_741G04GW" 0 -250 50 H V C CNN
F2 "stdpads:SOT-353" 0 -300 50 H I C TNN
F3 "" 0 -200 60 H I C CNN
DRAW
S 200 -200 -200 200 0 1 10 f
X NC 1 -350 100 150 R 50 50 1 1 N
X A 2 -400 0 200 R 50 50 1 1 I
X GND 3 -400 -100 200 R 50 50 1 1 W
X Y 4 400 -100 200 L 50 50 1 1 O
X Vcc 5 400 100 200 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# GW_Logic_741G126GW
#
DEF GW_Logic_741G126GW U 0 40 Y Y 1 F N
F0 "U" 0 250 50 H V C CNN
F1 "GW_Logic_741G126GW" 0 -250 50 H V C CNN
F2 "stdpads:SOT-353" 0 -300 50 H I C TNN
F3 "" 0 -200 60 H I C CNN
DRAW
S 200 -200 -200 200 0 1 10 f
X OE 1 -400 100 200 R 50 50 1 1 I
X A 2 -400 0 200 R 50 50 1 1 I
X GND 3 -400 -100 200 R 50 50 1 1 W
X Y 4 400 -100 200 L 50 50 1 1 O
X Vcc 5 400 100 200 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# GW_Logic_74245
#
DEF GW_Logic_74245 U 0 40 Y Y 1 F N
F0 "U" 0 600 50 H V C CNN
F1 "GW_Logic_74245" 0 -600 50 H V C CNN
F2 "" 0 -650 50 H I C TNN
F3 "" 0 100 60 H I C CNN
DRAW
S -200 550 200 -550 0 1 10 f
X AtoB 1 -400 450 200 R 50 50 1 1 I
X GND 10 -400 -450 200 R 50 50 1 1 W
X B7 11 400 -450 200 L 50 50 1 1 B
X B6 12 400 -350 200 L 50 50 1 1 B
X B5 13 400 -250 200 L 50 50 1 1 B
X B4 14 400 -150 200 L 50 50 1 1 B
X B3 15 400 -50 200 L 50 50 1 1 B
X B2 16 400 50 200 L 50 50 1 1 B
X B1 17 400 150 200 L 50 50 1 1 B
X B0 18 400 250 200 L 50 50 1 1 B
X ~OE~ 19 400 350 200 L 50 50 1 1 I
X A0 2 -400 350 200 R 50 50 1 1 B
X Vcc 20 400 450 200 L 50 50 1 1 W
X A1 3 -400 250 200 R 50 50 1 1 B
X A2 4 -400 150 200 R 50 50 1 1 B
X A3 5 -400 50 200 R 50 50 1 1 B
X A4 6 -400 -50 200 R 50 50 1 1 B
X A5 7 -400 -150 200 R 50 50 1 1 B
X A6 8 -400 -250 200 R 50 50 1 1 B
X A7 9 -400 -350 200 R 50 50 1 1 B
ENDDRAW
ENDDEF
#
# GW_RAM_SRAM-128Kx8-SOP-32
#
DEF GW_RAM_SRAM-128Kx8-SOP-32 U? 0 20 Y Y 1 F N
F0 "U?" 0 950 50 H V C CNN
F1 "GW_RAM_SRAM-128Kx8-SOP-32" 0 0 50 V V C CNN
F2 "stdpads:SOP-32_P1.27mm" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
TSOP?I*11.8x8mm*P0.5mm*
TSOP?I*18.4x8mm*P0.5mm*
$ENDFPLIST
DRAW
S -300 900 300 -900 1 1 10 f
X NC 1 400 -200 100 L 50 50 1 1 N N
X A2 10 -400 600 100 R 50 50 1 1 I
X A1 11 -400 700 100 R 50 50 1 1 I
X A0 12 -400 800 100 R 50 50 1 1 I
X D0 13 400 600 100 L 50 50 1 1 B
X D1 14 400 500 100 L 50 50 1 1 B
X D2 15 400 400 100 L 50 50 1 1 B
X GND 16 400 -800 100 L 50 50 1 1 W
X D3 17 400 300 100 L 50 50 1 1 B
X D4 18 400 200 100 L 50 50 1 1 B
X D5 19 400 100 100 L 50 50 1 1 B
X A16 2 -400 -800 100 R 50 50 1 1 I
X D6 20 400 0 100 L 50 50 1 1 B
X D7 21 400 -100 100 L 50 50 1 1 B
X ~CS~ 22 400 -300 100 L 50 50 1 1 I
X A10 23 -400 -200 100 R 50 50 1 1 I
X ~OE 24 400 -600 100 L 50 50 1 1 I
X A11 25 -400 -300 100 R 50 50 1 1 I
X A9 26 -400 -100 100 R 50 50 1 1 I
X A8 27 -400 0 100 R 50 50 1 1 I
X A13 28 -400 -500 100 R 50 50 1 1 I
X ~WE 29 400 -500 100 L 50 50 1 1 I
X A14 3 -400 -600 100 R 50 50 1 1 I
X CS 30 400 -400 100 L 50 50 1 1 I
X A15 31 -400 -700 100 R 50 50 1 1 I
X VCC 32 400 800 100 L 50 50 1 1 W
X A12 4 -400 -400 100 R 50 50 1 1 I
X A7 5 -400 100 100 R 50 50 1 1 I
X A6 6 -400 200 100 R 50 50 1 1 I
X A5 7 -400 300 100 R 50 50 1 1 I
X A4 8 -400 400 100 R 50 50 1 1 I
X A3 9 -400 500 100 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# Mechanical_Fiducial
#
DEF Mechanical_Fiducial FID 0 20 Y Y 1 F N
F0 "FID" 0 200 50 H V C CNN
F1 "Mechanical_Fiducial" 0 125 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Fiducial*
$ENDFPLIST
DRAW
C 0 0 50 0 1 20 f
ENDDRAW
ENDDEF
#
# Mechanical_MountingHole_Pad
#
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
F0 "H" 0 250 50 H V C CNN
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
MountingHole*Pad*
$ENDFPLIST
DRAW
C 0 50 50 0 1 50 N
X 1 1 0 -100 100 U 50 50 1 1 I
ENDDRAW
ENDDEF
#
# Switch_SW_DIP_x02
#
DEF Switch_SW_DIP_x02 SW 0 0 Y N 1 F N
F0 "SW" 0 250 50 H V C CNN
F1 "Switch_SW_DIP_x02" 0 -150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
SW?DIP?x2*
$ENDFPLIST
DRAW
C -80 0 20 0 0 0 N
C -80 100 20 0 0 0 N
C 80 0 20 0 0 0 N
C 80 100 20 0 0 0 N
S -150 200 150 -100 0 1 10 f
P 2 0 0 0 -60 5 93 46 N
P 2 0 0 0 -60 105 93 146 N
X ~ 1 -300 100 200 R 50 50 1 1 P
X ~ 2 -300 0 200 R 50 50 1 1 P
X ~ 3 300 0 200 L 50 50 1 1 P
X ~ 4 300 100 200 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# power_+12V
#
DEF power_+12V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -150 50 H I C CNN
F1 "power_+12V" 0 140 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 0 1 0 -30 50 0 100 N
P 2 0 1 0 0 0 0 100 N
P 2 0 1 0 0 100 30 50 N
X +12V 1 0 0 0 U 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# power_+5V
#
DEF power_+5V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -150 50 H I C CNN
F1 "power_+5V" 0 140 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 0 1 0 -30 50 0 100 N
P 2 0 1 0 0 0 0 100 N
P 2 0 1 0 0 100 30 50 N
X +5V 1 0 0 0 U 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# power_-12V
#
DEF power_-12V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 100 50 H I C CNN
F1 "power_-12V" 0 150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 6 0 1 0 0 0 0 50 30 50 0 100 -30 50 0 50 F
X -12V 1 0 0 0 U 50 50 0 0 W N
ENDDRAW
ENDDEF
#
# power_-5V
#
DEF power_-5V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 100 50 H I C CNN
F1 "power_-5V" 0 150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 6 0 1 0 0 0 0 50 30 50 0 100 -30 50 0 50 F
X -5V 1 0 0 0 U 50 50 0 0 W N
ENDDRAW
ENDDEF
#
# power_GND
#
DEF power_GND #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -250 50 H I C CNN
F1 "power_GND" 0 -150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
X GND 1 0 0 0 D 50 50 1 1 W N
ENDDRAW
ENDDEF
#
#End Library
Binary file not shown.
+57111 -75982
View File
File diff suppressed because it is too large Load Diff
+289 -29
View File
@@ -1,15 +1,19 @@
{ {
"board": { "board": {
"3dviewports": [],
"design_settings": { "design_settings": {
"defaults": { "defaults": {
"apply_defaults_to_fp_fields": false,
"apply_defaults_to_fp_shapes": false,
"apply_defaults_to_fp_text": false,
"board_outline_line_width": 0.15, "board_outline_line_width": 0.15,
"copper_line_width": 0.15239999999999998, "copper_line_width": 0.1524,
"copper_text_italic": false, "copper_text_italic": false,
"copper_text_size_h": 1.5, "copper_text_size_h": 1.5,
"copper_text_size_v": 1.5, "copper_text_size_v": 1.5,
"copper_text_thickness": 0.3, "copper_text_thickness": 0.3,
"copper_text_upright": false, "copper_text_upright": false,
"courtyard_line_width": 0.049999999999999996, "courtyard_line_width": 0.05,
"dimension_precision": 4, "dimension_precision": 4,
"dimension_units": 3, "dimension_units": 3,
"dimensions": { "dimensions": {
@@ -20,13 +24,13 @@
"text_position": 0, "text_position": 0,
"units_format": 1 "units_format": 1
}, },
"fab_line_width": 0.09999999999999999, "fab_line_width": 0.1,
"fab_text_italic": false, "fab_text_italic": false,
"fab_text_size_h": 1.0, "fab_text_size_h": 1.0,
"fab_text_size_v": 1.0, "fab_text_size_v": 1.0,
"fab_text_thickness": 0.15, "fab_text_thickness": 0.15,
"fab_text_upright": false, "fab_text_upright": false,
"other_line_width": 0.09999999999999999, "other_line_width": 0.1,
"other_text_italic": false, "other_text_italic": false,
"other_text_size_h": 1.0, "other_text_size_h": 1.0,
"other_text_size_v": 1.0, "other_text_size_v": 1.0,
@@ -45,10 +49,16 @@
"silk_text_upright": false, "silk_text_upright": false,
"zones": { "zones": {
"45_degree_only": false, "45_degree_only": false,
"min_clearance": 0.15239999999999998 "min_clearance": 0.1524
} }
}, },
"diff_pair_dimensions": [], "diff_pair_dimensions": [
{
"gap": 0.0,
"via_gap": 0.0,
"width": 0.0
}
],
"drc_exclusions": [], "drc_exclusions": [],
"meta": { "meta": {
"filename": "board_design_settings.json", "filename": "board_design_settings.json",
@@ -57,41 +67,61 @@
"rule_severities": { "rule_severities": {
"annular_width": "error", "annular_width": "error",
"clearance": "error", "clearance": "error",
"connection_width": "warning",
"copper_edge_clearance": "error", "copper_edge_clearance": "error",
"courtyards_overlap": "error", "copper_sliver": "error",
"courtyards_overlap": "warning",
"creepage": "error",
"diff_pair_gap_out_of_range": "error", "diff_pair_gap_out_of_range": "error",
"diff_pair_uncoupled_length_too_long": "error", "diff_pair_uncoupled_length_too_long": "error",
"drill_out_of_range": "error", "drill_out_of_range": "error",
"duplicate_footprints": "warning", "duplicate_footprints": "error",
"extra_footprint": "warning", "extra_footprint": "error",
"footprint": "error",
"footprint_filters_mismatch": "ignore",
"footprint_symbol_mismatch": "warning",
"footprint_type_mismatch": "error", "footprint_type_mismatch": "error",
"hole_clearance": "error", "hole_clearance": "error",
"hole_near_hole": "error", "hole_near_hole": "error",
"hole_to_hole": "error",
"holes_co_located": "warning",
"invalid_outline": "error", "invalid_outline": "error",
"isolated_copper": "warning",
"item_on_disabled_layer": "error", "item_on_disabled_layer": "error",
"items_not_allowed": "error", "items_not_allowed": "error",
"length_out_of_range": "error", "length_out_of_range": "error",
"lib_footprint_issues": "ignore",
"lib_footprint_mismatch": "warning",
"malformed_courtyard": "error", "malformed_courtyard": "error",
"microvia_drill_out_of_range": "error", "microvia_drill_out_of_range": "error",
"mirrored_text_on_front_layer": "warning",
"missing_courtyard": "ignore", "missing_courtyard": "ignore",
"missing_footprint": "warning", "missing_footprint": "error",
"net_conflict": "warning", "net_conflict": "error",
"nonmirrored_text_on_back_layer": "warning",
"npth_inside_courtyard": "ignore", "npth_inside_courtyard": "ignore",
"padstack": "error", "padstack": "error",
"pth_inside_courtyard": "ignore", "pth_inside_courtyard": "ignore",
"shorting_items": "error", "shorting_items": "error",
"silk_edge_clearance": "warning",
"silk_over_copper": "warning", "silk_over_copper": "warning",
"silk_overlap": "warning", "silk_overlap": "warning",
"skew_out_of_range": "error", "skew_out_of_range": "error",
"solder_mask_bridge": "ignore",
"starved_thermal": "error",
"text_height": "warning",
"text_on_edge_cuts": "error",
"text_thickness": "warning",
"through_hole_pad_without_hole": "error", "through_hole_pad_without_hole": "error",
"too_many_vias": "error", "too_many_vias": "error",
"track_angle": "error",
"track_dangling": "warning", "track_dangling": "warning",
"track_segment_length": "error",
"track_width": "error", "track_width": "error",
"tracks_crossing": "error", "tracks_crossing": "error",
"unconnected_items": "error", "unconnected_items": "error",
"unresolved_variable": "error", "unresolved_variable": "error",
"via_dangling": "warning", "via_dangling": "warning",
"zone_has_empty_net": "error",
"zones_intersect": "error" "zones_intersect": "error"
}, },
"rule_severitieslegacy_courtyards_overlap": true, "rule_severitieslegacy_courtyards_overlap": true,
@@ -100,19 +130,69 @@
"allow_blind_buried_vias": false, "allow_blind_buried_vias": false,
"allow_microvias": false, "allow_microvias": false,
"max_error": 0.005, "max_error": 0.005,
"min_clearance": 0.0, "min_clearance": 0.15,
"min_copper_edge_clearance": 0.075, "min_connection": 0.12,
"min_copper_edge_clearance": 0.4064,
"min_groove_width": 0.0,
"min_hole_clearance": 0.25, "min_hole_clearance": 0.25,
"min_hole_to_hole": 0.25, "min_hole_to_hole": 0.5,
"min_microvia_diameter": 0.19999999999999998, "min_microvia_diameter": 0.2,
"min_microvia_drill": 0.09999999999999999, "min_microvia_drill": 0.1,
"min_resolved_spokes": 2,
"min_silk_clearance": 0.0, "min_silk_clearance": 0.0,
"min_through_hole_diameter": 0.19999999999999998, "min_text_height": 0.8,
"min_text_thickness": 0.08,
"min_through_hole_diameter": 0.3,
"min_track_width": 0.15, "min_track_width": 0.15,
"min_via_annular_width": 0.049999999999999996, "min_via_annular_width": 0.1,
"min_via_diameter": 0.5, "min_via_diameter": 0.5,
"solder_mask_to_copper_clearance": 0.0,
"use_height_for_length_calcs": true "use_height_for_length_calcs": true
}, },
"teardrop_options": [
{
"td_onpthpad": true,
"td_onroundshapesonly": false,
"td_onsmdpad": true,
"td_ontrackend": false,
"td_onvia": true
}
],
"teardrop_parameters": [
{
"td_allow_use_two_tracks": true,
"td_curve_segcount": 0,
"td_height_ratio": 1.0,
"td_length_ratio": 0.5,
"td_maxheight": 2.0,
"td_maxlen": 1.0,
"td_on_pad_in_zone": false,
"td_target_name": "td_round_shape",
"td_width_to_size_filter_ratio": 0.9
},
{
"td_allow_use_two_tracks": true,
"td_curve_segcount": 0,
"td_height_ratio": 1.0,
"td_length_ratio": 0.5,
"td_maxheight": 2.0,
"td_maxlen": 1.0,
"td_on_pad_in_zone": false,
"td_target_name": "td_rect_shape",
"td_width_to_size_filter_ratio": 0.9
},
{
"td_allow_use_two_tracks": true,
"td_curve_segcount": 0,
"td_height_ratio": 1.0,
"td_length_ratio": 0.5,
"td_maxheight": 2.0,
"td_maxlen": 1.0,
"td_on_pad_in_zone": false,
"td_target_name": "td_track_end",
"td_width_to_size_filter_ratio": 0.9
}
],
"track_widths": [ "track_widths": [
0.0, 0.0,
0.15, 0.15,
@@ -129,11 +209,41 @@
1.27, 1.27,
1.524 1.524
], ],
"tuning_pattern_settings": {
"diff_pair_defaults": {
"corner_radius_percentage": 80,
"corner_style": 1,
"max_amplitude": 1.0,
"min_amplitude": 0.2,
"single_sided": false,
"spacing": 1.0
},
"diff_pair_skew_defaults": {
"corner_radius_percentage": 80,
"corner_style": 1,
"max_amplitude": 1.0,
"min_amplitude": 0.2,
"single_sided": false,
"spacing": 0.6
},
"single_track_defaults": {
"corner_radius_percentage": 80,
"corner_style": 1,
"max_amplitude": 1.0,
"min_amplitude": 0.2,
"single_sided": false,
"spacing": 0.6
}
},
"via_dimensions": [ "via_dimensions": [
{ {
"diameter": 0.0, "diameter": 0.0,
"drill": 0.0 "drill": 0.0
}, },
{
"diameter": 0.5,
"drill": 0.3
},
{ {
"diameter": 0.6, "diameter": 0.6,
"drill": 0.3 "drill": 0.3
@@ -154,7 +264,16 @@
"zones_allow_external_fillets": false, "zones_allow_external_fillets": false,
"zones_use_no_outline": true "zones_use_no_outline": true
}, },
"layer_presets": [] "ipc2581": {
"dist": "",
"distpn": "",
"internal_id": "",
"mfg": "",
"mpn": ""
},
"layer_pairs": [],
"layer_presets": [],
"viewports": []
}, },
"boards": [], "boards": [],
"cvpcb": { "cvpcb": {
@@ -338,28 +457,44 @@
"rule_severities": { "rule_severities": {
"bus_definition_conflict": "error", "bus_definition_conflict": "error",
"bus_entry_needed": "error", "bus_entry_needed": "error",
"bus_label_syntax": "error",
"bus_to_bus_conflict": "error", "bus_to_bus_conflict": "error",
"bus_to_net_conflict": "error", "bus_to_net_conflict": "error",
"conflicting_netclasses": "error",
"different_unit_footprint": "error", "different_unit_footprint": "error",
"different_unit_net": "error", "different_unit_net": "error",
"duplicate_reference": "error", "duplicate_reference": "error",
"duplicate_sheet_names": "error", "duplicate_sheet_names": "error",
"endpoint_off_grid": "warning",
"extra_units": "error", "extra_units": "error",
"footprint_filter": "ignore",
"footprint_link_issues": "warning",
"four_way_junction": "ignore",
"global_label_dangling": "warning", "global_label_dangling": "warning",
"hier_label_mismatch": "error", "hier_label_mismatch": "error",
"label_dangling": "error", "label_dangling": "error",
"label_multiple_wires": "warning",
"lib_symbol_issues": "warning", "lib_symbol_issues": "warning",
"lib_symbol_mismatch": "warning",
"missing_bidi_pin": "warning",
"missing_input_pin": "warning",
"missing_power_pin": "error",
"missing_unit": "warning",
"multiple_net_names": "warning", "multiple_net_names": "warning",
"net_not_bus_member": "warning", "net_not_bus_member": "warning",
"no_connect_connected": "warning", "no_connect_connected": "warning",
"no_connect_dangling": "warning", "no_connect_dangling": "warning",
"pin_not_connected": "error", "pin_not_connected": "error",
"pin_not_driven": "error", "pin_not_driven": "error",
"pin_to_pin": "warning", "pin_to_pin": "error",
"power_pin_not_driven": "error", "power_pin_not_driven": "error",
"same_local_global_label": "warning",
"similar_label_and_power": "warning",
"similar_labels": "warning", "similar_labels": "warning",
"similar_power": "warning",
"simulation_model_issue": "error",
"single_global_label": "ignore",
"unannotated": "error", "unannotated": "error",
"unconnected_wire_endpoint": "warning",
"unit_value_mismatch": "error", "unit_value_mismatch": "error",
"unresolved_variable": "error", "unresolved_variable": "error",
"wire_dangling": "error" "wire_dangling": "error"
@@ -371,12 +506,12 @@
}, },
"meta": { "meta": {
"filename": "RAM128.kicad_pro", "filename": "RAM128.kicad_pro",
"version": 1 "version": 3
}, },
"net_settings": { "net_settings": {
"classes": [ "classes": [
{ {
"bus_width": 12.0, "bus_width": 12,
"clearance": 0.15, "clearance": 0.15,
"diff_pair_gap": 0.25, "diff_pair_gap": 0.25,
"diff_pair_via_gap": 0.25, "diff_pair_via_gap": 0.25,
@@ -386,32 +521,118 @@
"microvia_drill": 0.1, "microvia_drill": 0.1,
"name": "Default", "name": "Default",
"pcb_color": "rgba(0, 0, 0, 0.000)", "pcb_color": "rgba(0, 0, 0, 0.000)",
"priority": 2147483647,
"schematic_color": "rgba(0, 0, 0, 0.000)", "schematic_color": "rgba(0, 0, 0, 0.000)",
"track_width": 0.15, "track_width": 0.15,
"via_diameter": 0.5, "via_diameter": 0.5,
"via_drill": 0.2, "via_drill": 0.3,
"wire_width": 6.0 "wire_width": 6
} }
], ],
"meta": { "meta": {
"version": 2 "version": 4
}, },
"net_colors": null "net_colors": null,
"netclass_assignments": null,
"netclass_patterns": []
}, },
"pcbnew": { "pcbnew": {
"last_paths": { "last_paths": {
"gencad": "", "gencad": "",
"idf": "", "idf": "",
"netlist": "RAM128.net", "netlist": "RAM128.net",
"plot": "",
"pos_files": "",
"specctra_dsn": "", "specctra_dsn": "",
"step": "", "step": "",
"svg": "",
"vrml": "" "vrml": ""
}, },
"page_layout_descr_file": "" "page_layout_descr_file": ""
}, },
"schematic": { "schematic": {
"annotate_start_num": 0, "annotate_start_num": 0,
"bom_export_filename": "",
"bom_fmt_presets": [],
"bom_fmt_settings": {
"field_delimiter": ",",
"keep_line_breaks": false,
"keep_tabs": false,
"name": "CSV",
"ref_delimiter": ",",
"ref_range_delimiter": "",
"string_delimiter": "\""
},
"bom_presets": [],
"bom_settings": {
"exclude_dnp": false,
"fields_ordered": [
{
"group_by": false,
"label": "Reference",
"name": "Reference",
"show": true
},
{
"group_by": true,
"label": "Value",
"name": "Value",
"show": true
},
{
"group_by": false,
"label": "Datasheet",
"name": "Datasheet",
"show": true
},
{
"group_by": false,
"label": "Footprint",
"name": "Footprint",
"show": true
},
{
"group_by": false,
"label": "Qty",
"name": "${QUANTITY}",
"show": true
},
{
"group_by": true,
"label": "DNP",
"name": "${DNP}",
"show": true
},
{
"group_by": false,
"label": "#",
"name": "${ITEM_NUMBER}",
"show": false
},
{
"group_by": false,
"label": "LCSC Part",
"name": "LCSC Part",
"show": false
},
{
"group_by": false,
"label": "Description",
"name": "Description",
"show": false
}
],
"filter_string": "",
"group_symbols": true,
"include_excluded_from_bom": false,
"name": "",
"sort_asc": true,
"sort_field": "Reference"
},
"connection_grid_size": 50.0,
"drawing": { "drawing": {
"dashed_lines_dash_length_ratio": 12.0,
"dashed_lines_gap_length_ratio": 3.0,
"default_line_thickness": 6.0, "default_line_thickness": 6.0,
"default_text_size": 50.0, "default_text_size": 50.0,
"field_names": [], "field_names": [],
@@ -422,6 +643,11 @@
"intersheets_ref_suffix": "", "intersheets_ref_suffix": "",
"junction_size_choice": 3, "junction_size_choice": 3,
"label_size_ratio": 0.25, "label_size_ratio": 0.25,
"operating_point_overlay_i_precision": 3,
"operating_point_overlay_i_range": "~A",
"operating_point_overlay_v_precision": 3,
"operating_point_overlay_v_range": "~V",
"overbar_offset_ratio": 1.23,
"pin_symbol_size": 0.0, "pin_symbol_size": 0.0,
"text_offset_ratio": 0.08 "text_offset_ratio": 0.08
}, },
@@ -442,15 +668,49 @@
}, },
"page_layout_descr_file": "", "page_layout_descr_file": "",
"plot_directory": "", "plot_directory": "",
"space_save_all_events": true,
"spice_adjust_passive_values": false, "spice_adjust_passive_values": false,
"spice_current_sheet_as_root": false,
"spice_external_command": "spice \"%I\"", "spice_external_command": "spice \"%I\"",
"spice_model_current_sheet_as_root": true,
"spice_save_all_currents": false,
"spice_save_all_dissipations": false,
"spice_save_all_voltages": false,
"subpart_first_id": 65, "subpart_first_id": 65,
"subpart_id_separator": 0 "subpart_id_separator": 0
}, },
"sheets": [ "sheets": [
[ [
"b0906e10-2fbc-4309-a8b4-6fc4cd1a5490", "b0906e10-2fbc-4309-a8b4-6fc4cd1a5490",
"" "Root"
],
[
"b784b937-586c-44e4-9f31-5c494a1fde51",
"Registers"
],
[
"e374b520-4abe-488b-bd8d-ff74cb0e63aa",
"Bus"
],
[
"3559fc91-c32c-41f2-b7a9-252ed1808f49",
"LEDs"
],
[
"ce8cd90c-9ac1-4def-ac0a-387db1b0f75b",
"RAM"
],
[
"ffecb29e-62d5-4129-8b51-e50825db012c",
"Control"
],
[
"ea82801f-9a89-43e1-abaa-f3a0cb847bbc",
"Buf"
],
[
"30cdedb1-6a09-46f3-9d7c-42e8b9f6c939",
"Config"
] ]
], ],
"text_variables": {} "text_variables": {}
+2768 -6718
View File
File diff suppressed because it is too large Load Diff
+2284
View File
File diff suppressed because it is too large Load Diff
+22 -18
View File
@@ -1,18 +1,22 @@
Reference, Quantity, Value, Footprint, Datasheet, LCSC Part "Reference","Quantity","Value","Footprint","LCSC Part","DNP"
C16 C1 ,2,"10u","stdpads:C_0805","~","C15850" "C1, C2, C3, C4, C5","5","10u","stdpads:C_0805","C15850",""
C6 C2 C3 C4 C8 C9 C10 C7 C5 C11 C13 C12 C14 C15 ,14,"2u2","stdpads:C_0603","~","C23630" "C6, C7, C8, C9, C10, C11, C12, C13, C14, C15, C16, C17, C18, C19, C20, C21","16","2u2","stdpads:C_0603","C23630",""
FID4 FID3 FID2 FID1 ,4,"Fiducial","stdpads:Fiducial","~" "D1, D2, D3, D4, D5, D6","6","Amber","stdpads:LED_0805","C284932",""
H1 H2 H3 H4 H5 ,5," ","stdpads:PasteHole_1.152mm_NPTH","~" "FID1, FID2, FID3, FID4","4","Fiducial","stdpads:Fiducial","",""
J1 ,1,"AppleIIBus","stdpads:AppleIIBus_Edge","~" "H1, H2, H3, H4, H5","5","~","stdpads:PasteHole_1.152mm_NPTH","",""
R1 ,1,"3k3","stdpads:R_0805","~","C26010" "J1","1","AppleIIBus","stdpads:AppleIIBus_Edge","",""
R2 R4 ,2,"22k","stdpads:R_0805","~","C17560" "Q1","1","MMBT3904","stdpads:SOT-23","",""
R3 ,1,"10k","stdpads:R_0805","~","C17414" "R1, R3, R5, R6, R7, R8, R9, R10, R11","9","10k","stdpads:R_0603","C17560",""
R5 ,1,"33","stdpads:R_0805","~","C17634" "R2","1","2k2","stdpads:R_0603","C17560",""
SW1 ,1,"DMA/ROM","stdpads:SW_DIP_SPSTx02_Slide_DSHP02TS_P1.27mm","~","C319052" "R4","1","47","stdpads:R_0603","C17560",""
U1 ,1,"621024","stdpads:SOP-32_P1.27mm","http://www.futurlec.com/Datasheet/Memory/628128.pdf","C397875" "R12, R13, R14, R15, R16, R17","6","470","stdpads:R_0805","",""
U11 ,1,"74LVC1G126GW","stdpads:SOT-353","","C88039" "SW1","1","CFG","stdpads:SW_DIP_SPSTx05_Slide_DSHP05TS_P1.27mm","",""
U15 U13 U20 U12 U16 U14 U17 U19 ,8,"74AHCT1G04GW","stdpads:SOT-353","","C148199" "U1","1","621024","stdpads:SOP-32_450mil","C397875",""
U2 ,1,"74HCT245PW","stdpads:TSSOP-20_4.4x6.5mm_P0.65mm","","C5980" "U2","1","74HCT245PW","stdpads:TSSOP-20_4.4x6.5mm_P0.65mm","C5980",""
U3 U4 ,2,"74HCT273PW","stdpads:TSSOP-20_4.4x6.5mm_P0.65mm","http://www.ti.com/lit/gpn/sn74LS273","C5983" "U3","1","74AHCT00PW","stdpads:TSSOP-14_4.4x5mm_P0.65mm","C155175",""
U6 U8 U9 ,3,"74AHCT08PW","stdpads:TSSOP-14_4.4x5mm_P0.65mm","http://www.ti.com/lit/gpn/sn74LS08","C155175" "U4, U10, U15","3","74AHC1G14GW","stdpads:SOT-353","",""
U7 U10 ,2,"74AHCT32PW","stdpads:TSSOP-14_4.4x5mm_P0.65mm","http://www.ti.com/lit/gpn/sn74LS32","C129435" "U5, U18","2","74HCT273PW","stdpads:TSSOP-20_4.4x6.5mm_P0.65mm","",""
"U6","1","74AHCT02PW","stdpads:TSSOP-14_4.4x5mm_P0.65mm","C155175",""
"U7, U8, U9, U11","4","74AHCT08PW","stdpads:TSSOP-14_4.4x5mm_P0.65mm","C155175",""
"U12, U13","2","74AHCT32PW","stdpads:TSSOP-14_4.4x5mm_P0.65mm","C129435",""
"U14","1","74AHCT1G125GW","stdpads:SOT-353","",""
1 Reference Quantity Value Footprint Datasheet LCSC Part DNP
2 C16 C1 C1, C2, C3, C4, C5 2 5 10u stdpads:C_0805 ~ C15850
3 C6 C2 C3 C4 C8 C9 C10 C7 C5 C11 C13 C12 C14 C15 C6, C7, C8, C9, C10, C11, C12, C13, C14, C15, C16, C17, C18, C19, C20, C21 14 16 2u2 stdpads:C_0603 ~ C23630
4 FID4 FID3 FID2 FID1 D1, D2, D3, D4, D5, D6 4 6 Fiducial Amber stdpads:Fiducial stdpads:LED_0805 ~ C284932
5 H1 H2 H3 H4 H5 FID1, FID2, FID3, FID4 5 4 Fiducial stdpads:PasteHole_1.152mm_NPTH stdpads:Fiducial ~
6 J1 H1, H2, H3, H4, H5 1 5 AppleIIBus ~ stdpads:AppleIIBus_Edge stdpads:PasteHole_1.152mm_NPTH ~
7 R1 J1 1 3k3 AppleIIBus stdpads:R_0805 stdpads:AppleIIBus_Edge ~ C26010
8 R2 R4 Q1 2 1 22k MMBT3904 stdpads:R_0805 stdpads:SOT-23 ~ C17560
9 R3 R1, R3, R5, R6, R7, R8, R9, R10, R11 1 9 10k stdpads:R_0805 stdpads:R_0603 ~ C17414 C17560
10 R5 R2 1 33 2k2 stdpads:R_0805 stdpads:R_0603 ~ C17634 C17560
11 SW1 R4 1 DMA/ROM 47 stdpads:SW_DIP_SPSTx02_Slide_DSHP02TS_P1.27mm stdpads:R_0603 ~ C319052 C17560
12 U1 R12, R13, R14, R15, R16, R17 1 6 621024 470 stdpads:SOP-32_P1.27mm stdpads:R_0805 http://www.futurlec.com/Datasheet/Memory/628128.pdf C397875
13 U11 SW1 1 74LVC1G126GW CFG stdpads:SOT-353 stdpads:SW_DIP_SPSTx05_Slide_DSHP05TS_P1.27mm C88039
14 U15 U13 U20 U12 U16 U14 U17 U19 U1 8 1 74AHCT1G04GW 621024 stdpads:SOT-353 stdpads:SOP-32_450mil C148199 C397875
15 U2 U2 1 74HCT245PW stdpads:TSSOP-20_4.4x6.5mm_P0.65mm C5980
16 U3 U4 U3 2 1 74HCT273PW 74AHCT00PW stdpads:TSSOP-20_4.4x6.5mm_P0.65mm stdpads:TSSOP-14_4.4x5mm_P0.65mm http://www.ti.com/lit/gpn/sn74LS273 C5983 C155175
17 U6 U8 U9 U4, U10, U15 3 74AHCT08PW 74AHC1G14GW stdpads:TSSOP-14_4.4x5mm_P0.65mm stdpads:SOT-353 http://www.ti.com/lit/gpn/sn74LS08 C155175
18 U7 U10 U5, U18 2 74AHCT32PW 74HCT273PW stdpads:TSSOP-14_4.4x5mm_P0.65mm stdpads:TSSOP-20_4.4x6.5mm_P0.65mm http://www.ti.com/lit/gpn/sn74LS32 C129435
19 U6 1 74AHCT02PW stdpads:TSSOP-14_4.4x5mm_P0.65mm C155175
20 U7, U8, U9, U11 4 74AHCT08PW stdpads:TSSOP-14_4.4x5mm_P0.65mm C155175
21 U12, U13 2 74AHCT32PW stdpads:TSSOP-14_4.4x5mm_P0.65mm C129435
22 U14 1 74AHCT1G125GW stdpads:SOT-353
+465 -14626
View File
File diff suppressed because it is too large Load Diff
+1264 -69
View File
File diff suppressed because it is too large Load Diff
+382 -156
View File
@@ -1,12 +1,12 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.2-0)* G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,8.0.6*
G04 #@! TF.CreationDate,2022-08-07T04:59:55-04:00* G04 #@! TF.CreationDate,2025-03-26T02:33:46-04:00*
G04 #@! TF.ProjectId,RAM128,52414d31-3238-42e6-9b69-6361645f7063,1.0* G04 #@! TF.ProjectId,RAM128,52414d31-3238-42e6-9b69-6361645f7063,1.0*
G04 #@! TF.SameCoordinates,Original* G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Legend,Bot* G04 #@! TF.FileFunction,Legend,Bot*
G04 #@! TF.FilePolarity,Positive* G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*% %FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW (6.0.2-0)) date 2022-08-07 04:59:55* G04 Created by KiCad (PCBNEW 8.0.6) date 2025-03-26 02:33:46*
%MOMM*% %MOMM*%
%LPD*% %LPD*%
G01* G01*
@@ -31,156 +31,381 @@ G04 Aperture macros list*
G04 Aperture macros list end* G04 Aperture macros list end*
%ADD10C,0.200000*% %ADD10C,0.200000*%
%ADD11C,0.190500*% %ADD11C,0.190500*%
%ADD12C,0.000000*% %ADD12C,0.203200*%
%ADD13RoundRect,0.457200X0.381000X3.289000X-0.381000X3.289000X-0.381000X-3.289000X0.381000X-3.289000X0*% %ADD13C,0.000000*%
%ADD14C,1.448000*% %ADD14RoundRect,0.419100X0.419100X3.327100X-0.419100X3.327100X-0.419100X-3.327100X0.419100X-3.327100X0*%
%ADD15C,1.448000*%
G04 APERTURE END LIST* G04 APERTURE END LIST*
D10* D10*
X138049000Y-103886000D02* X143383000Y-102362000D02*
X137668000Y-104267000D01* X143002000Y-101981000D01*
X138176000Y-120269000D02* X142113000Y-116459000D02*
X136398000Y-121285000D01* X143383000Y-116459000D01*
X136398000Y-121285000D02* X143383000Y-116459000D02*
X136398000Y-119253000D01* X143002000Y-116840000D01*
X138049000Y-117983000D02* X142113000Y-102362000D02*
X137668000Y-118364000D01* X143383000Y-102362000D01*
X136779000Y-117983000D02* X143383000Y-116459000D02*
X138049000Y-117983000D01* X143002000Y-116078000D01*
X138049000Y-103886000D02* X143383000Y-102362000D02*
X137668000Y-103505000D01* X143002000Y-102743000D01*
X136779000Y-103886000D02* X141732000Y-117665500D02*
X138049000Y-103886000D01* X143637000Y-118745000D01*
X138049000Y-117983000D02* X143637000Y-118745000D02*
X137668000Y-117602000D01* X141732000Y-119824500D01*
X136398000Y-119253000D02* X141732000Y-119824500D02*
X138176000Y-120269000D01* X141732000Y-117665500D01*
X137982476Y-116646476D02*
X137982476Y-115920761D01*
X136712476Y-116283619D02*
X137982476Y-116283619D01*
X136712476Y-115316000D02*
X136772952Y-115436952D01*
X136833428Y-115497428D01*
X136954380Y-115557904D01*
X137317238Y-115557904D01*
X137438190Y-115497428D01*
X137498666Y-115436952D01*
X137559142Y-115316000D01*
X137559142Y-115134571D01*
X137498666Y-115013619D01*
X137438190Y-114953142D01*
X137317238Y-114892666D01*
X136954380Y-114892666D01*
X136833428Y-114953142D01*
X136772952Y-115013619D01*
X136712476Y-115134571D01*
X136712476Y-115316000D01*
X137559142Y-114469333D02*
X136712476Y-114227428D01*
X137317238Y-113985523D01*
X136712476Y-113743619D01*
X137559142Y-113501714D01*
X136712476Y-112473619D02*
X137377714Y-112473619D01*
X137498666Y-112534095D01*
X137559142Y-112655047D01*
X137559142Y-112896952D01*
X137498666Y-113017904D01*
X136772952Y-112473619D02*
X136712476Y-112594571D01*
X136712476Y-112896952D01*
X136772952Y-113017904D01*
X136893904Y-113078380D01*
X137014857Y-113078380D01*
X137135809Y-113017904D01*
X137196285Y-112896952D01*
X137196285Y-112594571D01*
X137256761Y-112473619D01*
X136712476Y-111868857D02*
X137559142Y-111868857D01*
X137317238Y-111868857D02*
X137438190Y-111808380D01*
X137498666Y-111747904D01*
X137559142Y-111626952D01*
X137559142Y-111506000D01*
X136712476Y-110538380D02*
X137982476Y-110538380D01*
X136772952Y-110538380D02*
X136712476Y-110659333D01*
X136712476Y-110901238D01*
X136772952Y-111022190D01*
X136833428Y-111082666D01*
X136954380Y-111143142D01*
X137317238Y-111143142D01*
X137438190Y-111082666D01*
X137498666Y-111022190D01*
X137559142Y-110901238D01*
X137559142Y-110659333D01*
X137498666Y-110538380D01*
X136712476Y-108240285D02*
X137317238Y-108663619D01*
X136712476Y-108966000D02*
X137982476Y-108966000D01*
X137982476Y-108482190D01*
X137922000Y-108361238D01*
X137861523Y-108300761D01*
X137740571Y-108240285D01*
X137559142Y-108240285D01*
X137438190Y-108300761D01*
X137377714Y-108361238D01*
X137317238Y-108482190D01*
X137317238Y-108966000D01*
X136772952Y-107212190D02*
X136712476Y-107333142D01*
X136712476Y-107575047D01*
X136772952Y-107696000D01*
X136893904Y-107756476D01*
X137377714Y-107756476D01*
X137498666Y-107696000D01*
X137559142Y-107575047D01*
X137559142Y-107333142D01*
X137498666Y-107212190D01*
X137377714Y-107151714D01*
X137256761Y-107151714D01*
X137135809Y-107756476D01*
X136712476Y-106063142D02*
X137377714Y-106063142D01*
X137498666Y-106123619D01*
X137559142Y-106244571D01*
X137559142Y-106486476D01*
X137498666Y-106607428D01*
X136772952Y-106063142D02*
X136712476Y-106184095D01*
X136712476Y-106486476D01*
X136772952Y-106607428D01*
X136893904Y-106667904D01*
X137014857Y-106667904D01*
X137135809Y-106607428D01*
X137196285Y-106486476D01*
X137196285Y-106184095D01*
X137256761Y-106063142D01*
X136712476Y-105458380D02*
X137559142Y-105458380D01*
X137317238Y-105458380D02*
X137438190Y-105397904D01*
X137498666Y-105337428D01*
X137559142Y-105216476D01*
X137559142Y-105095523D01*
D11* D11*
X136760857Y-120269000D02* X142141798Y-118745000D02*
X136724571Y-120232714D01* X142103094Y-118706295D01*
X136688285Y-120269000D01* X142103094Y-118706295D02*
X136724571Y-120305285D01* X142064389Y-118745000D01*
X136760857Y-120269000D01* X142064389Y-118745000D02*
X136688285Y-120269000D01* X142103094Y-118783704D01*
X136978571Y-120269000D02* X142103094Y-118783704D02*
X137414000Y-120305285D01* X142141798Y-118745000D01*
X137450285Y-120269000D01* X142141798Y-118745000D02*
X137414000Y-120232714D01* X142064389Y-118745000D01*
X136978571Y-120269000D01* X142374027Y-118745000D02*
X137450285Y-120269000D01* X142838484Y-118783704D01*
%LPC*% X142838484Y-118783704D02*
X142877189Y-118745000D01*
X142877189Y-118745000D02*
X142838484Y-118706295D01*
X142838484Y-118706295D02*
X142374027Y-118745000D01*
X142374027Y-118745000D02*
X142877189Y-118745000D01*
D10*
X143313873Y-115122475D02*
X143313873Y-114396761D01*
X142043873Y-114759618D02*
X143313873Y-114759618D01*
X142043873Y-113791999D02*
X142104350Y-113912951D01*
X142104350Y-113912951D02*
X142164826Y-113973428D01*
X142164826Y-113973428D02*
X142285778Y-114033904D01*
X142285778Y-114033904D02*
X142648635Y-114033904D01*
X142648635Y-114033904D02*
X142769588Y-113973428D01*
X142769588Y-113973428D02*
X142830064Y-113912951D01*
X142830064Y-113912951D02*
X142890540Y-113791999D01*
X142890540Y-113791999D02*
X142890540Y-113610570D01*
X142890540Y-113610570D02*
X142830064Y-113489618D01*
X142830064Y-113489618D02*
X142769588Y-113429142D01*
X142769588Y-113429142D02*
X142648635Y-113368666D01*
X142648635Y-113368666D02*
X142285778Y-113368666D01*
X142285778Y-113368666D02*
X142164826Y-113429142D01*
X142164826Y-113429142D02*
X142104350Y-113489618D01*
X142104350Y-113489618D02*
X142043873Y-113610570D01*
X142043873Y-113610570D02*
X142043873Y-113791999D01*
X142890540Y-112945332D02*
X142043873Y-112703427D01*
X142043873Y-112703427D02*
X142648635Y-112461522D01*
X142648635Y-112461522D02*
X142043873Y-112219618D01*
X142043873Y-112219618D02*
X142890540Y-111977713D01*
X142043873Y-110949618D02*
X142709111Y-110949618D01*
X142709111Y-110949618D02*
X142830064Y-111010094D01*
X142830064Y-111010094D02*
X142890540Y-111131046D01*
X142890540Y-111131046D02*
X142890540Y-111372951D01*
X142890540Y-111372951D02*
X142830064Y-111493904D01*
X142104350Y-110949618D02*
X142043873Y-111070570D01*
X142043873Y-111070570D02*
X142043873Y-111372951D01*
X142043873Y-111372951D02*
X142104350Y-111493904D01*
X142104350Y-111493904D02*
X142225302Y-111554380D01*
X142225302Y-111554380D02*
X142346254Y-111554380D01*
X142346254Y-111554380D02*
X142467207Y-111493904D01*
X142467207Y-111493904D02*
X142527683Y-111372951D01*
X142527683Y-111372951D02*
X142527683Y-111070570D01*
X142527683Y-111070570D02*
X142588159Y-110949618D01*
X142043873Y-110344856D02*
X142890540Y-110344856D01*
X142648635Y-110344856D02*
X142769588Y-110284379D01*
X142769588Y-110284379D02*
X142830064Y-110223903D01*
X142830064Y-110223903D02*
X142890540Y-110102951D01*
X142890540Y-110102951D02*
X142890540Y-109981998D01*
X142043873Y-109014380D02*
X143313873Y-109014380D01*
X142104350Y-109014380D02*
X142043873Y-109135332D01*
X142043873Y-109135332D02*
X142043873Y-109377237D01*
X142043873Y-109377237D02*
X142104350Y-109498189D01*
X142104350Y-109498189D02*
X142164826Y-109558666D01*
X142164826Y-109558666D02*
X142285778Y-109619142D01*
X142285778Y-109619142D02*
X142648635Y-109619142D01*
X142648635Y-109619142D02*
X142769588Y-109558666D01*
X142769588Y-109558666D02*
X142830064Y-109498189D01*
X142830064Y-109498189D02*
X142890540Y-109377237D01*
X142890540Y-109377237D02*
X142890540Y-109135332D01*
X142890540Y-109135332D02*
X142830064Y-109014380D01*
X142043873Y-106716284D02*
X142648635Y-107139618D01*
X142043873Y-107441999D02*
X143313873Y-107441999D01*
X143313873Y-107441999D02*
X143313873Y-106958189D01*
X143313873Y-106958189D02*
X143253397Y-106837237D01*
X143253397Y-106837237D02*
X143192921Y-106776760D01*
X143192921Y-106776760D02*
X143071969Y-106716284D01*
X143071969Y-106716284D02*
X142890540Y-106716284D01*
X142890540Y-106716284D02*
X142769588Y-106776760D01*
X142769588Y-106776760D02*
X142709111Y-106837237D01*
X142709111Y-106837237D02*
X142648635Y-106958189D01*
X142648635Y-106958189D02*
X142648635Y-107441999D01*
X142104350Y-105688189D02*
X142043873Y-105809141D01*
X142043873Y-105809141D02*
X142043873Y-106051046D01*
X142043873Y-106051046D02*
X142104350Y-106171999D01*
X142104350Y-106171999D02*
X142225302Y-106232475D01*
X142225302Y-106232475D02*
X142709111Y-106232475D01*
X142709111Y-106232475D02*
X142830064Y-106171999D01*
X142830064Y-106171999D02*
X142890540Y-106051046D01*
X142890540Y-106051046D02*
X142890540Y-105809141D01*
X142890540Y-105809141D02*
X142830064Y-105688189D01*
X142830064Y-105688189D02*
X142709111Y-105627713D01*
X142709111Y-105627713D02*
X142588159Y-105627713D01*
X142588159Y-105627713D02*
X142467207Y-106232475D01*
X142043873Y-104539142D02*
X142709111Y-104539142D01*
X142709111Y-104539142D02*
X142830064Y-104599618D01*
X142830064Y-104599618D02*
X142890540Y-104720570D01*
X142890540Y-104720570D02*
X142890540Y-104962475D01*
X142890540Y-104962475D02*
X142830064Y-105083428D01*
X142104350Y-104539142D02*
X142043873Y-104660094D01*
X142043873Y-104660094D02*
X142043873Y-104962475D01*
X142043873Y-104962475D02*
X142104350Y-105083428D01*
X142104350Y-105083428D02*
X142225302Y-105143904D01*
X142225302Y-105143904D02*
X142346254Y-105143904D01*
X142346254Y-105143904D02*
X142467207Y-105083428D01*
X142467207Y-105083428D02*
X142527683Y-104962475D01*
X142527683Y-104962475D02*
X142527683Y-104660094D01*
X142527683Y-104660094D02*
X142588159Y-104539142D01*
X142043873Y-103934380D02*
X142890540Y-103934380D01*
X142648635Y-103934380D02*
X142769588Y-103873903D01*
X142769588Y-103873903D02*
X142830064Y-103813427D01*
X142830064Y-103813427D02*
X142890540Y-103692475D01*
X142890540Y-103692475D02*
X142890540Y-103571522D01*
D12* D12*
X134396237Y-129473649D02*
X133854371Y-129473649D01*
X133854371Y-129473649D02*
X134396237Y-130286449D01*
X134396237Y-130286449D02*
X133854371Y-130286449D01*
X133544733Y-130286449D02*
X133544733Y-129473649D01*
X133080276Y-130286449D02*
X133428618Y-129821992D01*
X133080276Y-129473649D02*
X133544733Y-129938106D01*
X132693228Y-130247745D02*
X132693228Y-130286449D01*
X132693228Y-130286449D02*
X132731933Y-130363859D01*
X132731933Y-130363859D02*
X132770637Y-130402564D01*
X131299856Y-129512354D02*
X131377266Y-129473649D01*
X131377266Y-129473649D02*
X131493380Y-129473649D01*
X131493380Y-129473649D02*
X131609494Y-129512354D01*
X131609494Y-129512354D02*
X131686904Y-129589764D01*
X131686904Y-129589764D02*
X131725609Y-129667173D01*
X131725609Y-129667173D02*
X131764313Y-129821992D01*
X131764313Y-129821992D02*
X131764313Y-129938106D01*
X131764313Y-129938106D02*
X131725609Y-130092925D01*
X131725609Y-130092925D02*
X131686904Y-130170335D01*
X131686904Y-130170335D02*
X131609494Y-130247745D01*
X131609494Y-130247745D02*
X131493380Y-130286449D01*
X131493380Y-130286449D02*
X131415971Y-130286449D01*
X131415971Y-130286449D02*
X131299856Y-130247745D01*
X131299856Y-130247745D02*
X131261152Y-130209040D01*
X131261152Y-130209040D02*
X131261152Y-129938106D01*
X131261152Y-129938106D02*
X131415971Y-129938106D01*
X130641875Y-129860697D02*
X130912809Y-129860697D01*
X130912809Y-130286449D02*
X130912809Y-129473649D01*
X130912809Y-129473649D02*
X130525761Y-129473649D01*
X72277514Y-130209040D02*
X72316218Y-130247745D01*
X72316218Y-130247745D02*
X72432333Y-130286449D01*
X72432333Y-130286449D02*
X72509742Y-130286449D01*
X72509742Y-130286449D02*
X72625856Y-130247745D01*
X72625856Y-130247745D02*
X72703266Y-130170335D01*
X72703266Y-130170335D02*
X72741971Y-130092925D01*
X72741971Y-130092925D02*
X72780675Y-129938106D01*
X72780675Y-129938106D02*
X72780675Y-129821992D01*
X72780675Y-129821992D02*
X72741971Y-129667173D01*
X72741971Y-129667173D02*
X72703266Y-129589764D01*
X72703266Y-129589764D02*
X72625856Y-129512354D01*
X72625856Y-129512354D02*
X72509742Y-129473649D01*
X72509742Y-129473649D02*
X72432333Y-129473649D01*
X72432333Y-129473649D02*
X72316218Y-129512354D01*
X72316218Y-129512354D02*
X72277514Y-129551059D01*
X71503418Y-130286449D02*
X71967875Y-130286449D01*
X71735647Y-130286449D02*
X71735647Y-129473649D01*
X71735647Y-129473649D02*
X71813056Y-129589764D01*
X71813056Y-129589764D02*
X71890466Y-129667173D01*
X71890466Y-129667173D02*
X71967875Y-129705878D01*
X71000257Y-129473649D02*
X70922847Y-129473649D01*
X70922847Y-129473649D02*
X70845438Y-129512354D01*
X70845438Y-129512354D02*
X70806733Y-129551059D01*
X70806733Y-129551059D02*
X70768028Y-129628468D01*
X70768028Y-129628468D02*
X70729323Y-129783287D01*
X70729323Y-129783287D02*
X70729323Y-129976811D01*
X70729323Y-129976811D02*
X70768028Y-130131630D01*
X70768028Y-130131630D02*
X70806733Y-130209040D01*
X70806733Y-130209040D02*
X70845438Y-130247745D01*
X70845438Y-130247745D02*
X70922847Y-130286449D01*
X70922847Y-130286449D02*
X71000257Y-130286449D01*
X71000257Y-130286449D02*
X71077666Y-130247745D01*
X71077666Y-130247745D02*
X71116371Y-130209040D01*
X71116371Y-130209040D02*
X71155076Y-130131630D01*
X71155076Y-130131630D02*
X71193780Y-129976811D01*
X71193780Y-129976811D02*
X71193780Y-129783287D01*
X71193780Y-129783287D02*
X71155076Y-129628468D01*
X71155076Y-129628468D02*
X71116371Y-129551059D01*
X71116371Y-129551059D02*
X71077666Y-129512354D01*
X71077666Y-129512354D02*
X71000257Y-129473649D01*
%LPC*%
D13*
G36* G36*
X139700000Y-139446000D02* X139700000Y-139446000D02*
G01* G01*
@@ -191,7 +416,7 @@ X73660000Y-132080000D01*
X139700000Y-132080000D01* X139700000Y-132080000D01*
X139700000Y-139446000D01* X139700000Y-139446000D01*
G37* G37*
D13* D14*
X137160000Y-135282000D03* X137160000Y-135282000D03*
X134620000Y-135282000D03* X134620000Y-135282000D03*
X132080000Y-135282000D03* X132080000Y-135282000D03*
@@ -217,10 +442,11 @@ X83820000Y-135282000D03*
X81280000Y-135282000D03* X81280000Y-135282000D03*
X78740000Y-135282000D03* X78740000Y-135282000D03*
X76200000Y-135282000D03* X76200000Y-135282000D03*
D14* D15*
X70358000Y-129540000D03* X140462000Y-129540000D03*
X136906000Y-122555000D03* X140462000Y-82423000D03*
X133096000Y-129540000D03* X57023000Y-84709000D03*
X136906000Y-101600000D03* X143002000Y-127000000D03*
X70104000Y-105664000D03* X48133000Y-127000000D03*
%LPD*%
M02* M02*
+46 -39
View File
@@ -1,11 +1,11 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.2-0)* G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,8.0.6*
G04 #@! TF.CreationDate,2022-08-07T04:59:55-04:00* G04 #@! TF.CreationDate,2025-03-26T02:33:46-04:00*
G04 #@! TF.ProjectId,RAM128,52414d31-3238-42e6-9b69-6361645f7063,1.0* G04 #@! TF.ProjectId,RAM128,52414d31-3238-42e6-9b69-6361645f7063,1.0*
G04 #@! TF.SameCoordinates,Original* G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Profile,NP* G04 #@! TF.FileFunction,Profile,NP*
%FSLAX46Y46*% %FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW (6.0.2-0)) date 2022-08-07 04:59:55* G04 Created by KiCad (PCBNEW 8.0.6) date 2025-03-26 02:33:46*
%MOMM*% %MOMM*%
%LPD*% %LPD*%
G01* G01*
@@ -15,50 +15,57 @@ G04 #@! TA.AperFunction,Profile*
G04 #@! TD* G04 #@! TD*
G04 APERTURE END LIST* G04 APERTURE END LIST*
D10* D10*
X57785000Y-80391000D02*
X46101001Y-92074999D01*
X143002000Y-132080000D02*
X139446000Y-132080000D01*
X45593000Y-129540000D02*
X45593000Y-93599000D01*
X48133000Y-132080000D02*
G75*
G02*
X45593000Y-129540000I0J2540000D01*
G01*
X138938000Y-139700000D02* X138938000Y-139700000D02*
X74422000Y-139700000D01* X74422000Y-139700000D01*
X73914000Y-139192000D02* X145542000Y-129540000D02*
G75* G75*
G03* G02*
X74422000Y-139700000I508001J1D01* X143002000Y-132080000I-2540000J0D01*
G01* G01*
X138938000Y-139700000D02* X139446000Y-139192000D02*
G75* G75*
G03* G02*
X139446000Y-139192000I-1J508001D01* X138938000Y-139700000I-508000J0D01*
G01* G01*
X73914000Y-132080000D02* X57785000Y-80391000D02*
X73914000Y-139192000D01* G75*
G02*
X59309000Y-79883000I1524000J-2032000D01*
G01*
X74422000Y-139700000D02*
G75*
G02*
X73914000Y-139192000I0J508000D01*
G01*
X48133000Y-132080000D02*
X73914000Y-132080000D01*
X143002000Y-79883000D02*
G75*
G02*
X145542000Y-82423000I0J-2540000D01*
G01*
X145542000Y-82423000D02*
X145542000Y-129540000D01*
X139446000Y-132080000D02* X139446000Y-132080000D02*
X139446000Y-139192000D01* X139446000Y-139192000D01*
X76454000Y-97028000D02* X59309000Y-79883000D02*
X136906000Y-97028000D01* X143002000Y-79883000D01*
X139446000Y-99568000D02* X73914000Y-132080000D02*
X73914000Y-139192000D01*
X45593000Y-93599000D02*
G75* G75*
G03* G02*
X136906000Y-97028000I-2540001J-1D01* X46101001Y-92074999I2540000J0D01*
G01*
X139446000Y-99568000D02*
X139446000Y-132080000D01*
X65278000Y-108204000D02*
X65278000Y-129540000D01*
X67818000Y-132080000D02*
X73914000Y-132080000D01*
X76454000Y-97028000D02*
G75*
G03*
X74930000Y-97536000I-3J-2539990D01*
G01*
X65278000Y-129540000D02*
G75*
G03*
X67818000Y-132080000I2540001J1D01*
G01*
X65786001Y-106679999D02*
X74930000Y-97536000D01*
X65786001Y-106679999D02*
G75*
G03*
X65278000Y-108204000I2032004J-1524003D01*
G01* G01*
M02* M02*
+1447 -22541
View File
File diff suppressed because it is too large Load Diff
+13652 -378
View File
File diff suppressed because it is too large Load Diff
+394 -292
View File
@@ -1,12 +1,12 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.2-0)* G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,8.0.6*
G04 #@! TF.CreationDate,2022-08-07T04:59:55-04:00* G04 #@! TF.CreationDate,2025-03-26T02:33:46-04:00*
G04 #@! TF.ProjectId,RAM128,52414d31-3238-42e6-9b69-6361645f7063,1.0* G04 #@! TF.ProjectId,RAM128,52414d31-3238-42e6-9b69-6361645f7063,1.0*
G04 #@! TF.SameCoordinates,Original* G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Paste,Top* G04 #@! TF.FileFunction,Paste,Top*
G04 #@! TF.FilePolarity,Positive* G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*% %FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW (6.0.2-0)) date 2022-08-07 04:59:55* G04 Created by KiCad (PCBNEW 8.0.6) date 2025-03-26 02:33:46*
%MOMM*% %MOMM*%
%LPD*% %LPD*%
G01* G01*
@@ -29,303 +29,405 @@ G04 Aperture macros list*
20,1,$1+$1,$6,$7,$8,$9,0* 20,1,$1+$1,$6,$7,$8,$9,0*
20,1,$1+$1,$8,$9,$2,$3,0*% 20,1,$1+$1,$8,$9,$2,$3,0*%
G04 Aperture macros list end* G04 Aperture macros list end*
%ADD10RoundRect,0.237500X0.262500X0.437500X-0.262500X0.437500X-0.262500X-0.437500X0.262500X-0.437500X0*% %ADD10RoundRect,0.192500X-0.242500X0.192500X-0.242500X-0.192500X0.242500X-0.192500X0.242500X0.192500X0*%
%ADD11RoundRect,0.172500X-0.262500X0.212500X-0.262500X-0.212500X0.262500X-0.212500X0.262500X0.212500X0*% %ADD11RoundRect,0.200000X-0.475000X0.200000X-0.475000X-0.200000X0.475000X-0.200000X0.475000X0.200000X0*%
%ADD12RoundRect,0.187500X0.212500X0.487500X-0.212500X0.487500X-0.212500X-0.487500X0.212500X-0.487500X0*% %ADD12RoundRect,0.250000X0.250000X0.425000X-0.250000X0.425000X-0.250000X-0.425000X0.250000X-0.425000X0*%
%ADD13RoundRect,0.060000X-0.100000X0.400000X-0.100000X-0.400000X0.100000X-0.400000X0.100000X0.400000X0*% %ADD13RoundRect,0.092500X0.092500X-0.592500X0.092500X0.592500X-0.092500X0.592500X-0.092500X-0.592500X0*%
%ADD14RoundRect,0.072500X-0.612500X-0.112500X0.612500X-0.112500X0.612500X0.112500X-0.612500X0.112500X0*% %ADD14RoundRect,0.224700X-0.437200X0.224700X-0.437200X-0.224700X0.437200X-0.224700X0.437200X0.224700X0*%
%ADD15RoundRect,0.060000X0.100000X-0.400000X0.100000X0.400000X-0.100000X0.400000X-0.100000X-0.400000X0*% %ADD15RoundRect,0.150000X0.150000X0.275000X-0.150000X0.275000X-0.150000X-0.275000X0.150000X-0.275000X0*%
%ADD16RoundRect,0.172500X0.212500X0.262500X-0.212500X0.262500X-0.212500X-0.262500X0.212500X-0.262500X0*% %ADD16RoundRect,0.080000X-0.380000X-0.080000X0.380000X-0.080000X0.380000X0.080000X-0.380000X0.080000X0*%
%ADD17RoundRect,0.072500X0.112500X-0.612500X0.112500X0.612500X-0.112500X0.612500X-0.112500X-0.612500X0*% %ADD17RoundRect,0.150000X-0.150000X-0.275000X0.150000X-0.275000X0.150000X0.275000X-0.150000X0.275000X0*%
%ADD18RoundRect,0.125000X-0.150000X0.802500X-0.150000X-0.802500X0.150000X-0.802500X0.150000X0.802500X0*% %ADD18RoundRect,0.192500X0.242500X-0.192500X0.242500X0.192500X-0.242500X0.192500X-0.242500X-0.192500X0*%
%ADD19RoundRect,0.187500X-0.212500X-0.487500X0.212500X-0.487500X0.212500X0.487500X-0.212500X0.487500X0*% %ADD19RoundRect,0.177500X0.177500X-0.559500X0.177500X0.559500X-0.177500X0.559500X-0.177500X-0.559500X0*%
%ADD20RoundRect,0.072500X-0.112500X0.612500X-0.112500X-0.612500X0.112500X-0.612500X0.112500X0.612500X0*% %ADD20RoundRect,0.192500X0.192500X0.242500X-0.192500X0.242500X-0.192500X-0.242500X0.192500X-0.242500X0*%
%ADD21RoundRect,0.172500X0.262500X-0.212500X0.262500X0.212500X-0.262500X0.212500X-0.262500X-0.212500X0*% %ADD21RoundRect,0.092500X-0.092500X0.592500X-0.092500X-0.592500X0.092500X-0.592500X0.092500X0.592500X0*%
%ADD22RoundRect,0.165000X0.190000X-0.572000X0.190000X0.572000X-0.190000X0.572000X-0.190000X-0.572000X0*% %ADD22RoundRect,0.150000X0.275000X-0.150000X0.275000X0.150000X-0.275000X0.150000X-0.275000X-0.150000X0*%
%ADD23RoundRect,0.250000X0.425000X-0.250000X0.425000X0.250000X-0.425000X0.250000X-0.425000X-0.250000X0*%
%ADD24RoundRect,0.080000X0.080000X-0.380000X0.080000X0.380000X-0.080000X0.380000X-0.080000X-0.380000X0*%
%ADD25RoundRect,0.080000X-0.080000X0.380000X-0.080000X-0.380000X0.080000X-0.380000X0.080000X0.380000X0*%
%ADD26RoundRect,0.137500X-0.137500X0.790000X-0.137500X-0.790000X0.137500X-0.790000X0.137500X0.790000X0*%
%ADD27RoundRect,0.250000X-0.250000X-0.425000X0.250000X-0.425000X0.250000X0.425000X-0.250000X0.425000X0*%
%ADD28RoundRect,0.175000X0.175000X-0.450000X0.175000X0.450000X-0.175000X0.450000X-0.175000X-0.450000X0*%
G04 APERTURE END LIST* G04 APERTURE END LIST*
D10* D10*
X137160000Y-127889000D03* X101800000Y-105900000D03*
X135460000Y-127889000D03* X101800000Y-107400000D03*
D11* D11*
X109600000Y-127000000D03* X58350000Y-97700000D03*
X109600000Y-128500000D03* X58350000Y-99600000D03*
D12* D12*
X134150000Y-123500000D03* X76200000Y-128270000D03*
X132250000Y-123500000D03* X74500000Y-128270000D03*
D13*
X123200000Y-127000000D03*
X122550000Y-127000000D03*
X121900000Y-127000000D03*
X121900000Y-128700000D03*
X123200000Y-128700000D03*
D14*
X123000000Y-106150000D03*
X123000000Y-106800000D03*
X123000000Y-107450000D03*
X123000000Y-108100000D03*
X123000000Y-108750000D03*
X123000000Y-109400000D03*
X123000000Y-110050000D03*
X123000000Y-110700000D03*
X123000000Y-111350000D03*
X123000000Y-112000000D03*
X128900000Y-112000000D03*
X128900000Y-111350000D03*
X128900000Y-110700000D03*
X128900000Y-110050000D03*
X128900000Y-109400000D03*
X128900000Y-108750000D03*
X128900000Y-108100000D03*
X128900000Y-107450000D03*
X128900000Y-106800000D03*
X128900000Y-106150000D03*
D15*
X126500000Y-128700000D03*
X127150000Y-128700000D03*
X127800000Y-128700000D03*
X127800000Y-127000000D03*
X126500000Y-127000000D03*
X78050000Y-128500000D03*
X78700000Y-128500000D03*
X79350000Y-128500000D03*
X79350000Y-126800000D03*
X78050000Y-126800000D03*
D11*
X117250000Y-127000000D03*
X117250000Y-128500000D03*
D15*
X111100000Y-128700000D03*
X111750000Y-128700000D03*
X112400000Y-128700000D03*
X112400000Y-127000000D03*
X111100000Y-127000000D03*
X118750000Y-128700000D03*
X119400000Y-128700000D03*
X120050000Y-128700000D03*
X120050000Y-127000000D03*
X118750000Y-127000000D03*
D16*
X76650000Y-126800000D03*
X75150000Y-126800000D03*
D15*
X129100000Y-128700000D03*
X129750000Y-128700000D03*
X130400000Y-128700000D03*
X130400000Y-127000000D03*
X129100000Y-127000000D03*
D17*
X95950000Y-123800000D03*
X96600000Y-123800000D03*
X97250000Y-123800000D03*
X97900000Y-123800000D03*
X98550000Y-123800000D03*
X99200000Y-123800000D03*
X99850000Y-123800000D03*
X99850000Y-117900000D03*
X99200000Y-117900000D03*
X98550000Y-117900000D03*
X97900000Y-117900000D03*
X97250000Y-117900000D03*
X96600000Y-117900000D03*
X95950000Y-117900000D03*
X125150000Y-123800000D03*
X125800000Y-123800000D03*
X126450000Y-123800000D03*
X127100000Y-123800000D03*
X127750000Y-123800000D03*
X128400000Y-123800000D03*
X129050000Y-123800000D03*
X129050000Y-117900000D03*
X128400000Y-117900000D03*
X127750000Y-117900000D03*
X127100000Y-117900000D03*
X126450000Y-117900000D03*
X125800000Y-117900000D03*
X125150000Y-117900000D03*
D11*
X116300000Y-117900000D03*
X116300000Y-119400000D03*
D17*
X117850000Y-123800000D03*
X118500000Y-123800000D03*
X119150000Y-123800000D03*
X119800000Y-123800000D03*
X120450000Y-123800000D03*
X121100000Y-123800000D03*
X121750000Y-123800000D03*
X121750000Y-117900000D03*
X121100000Y-117900000D03*
X120450000Y-117900000D03*
X119800000Y-117900000D03*
X119150000Y-117900000D03*
X118500000Y-117900000D03*
X117850000Y-117900000D03*
D11*
X94400000Y-117900000D03*
X94400000Y-119400000D03*
D17*
X110550000Y-123800000D03*
X111200000Y-123800000D03*
X111850000Y-123800000D03*
X112500000Y-123800000D03*
X113150000Y-123800000D03*
X113800000Y-123800000D03*
X114450000Y-123800000D03*
X114450000Y-117900000D03*
X113800000Y-117900000D03*
X113150000Y-117900000D03*
X112500000Y-117900000D03*
X111850000Y-117900000D03*
X111200000Y-117900000D03*
X110550000Y-117900000D03*
D11*
X101700000Y-117900000D03*
X101700000Y-119400000D03*
D17*
X103250000Y-123800000D03*
X103900000Y-123800000D03*
X104550000Y-123800000D03*
X105200000Y-123800000D03*
X105850000Y-123800000D03*
X106500000Y-123800000D03*
X107150000Y-123800000D03*
X107150000Y-117900000D03*
X106500000Y-117900000D03*
X105850000Y-117900000D03*
X105200000Y-117900000D03*
X104550000Y-117900000D03*
X103900000Y-117900000D03*
X103250000Y-117900000D03*
D11*
X123600000Y-117900000D03*
X123600000Y-119400000D03*
X109000000Y-117900000D03*
X109000000Y-119400000D03*
X125000000Y-127000000D03*
X125000000Y-128500000D03*
D18*
X96774000Y-114046000D03*
X95504000Y-114046000D03*
X94234000Y-114046000D03*
X92964000Y-114046000D03*
X91694000Y-114046000D03*
X90424000Y-114046000D03*
X89154000Y-114046000D03*
X87884000Y-114046000D03*
X86614000Y-114046000D03*
X85344000Y-114046000D03*
X84074000Y-114046000D03*
X82804000Y-114046000D03*
X81534000Y-114046000D03*
X80264000Y-114046000D03*
X78994000Y-114046000D03*
X77724000Y-114046000D03*
X77724000Y-100838000D03*
X78994000Y-100838000D03*
X80264000Y-100838000D03*
X81534000Y-100838000D03*
X82804000Y-100838000D03*
X84074000Y-100838000D03*
X85344000Y-100838000D03*
X86614000Y-100838000D03*
X87884000Y-100838000D03*
X89154000Y-100838000D03*
X90424000Y-100838000D03*
X91694000Y-100838000D03*
X92964000Y-100838000D03*
X94234000Y-100838000D03*
X95504000Y-100838000D03*
X96774000Y-100838000D03*
D19*
X99200000Y-115450000D03*
X101100000Y-115450000D03*
D14*
X108400000Y-106150000D03*
X108400000Y-106800000D03*
X108400000Y-107450000D03*
X108400000Y-108100000D03*
X108400000Y-108750000D03*
X108400000Y-109400000D03*
X108400000Y-110050000D03*
X108400000Y-110700000D03*
X108400000Y-111350000D03*
X108400000Y-112000000D03*
X114300000Y-112000000D03*
X114300000Y-111350000D03*
X114300000Y-110700000D03*
X114300000Y-110050000D03*
X114300000Y-109400000D03*
X114300000Y-108750000D03*
X114300000Y-108100000D03*
X114300000Y-107450000D03*
X114300000Y-106800000D03*
X114300000Y-106150000D03*
D11*
X116250000Y-106150000D03*
X116250000Y-107650000D03*
X130850000Y-106150000D03*
X130850000Y-107650000D03*
D20*
X86050000Y-117900000D03*
X85400000Y-117900000D03*
X84750000Y-117900000D03*
X84100000Y-117900000D03*
X83450000Y-117900000D03*
X82800000Y-117900000D03*
X82150000Y-117900000D03*
X81500000Y-117900000D03*
X80850000Y-117900000D03*
X80200000Y-117900000D03*
X80200000Y-123800000D03*
X80850000Y-123800000D03*
X81500000Y-123800000D03*
X82150000Y-123800000D03*
X82800000Y-123800000D03*
X83450000Y-123800000D03*
X84100000Y-123800000D03*
X84750000Y-123800000D03*
X85400000Y-123800000D03*
X86050000Y-123800000D03*
D10* D10*
X74150000Y-130300000D03* X117150000Y-92900000D03*
X72450000Y-130300000D03* X117150000Y-94400000D03*
D13*
X103150000Y-98950000D03*
X103800000Y-98950000D03*
X104450000Y-98950000D03*
X105100000Y-98950000D03*
X105750000Y-98950000D03*
X106400000Y-98950000D03*
X107050000Y-98950000D03*
X107700000Y-98950000D03*
X108350000Y-98950000D03*
X109000000Y-98950000D03*
X109000000Y-93050000D03*
X108350000Y-93050000D03*
X107700000Y-93050000D03*
X107050000Y-93050000D03*
X106400000Y-93050000D03*
X105750000Y-93050000D03*
X105100000Y-93050000D03*
X104450000Y-93050000D03*
X103800000Y-93050000D03*
X103150000Y-93050000D03*
D14*
X61550000Y-94312500D03*
X61550000Y-96187500D03*
D15* D15*
X80650000Y-128500000D03* X113950000Y-99150000D03*
X81300000Y-128500000D03* X112350000Y-99150000D03*
X81950000Y-128500000D03* D10*
X81950000Y-126800000D03* X110350000Y-105900000D03*
X80650000Y-126800000D03* X110350000Y-107400000D03*
X83250000Y-128500000D03* X118900000Y-118900000D03*
X83900000Y-128500000D03* X118900000Y-120400000D03*
X84550000Y-128500000D03* D16*
X84550000Y-126800000D03* X54500000Y-120950000D03*
X83250000Y-126800000D03* X54500000Y-121600000D03*
X54500000Y-122250000D03*
X56200000Y-122250000D03*
X56200000Y-120950000D03*
D11* D11*
X86050000Y-126800000D03* X67950000Y-97700000D03*
X86050000Y-128300000D03* X67950000Y-99600000D03*
D21* D13*
X87500000Y-123800000D03* X94800000Y-124950000D03*
X87500000Y-122300000D03* X95450000Y-124950000D03*
D15* X96100000Y-124950000D03*
X132550000Y-118550000D03* X96750000Y-124950000D03*
X133200000Y-118550000D03* X97400000Y-124950000D03*
X133850000Y-118550000D03* X98050000Y-124950000D03*
X133850000Y-116850000D03* X98700000Y-124950000D03*
X132550000Y-116850000D03* X98700000Y-119050000D03*
D11* X98050000Y-119050000D03*
X131050000Y-116850000D03* X97400000Y-119050000D03*
X131050000Y-118350000D03* X96750000Y-119050000D03*
X96100000Y-119050000D03*
X95450000Y-119050000D03*
X94800000Y-119050000D03*
D12* D12*
X134150000Y-125700000D03* X120826000Y-128270000D03*
X132250000Y-125700000D03* X119126000Y-128270000D03*
X105800000Y-115450000D03* D17*
X103900000Y-115450000D03* X112350000Y-94650000D03*
X113950000Y-94650000D03*
D14*
X53950000Y-94312500D03*
X53950000Y-96187500D03*
D10*
X101600000Y-92900000D03*
X101600000Y-94400000D03*
D18*
X129000000Y-124250000D03*
X129000000Y-122750000D03*
D11*
X61550000Y-97700000D03*
X61550000Y-99600000D03*
X56150000Y-97700000D03*
X56150000Y-99600000D03*
D13*
X103350000Y-124950000D03*
X104000000Y-124950000D03*
X104650000Y-124950000D03*
X105300000Y-124950000D03*
X105950000Y-124950000D03*
X106600000Y-124950000D03*
X107250000Y-124950000D03*
X107250000Y-119050000D03*
X106600000Y-119050000D03*
X105950000Y-119050000D03*
X105300000Y-119050000D03*
X104650000Y-119050000D03*
X104000000Y-119050000D03*
X103350000Y-119050000D03*
D10*
X135350000Y-122600000D03*
X135350000Y-124100000D03*
D17*
X132400000Y-128250000D03*
X134000000Y-128250000D03*
D19* D19*
X132250000Y-121500000D03* X132143500Y-97091500D03*
X134150000Y-121500000D03* X133413500Y-97091500D03*
X134683500Y-97091500D03*
X135953500Y-97091500D03*
X137223500Y-97091500D03*
X137223500Y-89471500D03*
X135953500Y-89471500D03*
X134683500Y-89471500D03*
X133413500Y-89471500D03*
X132143500Y-89471500D03*
D20*
X56200000Y-119250000D03*
X54700000Y-119250000D03*
D21*
X79700000Y-119050000D03*
X79050000Y-119050000D03*
X78400000Y-119050000D03*
X77750000Y-119050000D03*
X77100000Y-119050000D03*
X76450000Y-119050000D03*
X75800000Y-119050000D03*
X75150000Y-119050000D03*
X74500000Y-119050000D03*
X73850000Y-119050000D03*
X73850000Y-124950000D03*
X74500000Y-124950000D03*
X75150000Y-124950000D03*
X75800000Y-124950000D03*
X76450000Y-124950000D03*
X77100000Y-124950000D03*
X77750000Y-124950000D03*
X78400000Y-124950000D03*
X79050000Y-124950000D03*
X79700000Y-124950000D03*
D22* D22*
X70485000Y-118872000D03* X51250000Y-123150000D03*
X71755000Y-118872000D03* X51250000Y-121550000D03*
X71755000Y-111252000D03* D13*
X70485000Y-111252000D03* X103350000Y-111950000D03*
X104000000Y-111950000D03*
X104650000Y-111950000D03*
X105300000Y-111950000D03*
X105950000Y-111950000D03*
X106600000Y-111950000D03*
X107250000Y-111950000D03*
X107250000Y-106050000D03*
X106600000Y-106050000D03*
X105950000Y-106050000D03*
X105300000Y-106050000D03*
X104650000Y-106050000D03*
X104000000Y-106050000D03*
X103350000Y-106050000D03*
D10*
X118900000Y-105900000D03*
X118900000Y-107400000D03*
D23*
X101085500Y-111744500D03*
X101085500Y-110044500D03*
D13*
X83200000Y-124950000D03*
X83850000Y-124950000D03*
X84500000Y-124950000D03*
X85150000Y-124950000D03*
X85800000Y-124950000D03*
X86450000Y-124950000D03*
X87100000Y-124950000D03*
X87100000Y-119050000D03*
X86450000Y-119050000D03*
X85800000Y-119050000D03*
X85150000Y-119050000D03*
X84500000Y-119050000D03*
X83850000Y-119050000D03*
X83200000Y-119050000D03*
X118700000Y-98950000D03*
X119350000Y-98950000D03*
X120000000Y-98950000D03*
X120650000Y-98950000D03*
X121300000Y-98950000D03*
X121950000Y-98950000D03*
X122600000Y-98950000D03*
X123250000Y-98950000D03*
X123900000Y-98950000D03*
X124550000Y-98950000D03*
X124550000Y-93050000D03*
X123900000Y-93050000D03*
X123250000Y-93050000D03*
X122600000Y-93050000D03*
X121950000Y-93050000D03*
X121300000Y-93050000D03*
X120650000Y-93050000D03*
X120000000Y-93050000D03*
X119350000Y-93050000D03*
X118700000Y-93050000D03*
D10*
X81650000Y-118900000D03*
X81650000Y-120400000D03*
D22*
X58350000Y-122250000D03*
X58350000Y-120650000D03*
D15*
X113950000Y-93150000D03*
X112350000Y-93150000D03*
D10*
X130800000Y-122550000D03*
X130800000Y-124050000D03*
D11*
X64750000Y-97700000D03*
X64750000Y-99600000D03*
D17*
X142400000Y-120850000D03*
X144000000Y-120850000D03*
D15*
X127700000Y-126100000D03*
X126100000Y-126100000D03*
D12*
X137160000Y-128270000D03*
X135460000Y-128270000D03*
D10*
X52750000Y-121600000D03*
X52750000Y-123100000D03*
D15*
X113950000Y-96150000D03*
X112350000Y-96150000D03*
D24*
X136800000Y-124300000D03*
X137450000Y-124300000D03*
X138100000Y-124300000D03*
X138100000Y-122600000D03*
X136800000Y-122600000D03*
X132250000Y-124250000D03*
X132900000Y-124250000D03*
X133550000Y-124250000D03*
X133550000Y-122550000D03*
X132250000Y-122550000D03*
D25*
X127400000Y-122550000D03*
X126750000Y-122550000D03*
X126100000Y-122550000D03*
X126100000Y-124250000D03*
X127400000Y-124250000D03*
D26*
X93599000Y-93218000D03*
X92329000Y-93218000D03*
X91059000Y-93218000D03*
X89789000Y-93218000D03*
X88519000Y-93218000D03*
X87249000Y-93218000D03*
X85979000Y-93218000D03*
X84709000Y-93218000D03*
X83439000Y-93218000D03*
X82169000Y-93218000D03*
X80899000Y-93218000D03*
X79629000Y-93218000D03*
X78359000Y-93218000D03*
X77089000Y-93218000D03*
X75819000Y-93218000D03*
X74549000Y-93218000D03*
X74549000Y-106426000D03*
X75819000Y-106426000D03*
X77089000Y-106426000D03*
X78359000Y-106426000D03*
X79629000Y-106426000D03*
X80899000Y-106426000D03*
X82169000Y-106426000D03*
X83439000Y-106426000D03*
X84709000Y-106426000D03*
X85979000Y-106426000D03*
X87249000Y-106426000D03*
X88519000Y-106426000D03*
X89789000Y-106426000D03*
X91059000Y-106426000D03*
X92329000Y-106426000D03*
X93599000Y-106426000D03*
D13*
X120450000Y-111950000D03*
X121100000Y-111950000D03*
X121750000Y-111950000D03*
X122400000Y-111950000D03*
X123050000Y-111950000D03*
X123700000Y-111950000D03*
X124350000Y-111950000D03*
X124350000Y-106050000D03*
X123700000Y-106050000D03*
X123050000Y-106050000D03*
X122400000Y-106050000D03*
X121750000Y-106050000D03*
X121100000Y-106050000D03*
X120450000Y-106050000D03*
D11*
X53950000Y-97700000D03*
X53950000Y-99600000D03*
D13*
X111900000Y-124950000D03*
X112550000Y-124950000D03*
X113200000Y-124950000D03*
X113850000Y-124950000D03*
X114500000Y-124950000D03*
X115150000Y-124950000D03*
X115800000Y-124950000D03*
X115800000Y-119050000D03*
X115150000Y-119050000D03*
X114500000Y-119050000D03*
X113850000Y-119050000D03*
X113200000Y-119050000D03*
X112550000Y-119050000D03*
X111900000Y-119050000D03*
D22*
X140300000Y-124650000D03*
X140300000Y-123050000D03*
D15*
X113950000Y-97650000D03*
X112350000Y-97650000D03*
D10*
X93250000Y-118900000D03*
X93250000Y-120400000D03*
D14*
X56150000Y-94312500D03*
X56150000Y-96187500D03*
D10*
X110350000Y-118900000D03*
X110350000Y-120400000D03*
D27*
X115394000Y-128270000D03*
X117094000Y-128270000D03*
D14*
X67950000Y-94312500D03*
X67950000Y-96187500D03*
D10*
X101800000Y-118900000D03*
X101800000Y-120400000D03*
D13*
X120450000Y-124950000D03*
X121100000Y-124950000D03*
X121750000Y-124950000D03*
X122400000Y-124950000D03*
X123050000Y-124950000D03*
X123700000Y-124950000D03*
X124350000Y-124950000D03*
X124350000Y-119050000D03*
X123700000Y-119050000D03*
X123050000Y-119050000D03*
X122400000Y-119050000D03*
X121750000Y-119050000D03*
X121100000Y-119050000D03*
X120450000Y-119050000D03*
X111900000Y-111950000D03*
X112550000Y-111950000D03*
X113200000Y-111950000D03*
X113850000Y-111950000D03*
X114500000Y-111950000D03*
X115150000Y-111950000D03*
X115800000Y-111950000D03*
X115800000Y-106050000D03*
X115150000Y-106050000D03*
X114500000Y-106050000D03*
X113850000Y-106050000D03*
X113200000Y-106050000D03*
X112550000Y-106050000D03*
X111900000Y-106050000D03*
D18*
X81200000Y-124950000D03*
X81200000Y-123450000D03*
D14*
X58350000Y-94312500D03*
X58350000Y-96187500D03*
X64750000Y-94312500D03*
X64750000Y-96187500D03*
D28*
X141850000Y-124650000D03*
X143750000Y-124650000D03*
X142800000Y-122550000D03*
M02* M02*
+10951 -7780
View File
File diff suppressed because it is too large Load Diff
+258 -10199
View File
File diff suppressed because it is too large Load Diff
+258 -14601
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+164
View File
@@ -0,0 +1,164 @@
{
"Header": {
"GenerationSoftware": {
"Vendor": "KiCad",
"Application": "Pcbnew",
"Version": "8.0.6"
},
"CreationDate": "2025-03-26T02:33:46-04:00"
},
"GeneralSpecs": {
"ProjectId": {
"Name": "RAM128",
"GUID": "52414d31-3238-42e6-9b69-6361645f7063",
"Revision": "1.0"
},
"Size": {
"X": 100.099,
"Y": 59.967
},
"LayerNumber": 4,
"BoardThickness": 1.6108,
"Finish": "None"
},
"DesignRules": [
{
"Layers": "Outer",
"PadToPad": 0.15,
"PadToTrack": 0.15,
"TrackToTrack": 0.15,
"MinLineWidth": 0.15,
"TrackToRegion": 0.1524,
"RegionToRegion": 0.1524
},
{
"Layers": "Inner",
"PadToPad": 0.15,
"PadToTrack": 0.15,
"TrackToTrack": 0.15,
"TrackToRegion": 0.1524,
"RegionToRegion": 0.1524
}
],
"FilesAttributes": [
{
"Path": "RAM128-F_Cu.gtl",
"FileFunction": "Copper,L1,Top",
"FilePolarity": "Positive"
},
{
"Path": "RAM128-In1_Cu.g2",
"FileFunction": "Copper,L2,Inr",
"FilePolarity": "Positive"
},
{
"Path": "RAM128-In2_Cu.g3",
"FileFunction": "Copper,L3,Inr",
"FilePolarity": "Positive"
},
{
"Path": "RAM128-B_Cu.gbl",
"FileFunction": "Copper,L4,Bot",
"FilePolarity": "Positive"
},
{
"Path": "RAM128-F_Paste.gtp",
"FileFunction": "SolderPaste,Top",
"FilePolarity": "Positive"
},
{
"Path": "RAM128-F_Silkscreen.gto",
"FileFunction": "Legend,Top",
"FilePolarity": "Positive"
},
{
"Path": "RAM128-B_Silkscreen.gbo",
"FileFunction": "Legend,Bot",
"FilePolarity": "Positive"
},
{
"Path": "RAM128-F_Mask.gts",
"FileFunction": "SolderMask,Top",
"FilePolarity": "Negative"
},
{
"Path": "RAM128-B_Mask.gbs",
"FileFunction": "SolderMask,Bot",
"FilePolarity": "Negative"
},
{
"Path": "RAM128-Edge_Cuts.gm1",
"FileFunction": "Profile",
"FilePolarity": "Positive"
}
],
"MaterialStackup": [
{
"Type": "Legend",
"Name": "Top Silk Screen"
},
{
"Type": "SolderPaste",
"Name": "Top Solder Paste"
},
{
"Type": "SolderMask",
"Thickness": 0.01,
"Name": "Top Solder Mask"
},
{
"Type": "Copper",
"Thickness": 0.035,
"Name": "F.Cu"
},
{
"Type": "Dielectric",
"Thickness": 0.2104,
"Material": "FR4",
"Name": "F.Cu/In1.Cu",
"Notes": "Type: dielectric layer 1 (from F.Cu to In1.Cu)"
},
{
"Type": "Copper",
"Thickness": 0.0175,
"Name": "In1.Cu"
},
{
"Type": "Dielectric",
"Thickness": 1.065,
"Material": "FR4",
"Name": "In1.Cu/In2.Cu",
"Notes": "Type: dielectric layer 2 (from In1.Cu to In2.Cu)"
},
{
"Type": "Copper",
"Thickness": 0.0175,
"Name": "In2.Cu"
},
{
"Type": "Dielectric",
"Thickness": 0.2104,
"Material": "FR4",
"Name": "In2.Cu/B.Cu",
"Notes": "Type: dielectric layer 3 (from In2.Cu to B.Cu)"
},
{
"Type": "Copper",
"Thickness": 0.035,
"Name": "B.Cu"
},
{
"Type": "SolderMask",
"Thickness": 0.01,
"Name": "Bottom Solder Mask"
},
{
"Type": "SolderPaste",
"Name": "Bottom Solder Paste"
},
{
"Type": "Legend",
"Name": "Bottom Silk Screen"
}
]
}
+67 -44
View File
@@ -1,45 +1,68 @@
Ref,Val,Package,MidX,MidY,Rotation,Side Ref,Val,Package,MidX,MidY,Rotation,Side
"C1","10u","C_0805",136.310000,-127.889000,180.000000,top "C1","10u","C_0805",136.310000,-128.270000,180.000000,top
"C2","2u2","C_0603",75.900000,-126.800000,180.000000,top "C2","10u","C_0805",119.976000,-128.270000,180.000000,top
"C3","2u2","C_0603",86.050000,-127.550000,-90.000000,top "C3","10u","C_0805",116.244000,-128.270000,0.000000,top
"C4","2u2","C_0603",109.600000,-127.750000,-90.000000,top "C4","10u","C_0805",75.350000,-128.270000,180.000000,top
"C5","2u2","C_0603",117.250000,-127.750000,-90.000000,top "C5","10u","C_0805",101.085500,-110.894500,90.000000,top
"C6","2u2","C_0603",125.000000,-127.750000,-90.000000,top "C6","2u2","C_0603",52.750000,-122.350000,-90.000000,top
"C7","2u2","C_0603",87.500000,-123.050000,90.000000,top "C7","2u2","C_0603",81.200000,-124.200000,90.000000,top
"C8","2u2","C_0603",94.400000,-118.650000,-90.000000,top "C8","2u2","C_0603",129.000000,-123.500000,90.000000,top
"C9","2u2","C_0603",101.700000,-118.650000,-90.000000,top "C9","2u2","C_0603",55.450000,-119.250000,180.000000,top
"C10","2u2","C_0603",109.000000,-118.650000,-90.000000,top "C10","2u2","C_0603",81.650000,-119.650000,-90.000000,top
"C11","2u2","C_0603",116.300000,-118.650000,-90.000000,top "C11","2u2","C_0603",93.250000,-119.650000,-90.000000,top
"C12","2u2","C_0603",123.600000,-118.650000,-90.000000,top "C12","2u2","C_0603",101.800000,-119.650000,-90.000000,top
"C13","2u2","C_0603",116.250000,-106.900000,-90.000000,top "C13","2u2","C_0603",110.350000,-119.650000,-90.000000,top
"C14","2u2","C_0603",130.850000,-106.900000,-90.000000,top "C14","2u2","C_0603",118.900000,-119.650000,-90.000000,top
"C15","2u2","C_0603",131.050000,-117.600000,-90.000000,top "C15","2u2","C_0603",101.800000,-106.650000,-90.000000,top
"C16","10u","C_0805",73.300000,-130.300000,180.000000,top "C16","2u2","C_0603",110.350000,-106.650000,-90.000000,top
"FID1","Fiducial","Fiducial",67.818000,-129.540000,0.000000,top "C17","2u2","C_0603",118.900000,-106.650000,-90.000000,top
"FID2","Fiducial","Fiducial",75.438000,-100.711000,90.000000,top "C18","2u2","C_0603",101.600000,-93.650000,-90.000000,top
"FID3","Fiducial","Fiducial",136.906000,-103.886000,-90.000000,top "C19","2u2","C_0603",117.150000,-93.650000,-90.000000,top
"FID4","Fiducial","Fiducial",136.906000,-124.841000,0.000000,top "C20","2u2","C_0603",135.350000,-123.350000,-90.000000,top
"R1","3k3","R_0805",133.200000,-123.500000,180.000000,top "C21","2u2","C_0603",130.800000,-123.300000,-90.000000,top
"R2","22k","R_0805",100.150000,-115.450000,0.000000,top "D1","Amber","LED_0805",53.950000,-95.250000,-90.000000,top
"R3","10k","R_0805",133.200000,-125.700000,180.000000,top "D2","Amber","LED_0805",56.150000,-95.250000,-90.000000,top
"R4","22k","R_0805",104.850000,-115.450000,180.000000,top "D3","Amber","LED_0805",58.350000,-95.250000,-90.000000,top
"R5","33","R_0805",133.200000,-121.500000,0.000000,top "D4","Amber","LED_0805",61.550000,-95.250000,-90.000000,top
"SW1","DMA/ROM","SW_DIP_SPSTx02_Slide_DSHP02TS_P1.27mm",71.120000,-115.062000,0.000000,top "D5","Amber","LED_0805",64.750000,-95.250000,-90.000000,top
"U1","621024","SOP-32_450mil",87.249000,-107.442000,180.000000,top "D6","Amber","LED_0805",67.950000,-95.250000,-90.000000,top
"U2","74HCT245PW","TSSOP-20_4.4x6.5mm_P0.65mm",83.125000,-120.850000,180.000000,top "FID1","Fiducial","Fiducial",143.002000,-82.423000,-90.000000,top
"U3","74HCT273PW","TSSOP-20_4.4x6.5mm_P0.65mm",125.950000,-109.075000,-90.000000,top "FID2","Fiducial","Fiducial",48.133000,-93.599000,90.000000,top
"U4","74HCT273PW","TSSOP-20_4.4x6.5mm_P0.65mm",111.350000,-109.075000,-90.000000,top "FID3","Fiducial","Fiducial",58.801000,-82.931000,90.000000,top
"U6","74AHCT08PW","TSSOP-14_4.4x5mm_P0.65mm",105.200000,-120.850000,0.000000,top "FID4","Fiducial","Fiducial",143.002000,-129.540000,0.000000,top
"U7","74AHCT32PW","TSSOP-14_4.4x5mm_P0.65mm",97.900000,-120.850000,0.000000,top "FID5","Fiducial","Fiducial",48.133000,-129.540000,0.000000,top
"U8","74AHCT08PW","TSSOP-14_4.4x5mm_P0.65mm",112.500000,-120.850000,0.000000,top "Q1","MMBT3904","SOT-23",142.800000,-123.600000,-90.000000,top
"U9","74AHCT08PW","TSSOP-14_4.4x5mm_P0.65mm",119.800000,-120.850000,0.000000,top "R1","10k","R_0603",51.250000,-122.350000,90.000000,top
"U10","74AHCT32PW","TSSOP-14_4.4x5mm_P0.65mm",127.100000,-120.850000,0.000000,top "R2","2k2","R_0603",58.350000,-121.450000,90.000000,top
"U11","74LVC1G126GW","SOT-353",122.550000,-127.850000,90.000000,top "R3","10k","R_0603",140.300000,-123.850000,90.000000,top
"U12","74AHCT1G04GW","SOT-353",83.900000,-127.650000,-90.000000,top "R4","47","R_0603",143.200000,-120.850000,0.000000,top
"U13","74AHCT1G04GW","SOT-353",78.700000,-127.650000,-90.000000,top "R5","10k","R_0603",126.900000,-126.100000,180.000000,top
"U14","74AHCT1G04GW","SOT-353",81.300000,-127.650000,-90.000000,top "R6","10k","R_0603",133.200000,-128.250000,0.000000,top
"U15","74AHCT1G04GW","SOT-353",111.750000,-127.850000,-90.000000,top "R7","10k","R_0603",113.150000,-94.650000,0.000000,top
"U16","74AHCT1G04GW","SOT-353",119.400000,-127.850000,-90.000000,top "R8","10k","R_0603",113.150000,-93.150000,180.000000,top
"U17","74AHCT1G04GW","SOT-353",133.200000,-117.700000,-90.000000,top "R9","10k","R_0603",113.150000,-99.150000,180.000000,top
"U19","74AHCT1G04GW","SOT-353",127.150000,-127.850000,-90.000000,top "R10","10k","R_0603",113.150000,-97.650000,180.000000,top
"U20","74AHCT1G04GW","SOT-353",129.750000,-127.850000,-90.000000,top "R11","10k","R_0603",113.150000,-96.150000,180.000000,top
"R12","470","R_0805",58.350000,-98.650000,-90.000000,top
"R13","470","R_0805",61.550000,-98.650000,-90.000000,top
"R14","470","R_0805",64.750000,-98.650000,-90.000000,top
"R15","470","R_0805",67.950000,-98.650000,-90.000000,top
"R16","470","R_0805",53.950000,-98.650000,-90.000000,top
"R17","470","R_0805",56.150000,-98.650000,-90.000000,top
"SW1","CFG","SW_DIP_SPSTx05_Slide_DSHP05TS_P1.27mm",134.683500,-93.281500,0.000000,top
"U1","621024","SOP-32_450mil",84.074000,-99.822000,180.000000,top
"U2","74HCT245PW","TSSOP-20_4.4x6.5mm_P0.65mm",76.775000,-122.000000,180.000000,top
"U3","74AHCT00PW","TSSOP-14_4.4x5mm_P0.65mm",105.300000,-122.000000,0.000000,top
"U4","74AHC1G14GW","SOT-353",55.350000,-121.600000,-90.000000,top
"U5","74HCT273PW","TSSOP-20_4.4x6.5mm_P0.65mm",106.075000,-96.000000,0.000000,top
"U6","74AHCT02PW","TSSOP-14_4.4x5mm_P0.65mm",85.150000,-122.000000,0.000000,top
"U7","74AHCT08PW","TSSOP-14_4.4x5mm_P0.65mm",113.850000,-109.000000,0.000000,top
"U8","74AHCT08PW","TSSOP-14_4.4x5mm_P0.65mm",122.400000,-109.000000,0.000000,top
"U9","74AHCT08PW","TSSOP-14_4.4x5mm_P0.65mm",96.750000,-122.000000,0.000000,top
"U10","74AHC1G14GW","SOT-353",132.900000,-123.400000,0.000000,top
"U11","74AHCT08PW","TSSOP-14_4.4x5mm_P0.65mm",113.850000,-122.000000,0.000000,top
"U12","74AHCT32PW","TSSOP-14_4.4x5mm_P0.65mm",122.400000,-122.000000,0.000000,top
"U13","74AHCT32PW","TSSOP-14_4.4x5mm_P0.65mm",105.300000,-109.000000,0.000000,top
"U14","74AHCT1G125GW","SOT-353",126.750000,-123.400000,180.000000,top
"U15","74AHC1G14GW","SOT-353",137.450000,-123.450000,0.000000,top
"U18","74HCT273PW","TSSOP-20_4.4x6.5mm_P0.65mm",121.625000,-96.000000,0.000000,top
1 Ref Val Package MidX MidY Rotation Side
2 C1 10u C_0805 136.310000 -127.889000 -128.270000 180.000000 top
3 C2 2u2 10u C_0603 C_0805 75.900000 119.976000 -126.800000 -128.270000 180.000000 top
4 C3 2u2 10u C_0603 C_0805 86.050000 116.244000 -127.550000 -128.270000 -90.000000 0.000000 top
5 C4 2u2 10u C_0603 C_0805 109.600000 75.350000 -127.750000 -128.270000 -90.000000 180.000000 top
6 C5 2u2 10u C_0603 C_0805 117.250000 101.085500 -127.750000 -110.894500 -90.000000 90.000000 top
7 C6 2u2 C_0603 125.000000 52.750000 -127.750000 -122.350000 -90.000000 top
8 C7 2u2 C_0603 87.500000 81.200000 -123.050000 -124.200000 90.000000 top
9 C8 2u2 C_0603 94.400000 129.000000 -118.650000 -123.500000 -90.000000 90.000000 top
10 C9 2u2 C_0603 101.700000 55.450000 -118.650000 -119.250000 -90.000000 180.000000 top
11 C10 2u2 C_0603 109.000000 81.650000 -118.650000 -119.650000 -90.000000 top
12 C11 2u2 C_0603 116.300000 93.250000 -118.650000 -119.650000 -90.000000 top
13 C12 2u2 C_0603 123.600000 101.800000 -118.650000 -119.650000 -90.000000 top
14 C13 2u2 C_0603 116.250000 110.350000 -106.900000 -119.650000 -90.000000 top
15 C14 2u2 C_0603 130.850000 118.900000 -106.900000 -119.650000 -90.000000 top
16 C15 2u2 C_0603 131.050000 101.800000 -117.600000 -106.650000 -90.000000 top
17 C16 10u 2u2 C_0805 C_0603 73.300000 110.350000 -130.300000 -106.650000 180.000000 -90.000000 top
18 FID1 C17 Fiducial 2u2 Fiducial C_0603 67.818000 118.900000 -129.540000 -106.650000 0.000000 -90.000000 top
19 FID2 C18 Fiducial 2u2 Fiducial C_0603 75.438000 101.600000 -100.711000 -93.650000 90.000000 -90.000000 top
20 FID3 C19 Fiducial 2u2 Fiducial C_0603 136.906000 117.150000 -103.886000 -93.650000 -90.000000 top
21 FID4 C20 Fiducial 2u2 Fiducial C_0603 136.906000 135.350000 -124.841000 -123.350000 0.000000 -90.000000 top
22 R1 C21 3k3 2u2 R_0805 C_0603 133.200000 130.800000 -123.500000 -123.300000 180.000000 -90.000000 top
23 R2 D1 22k Amber R_0805 LED_0805 100.150000 53.950000 -115.450000 -95.250000 0.000000 -90.000000 top
24 R3 D2 10k Amber R_0805 LED_0805 133.200000 56.150000 -125.700000 -95.250000 180.000000 -90.000000 top
25 R4 D3 22k Amber R_0805 LED_0805 104.850000 58.350000 -115.450000 -95.250000 180.000000 -90.000000 top
26 R5 D4 33 Amber R_0805 LED_0805 133.200000 61.550000 -121.500000 -95.250000 0.000000 -90.000000 top
27 SW1 D5 DMA/ROM Amber SW_DIP_SPSTx02_Slide_DSHP02TS_P1.27mm LED_0805 71.120000 64.750000 -115.062000 -95.250000 0.000000 -90.000000 top
28 U1 D6 621024 Amber SOP-32_450mil LED_0805 87.249000 67.950000 -107.442000 -95.250000 180.000000 -90.000000 top
29 U2 FID1 74HCT245PW Fiducial TSSOP-20_4.4x6.5mm_P0.65mm Fiducial 83.125000 143.002000 -120.850000 -82.423000 180.000000 -90.000000 top
30 U3 FID2 74HCT273PW Fiducial TSSOP-20_4.4x6.5mm_P0.65mm Fiducial 125.950000 48.133000 -109.075000 -93.599000 -90.000000 90.000000 top
31 U4 FID3 74HCT273PW Fiducial TSSOP-20_4.4x6.5mm_P0.65mm Fiducial 111.350000 58.801000 -109.075000 -82.931000 -90.000000 90.000000 top
32 U6 FID4 74AHCT08PW Fiducial TSSOP-14_4.4x5mm_P0.65mm Fiducial 105.200000 143.002000 -120.850000 -129.540000 0.000000 top
33 U7 FID5 74AHCT32PW Fiducial TSSOP-14_4.4x5mm_P0.65mm Fiducial 97.900000 48.133000 -120.850000 -129.540000 0.000000 top
34 U8 Q1 74AHCT08PW MMBT3904 TSSOP-14_4.4x5mm_P0.65mm SOT-23 112.500000 142.800000 -120.850000 -123.600000 0.000000 -90.000000 top
35 U9 R1 74AHCT08PW 10k TSSOP-14_4.4x5mm_P0.65mm R_0603 119.800000 51.250000 -120.850000 -122.350000 0.000000 90.000000 top
36 U10 R2 74AHCT32PW 2k2 TSSOP-14_4.4x5mm_P0.65mm R_0603 127.100000 58.350000 -120.850000 -121.450000 0.000000 90.000000 top
37 U11 R3 74LVC1G126GW 10k SOT-353 R_0603 122.550000 140.300000 -127.850000 -123.850000 90.000000 top
38 U12 R4 74AHCT1G04GW 47 SOT-353 R_0603 83.900000 143.200000 -127.650000 -120.850000 -90.000000 0.000000 top
39 U13 R5 74AHCT1G04GW 10k SOT-353 R_0603 78.700000 126.900000 -127.650000 -126.100000 -90.000000 180.000000 top
40 U14 R6 74AHCT1G04GW 10k SOT-353 R_0603 81.300000 133.200000 -127.650000 -128.250000 -90.000000 0.000000 top
41 U15 R7 74AHCT1G04GW 10k SOT-353 R_0603 111.750000 113.150000 -127.850000 -94.650000 -90.000000 0.000000 top
42 U16 R8 74AHCT1G04GW 10k SOT-353 R_0603 119.400000 113.150000 -127.850000 -93.150000 -90.000000 180.000000 top
43 U17 R9 74AHCT1G04GW 10k SOT-353 R_0603 133.200000 113.150000 -117.700000 -99.150000 -90.000000 180.000000 top
44 U19 R10 74AHCT1G04GW 10k SOT-353 R_0603 127.150000 113.150000 -127.850000 -97.650000 -90.000000 180.000000 top
45 U20 R11 74AHCT1G04GW 10k SOT-353 R_0603 129.750000 113.150000 -127.850000 -96.150000 -90.000000 180.000000 top
46 R12 470 R_0805 58.350000 -98.650000 -90.000000 top
47 R13 470 R_0805 61.550000 -98.650000 -90.000000 top
48 R14 470 R_0805 64.750000 -98.650000 -90.000000 top
49 R15 470 R_0805 67.950000 -98.650000 -90.000000 top
50 R16 470 R_0805 53.950000 -98.650000 -90.000000 top
51 R17 470 R_0805 56.150000 -98.650000 -90.000000 top
52 SW1 CFG SW_DIP_SPSTx05_Slide_DSHP05TS_P1.27mm 134.683500 -93.281500 0.000000 top
53 U1 621024 SOP-32_450mil 84.074000 -99.822000 180.000000 top
54 U2 74HCT245PW TSSOP-20_4.4x6.5mm_P0.65mm 76.775000 -122.000000 180.000000 top
55 U3 74AHCT00PW TSSOP-14_4.4x5mm_P0.65mm 105.300000 -122.000000 0.000000 top
56 U4 74AHC1G14GW SOT-353 55.350000 -121.600000 -90.000000 top
57 U5 74HCT273PW TSSOP-20_4.4x6.5mm_P0.65mm 106.075000 -96.000000 0.000000 top
58 U6 74AHCT02PW TSSOP-14_4.4x5mm_P0.65mm 85.150000 -122.000000 0.000000 top
59 U7 74AHCT08PW TSSOP-14_4.4x5mm_P0.65mm 113.850000 -109.000000 0.000000 top
60 U8 74AHCT08PW TSSOP-14_4.4x5mm_P0.65mm 122.400000 -109.000000 0.000000 top
61 U9 74AHCT08PW TSSOP-14_4.4x5mm_P0.65mm 96.750000 -122.000000 0.000000 top
62 U10 74AHC1G14GW SOT-353 132.900000 -123.400000 0.000000 top
63 U11 74AHCT08PW TSSOP-14_4.4x5mm_P0.65mm 113.850000 -122.000000 0.000000 top
64 U12 74AHCT32PW TSSOP-14_4.4x5mm_P0.65mm 122.400000 -122.000000 0.000000 top
65 U13 74AHCT32PW TSSOP-14_4.4x5mm_P0.65mm 105.300000 -109.000000 0.000000 top
66 U14 74AHCT1G125GW SOT-353 126.750000 -123.400000 180.000000 top
67 U15 74AHC1G14GW SOT-353 137.450000 -123.450000 0.000000 top
68 U18 74HCT273PW TSSOP-20_4.4x6.5mm_P0.65mm 121.625000 -96.000000 0.000000 top
Binary file not shown.
+256 -394
View File
@@ -1,409 +1,271 @@
M48 M48
; DRILL file {KiCad (6.0.2-0)} date Sunday, August 07, 2022 at 04:59:57 AM ; DRILL file {KiCad 8.0.6} date 2025-03-26T02:33:47-0400
; FORMAT={-:-/ absolute / inch / decimal} ; FORMAT={-:-/ absolute / metric / decimal}
; #@! TF.CreationDate,2022-08-07T04:59:57-04:00 ; #@! TF.CreationDate,2025-03-26T02:33:47-04:00
; #@! TF.GenerationSoftware,Kicad,Pcbnew,(6.0.2-0) ; #@! TF.GenerationSoftware,Kicad,Pcbnew,8.0.6
; #@! TF.FileFunction,MixedPlating,1,4 ; #@! TF.FileFunction,MixedPlating,1,4
FMAT,2 FMAT,2
INCH METRIC
; #@! TA.AperFunction,Plated,PTH,ViaDrill ; #@! TA.AperFunction,Plated,PTH,ViaDrill
T1C0.0079 T1C0.300
; #@! TA.AperFunction,Plated,PTH,ViaDrill ; #@! TA.AperFunction,Plated,PTH,ViaDrill
T2C0.0118 T2C0.400
; #@! TA.AperFunction,Plated,PTH,ViaDrill ; #@! TA.AperFunction,Plated,PTH,ViaDrill
T3C0.0157 T3C0.762
; #@! TA.AperFunction,Plated,PTH,ViaDrill
T4C0.0300
; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill ; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill
T5C0.0454 T4C1.152
% %
G90 G90
G05 G05
T1 T1
X2.6Y-4.43 X46.355Y-93.472
X2.6Y-4.63 X46.355Y-109.601
X2.6Y-4.83 X46.355Y-114.681
X2.6Y-5.03 X46.355Y-119.761
X2.605Y-5.115 X46.355Y-124.841
X2.61Y-4.23 X46.355Y-129.54
X2.655Y-5.165 X48.133Y-131.318
X2.695Y-4.53 X48.895Y-90.805
X2.7Y-4.33 X51.25Y-123.9
X2.7Y-4.73 X51.435Y-88.265
X2.7Y-4.93 X51.435Y-131.318
X2.73Y-4.11 X52.75Y-123.9
X2.75Y-5.17 X53.6Y-122.25
X2.775Y-4.34 X53.848Y-128.016
X2.775Y-4.72 X53.975Y-85.725
X2.8Y-4.83 X54.5Y-122.85
X2.8Y-5.03 X54.85Y-118.4
X2.8169Y-5.1299 X54.85Y-120.1
X2.825Y-4.34 X56.05Y-118.4
X2.825Y-4.72 X56.2Y-120.35
X2.8524Y-5.0866 X56.515Y-83.185
X2.86Y-3.98 X56.515Y-131.318
X2.8701Y-4.8622 X57.1Y-120.95
X2.9Y-4.13 X58.928Y-128.016
X2.9Y-4.33 X59.182Y-80.645
X2.9Y-4.73 X61.468Y-115.316
X2.905Y-4.53 X61.468Y-125.476
X2.9094Y-4.8406 X61.595Y-131.318
X2.9272Y-4.9843 X62.103Y-80.645
X2.9449Y-4.8228 X64.008Y-112.776
X2.95Y-5.17 X64.008Y-117.856
X2.9587Y-4.9587 X64.008Y-122.936
X2.98Y-3.86 X64.008Y-128.016
X2.9843Y-4.815 X66.548Y-115.316
X3.0Y-4.03 X66.675Y-131.318
X3.0Y-4.23 X67.183Y-80.645
X3.0Y-4.43 X69.088Y-112.776
X3.0Y-4.63 X69.088Y-128.016
X3.0177Y-4.9587 X71.755Y-131.318
X3.0217Y-4.8268 X72.263Y-80.645
X3.0325Y-3.9675 X73.2Y-119.05
X3.045Y-3.85 X73.85Y-117.9
X3.0492Y-4.9882 X73.85Y-120.2
X3.05Y-5.17 X73.85Y-126.05
X3.0591Y-4.8386 X74.5Y-123.85
X3.06Y-3.915 X75.15Y-126.05
X3.06Y-4.02 X75.8Y-123.85
X3.0728Y-4.9567 X76.45Y-123.05
X3.0965Y-4.8504 X77.1Y-123.85
X3.0984Y-4.9252 X77.343Y-80.645
X3.124Y-4.9567 X77.47Y-131.318
X3.1319Y-4.8701 X77.75Y-123.05
X3.1339Y-4.6417 X78.4Y-123.85
X3.1476Y-5.0591 X79.7Y-123.85
X3.15Y-5.17 X79.85Y-126.05
X3.1516Y-4.9921 X80.01Y-131.318
X3.1575Y-4.5984 X80.325Y-124.95
X3.1575Y-4.685 X80.35Y-123.35
X3.1752Y-4.9567 X80.8Y-119.05
X3.2008Y-5.0236 X80.8Y-120.25
X3.2028Y-4.9252 X81.2Y-125.8
X3.2264Y-4.9567 X81.65Y-118.1
X3.245Y-3.85 X82.1Y-123.6
X3.25Y-5.0591 X82.1Y-124.8
X3.25Y-5.17 X82.423Y-80.645
X3.2539Y-4.9921 X82.5Y-120.4
X3.2559Y-4.3012 X82.55Y-119.05
X3.2776Y-4.9567 X82.55Y-131.318
X3.3031Y-5.0236 X83.2Y-117.95
X3.31Y-4.44 X83.2Y-120.15
X3.3287Y-4.9567 X85.09Y-131.318
X3.3406Y-4.2874 X87.1Y-123.85
X3.35Y-5.17 X87.1Y-126.05
X3.3524Y-5.0591 X87.503Y-80.645
X3.3543Y-4.9921 X87.63Y-131.318
X3.3858Y-4.7008 X87.7Y-124.95
X3.3878Y-4.8307 X90.17Y-131.318
X3.3878Y-4.9606 X92.4Y-119.05
X3.4075Y-4.315 X92.4Y-120.25
X3.41Y-4.44 X92.583Y-80.645
X3.41Y-4.545 X92.71Y-131.318
X3.4114Y-4.6417 X93.25Y-118.1
X3.4114Y-4.815 X94.1Y-120.4
X3.4114Y-4.874 X94.15Y-119.05
X3.4213Y-5.0512 X94.8Y-117.95
X3.4232Y-4.9921 X94.8Y-120.15
X3.445Y-3.85 X95.25Y-131.318
X3.45Y-5.17 X97.663Y-80.645
X3.4783Y-4.811 X97.79Y-131.318
X3.4843Y-4.689 X98.7Y-123.85
X3.4921Y-4.8858 X98.7Y-126.05
X3.4961Y-4.8465 X99.3Y-124.95
X3.5197Y-4.9331 X100.203Y-83.185
X3.5197Y-4.9783 X100.33Y-131.318
X3.53Y-5.025 X100.75Y-93.05
X3.55Y-5.17 X100.75Y-94.25
X3.645Y-3.85 X100.95Y-106.05
X3.65Y-5.17 X100.95Y-107.25
X3.6555Y-4.8051 X100.95Y-119.05
X3.6575Y-4.2717 X100.95Y-120.25
X3.6831Y-4.6417 X101.6Y-92.1
X3.6831Y-4.7008 X101.8Y-105.1
X3.69Y-4.39 X101.8Y-118.1
X3.71Y-4.44 X102.45Y-94.4
X3.7165Y-4.6102 X102.5Y-93.05
X3.7165Y-4.7323 X102.65Y-107.4
X3.735Y-4.975 X102.65Y-120.4
X3.75Y-4.255 X102.7Y-106.05
X3.75Y-4.7008 X102.7Y-119.05
X3.75Y-5.17 X102.743Y-80.645
X3.7539Y-4.6417 X102.743Y-85.725
X3.7717Y-4.5984 X102.87Y-131.318
X3.7776Y-4.685 X103.15Y-91.95
X3.7776Y-4.8307 X103.15Y-94.15
X3.8031Y-4.9173 X103.35Y-104.95
X3.81Y-4.44 X103.35Y-107.15
X3.815Y-4.5425 X103.35Y-117.95
X3.8287Y-4.7402 X103.35Y-120.15
X3.8406Y-4.0768 X105.283Y-83.185
X3.8436Y-4.4912 X105.41Y-131.318
X3.845Y-3.85 X107.25Y-110.85
X3.85Y-5.17 X107.25Y-113.05
X3.8543Y-4.8307 X107.25Y-123.85
X3.8799Y-4.685 X107.25Y-126.05
X3.9055Y-4.4469 X107.823Y-80.645
X3.9055Y-4.748 X107.85Y-111.95
X3.93Y-5.005 X107.85Y-124.95
X3.9311Y-4.685 X107.95Y-131.318
X3.9311Y-4.8307 X109.0Y-97.85
X3.9311Y-4.9173 X109.0Y-100.05
X3.9488Y-4.3445 X109.5Y-106.05
X3.95Y-5.17 X109.5Y-107.25
X3.9547Y-4.874 X109.5Y-119.05
X3.9705Y-4.6417 X109.5Y-120.25
X3.9705Y-4.7008 X109.6Y-98.95
X3.9803Y-4.5886 X110.35Y-105.1
X3.9862Y-4.2402 X110.35Y-118.1
X4.0039Y-4.6102 X110.49Y-131.318
X4.0039Y-4.7323 X111.2Y-107.4
X4.0374Y-4.7008 X111.2Y-120.4
X4.0413Y-4.6417 X111.25Y-106.05
X4.045Y-3.85 X111.25Y-119.05
X4.05Y-5.17 X111.9Y-104.95
X4.065Y-4.5984 X111.9Y-107.15
X4.065Y-4.685 X111.9Y-117.95
X4.065Y-4.8307 X111.9Y-120.15
X4.0906Y-4.4193 X112.903Y-80.645
X4.0906Y-4.9173 X113.03Y-131.318
X4.0945Y-4.1693 X115.57Y-131.318
X4.1083Y-4.7953 X115.8Y-110.85
X4.1161Y-4.5984 X115.8Y-113.05
X4.1161Y-5.002 X115.8Y-123.85
X4.124Y-4.3642 X115.8Y-126.05
X4.1398Y-4.4193 X116.3Y-93.05
X4.1417Y-4.8307 X116.3Y-94.25
X4.15Y-5.17 X116.4Y-111.95
X4.1614Y-5.0984 X116.4Y-124.95
X4.1673Y-4.9173 X117.15Y-92.1
X4.1772Y-5.002 X117.983Y-80.645
X4.1791Y-4.2756 X118.0Y-94.4
X4.1929Y-4.7205 X118.05Y-93.05
X4.2087Y-4.5551 X118.05Y-106.05
X4.2185Y-4.685 X118.05Y-107.25
X4.2185Y-4.8307 X118.05Y-119.05
X4.2185Y-4.9173 X118.05Y-120.25
X4.2244Y-4.1791 X118.11Y-131.318
X4.2244Y-4.2303 X118.7Y-91.95
X4.2244Y-4.3327 X118.7Y-94.15
X4.2244Y-4.4094 X118.9Y-105.1
X4.2343Y-5.128 X118.9Y-118.1
X4.2421Y-4.874 X119.75Y-107.4
X4.245Y-3.85 X119.75Y-120.4
X4.25Y-4.4724 X119.8Y-106.05
X4.25Y-5.17 X119.8Y-119.05
X4.2579Y-4.6417 X120.45Y-104.95
X4.2579Y-4.7008 X120.45Y-107.15
X4.2677Y-4.4331 X120.45Y-117.95
X4.2815Y-5.0 X120.45Y-120.15
X4.2815Y-5.0591 X120.523Y-83.185
X4.2913Y-4.6102 X120.65Y-131.318
X4.2913Y-4.7323 X123.063Y-80.645
X4.311Y-4.4094 X123.063Y-85.725
X4.315Y-4.1909 X123.19Y-131.318
X4.315Y-4.9685 X124.35Y-110.85
X4.315Y-5.0906 X124.35Y-113.05
X4.3248Y-4.7008 X124.35Y-123.85
X4.3287Y-4.6417 X124.35Y-126.05
X4.3287Y-4.874 X124.55Y-97.85
X4.3386Y-4.248 X124.55Y-100.05
X4.3445Y-4.9646 X124.95Y-111.95
X4.3484Y-5.0591 X124.95Y-124.95
X4.35Y-5.17 X125.15Y-98.95
X4.3504Y-5.0 X125.603Y-83.185
X4.3524Y-4.5984 X125.603Y-128.905
X4.3524Y-4.685 X125.73Y-131.318
X4.3602Y-4.7264 X128.143Y-80.645
X4.374Y-4.9646 X128.143Y-85.725
X4.378Y-4.8307 X128.27Y-131.318
X4.3996Y-5.0315 X130.683Y-83.185
X4.4075Y-4.126 X130.81Y-131.318
X4.4094Y-4.9449 X132.08Y-131.191
X4.4173Y-4.8228 X133.223Y-80.645
X4.4252Y-5.1024 X133.223Y-85.725
X4.445Y-3.85 X133.35Y-131.318
X4.4488Y-5.0669 X134.62Y-131.191
X4.45Y-5.17 X135.763Y-83.185
X4.4567Y-4.1791 X135.89Y-131.318
X4.4567Y-4.4094 X138.303Y-80.645
X4.4744Y-4.9744 X138.303Y-85.725
X4.5Y-4.1555 X138.43Y-131.318
X4.5Y-4.7323 X140.843Y-88.265
X4.5Y-4.9173 X143.002Y-80.645
X4.5039Y-4.8307 X143.002Y-131.318
X4.5295Y-4.874 X143.383Y-85.725
X4.5295Y-5.0138 X143.383Y-90.805
X4.5394Y-4.5984 X143.383Y-95.885
X4.5413Y-4.7953 X143.383Y-100.965
X4.5433Y-4.1791 X144.78Y-82.423
X4.5433Y-4.2382 X144.78Y-88.265
X4.5453Y-4.6417 X144.78Y-93.345
X4.5453Y-4.7008 X144.78Y-98.425
X4.55Y-5.17 X144.78Y-103.505
X4.5768Y-4.1476 X144.78Y-108.585
X4.5768Y-4.2697 X144.78Y-113.665
X4.5787Y-4.6102 X144.78Y-118.745
X4.5787Y-4.7323 X144.78Y-123.825
X4.5827Y-5.0 X144.78Y-129.54
X4.5827Y-5.0591
X4.6083Y-4.7953
X4.6102Y-4.1791
X4.6102Y-4.2382
X4.6122Y-4.7008
X4.6161Y-4.6417
X4.6161Y-4.9685
X4.6161Y-5.0906
X4.6319Y-4.4134
X4.6398Y-4.5984
X4.6398Y-4.685
X4.645Y-3.85
X4.6457Y-4.8287
X4.6457Y-4.9685
X4.6496Y-4.0945
X4.6496Y-5.0591
X4.65Y-5.17
X4.6516Y-4.7224
X4.6516Y-5.0
X4.6654Y-4.435
X4.6752Y-4.9685
X4.6791Y-4.5906
X4.685Y-4.8287
X4.689Y-4.1102
X4.6969Y-5.128
X4.6988Y-4.4567
X4.7244Y-4.8287
X4.7283Y-5.1024
X4.7323Y-4.122
X4.7421Y-4.9213
X4.75Y-5.0669
X4.75Y-5.17
X4.7625Y-4.7425
X4.7638Y-4.8287
X4.7677Y-4.7008
X4.7756Y-4.1339
X4.7756Y-5.0
X4.7776Y-4.5157
X4.7854Y-4.3327
X4.7854Y-4.9154
X4.7933Y-4.5965
X4.7933Y-4.8307
X4.7972Y-5.1024
X4.7992Y-4.1791
X4.7992Y-4.2303
X4.7992Y-4.4094
X4.7992Y-4.9665
X4.8169Y-4.874
X4.8327Y-4.6417
X4.8327Y-4.7008
X4.8425Y-4.4331
X4.845Y-3.85
X4.85Y-5.17
X4.8504Y-5.1024
X4.8661Y-4.6102
X4.874Y-5.0669
X4.876Y-4.8189
X4.876Y-4.8583
X4.8858Y-4.2047
X4.8858Y-4.3583
X4.8858Y-4.4094
X4.8878Y-5.0
X4.8898Y-4.3091
X4.8996Y-4.7008
X4.9016Y-4.5217
X4.9035Y-4.6417
X4.9154Y-4.2421
X4.9154Y-4.8189
X4.9213Y-4.9685
X4.9213Y-5.0906
X4.9272Y-4.5984
X4.9272Y-4.685
X4.9272Y-4.9173
X4.95Y-5.17
X4.9547Y-5.065
X4.9567Y-5.0
X4.9587Y-4.8228
X4.9665Y-4.9252
X4.9803Y-4.9685
X4.998Y-4.8051
X5.002Y-4.3091
X5.002Y-4.7067
X5.0039Y-4.9173
X5.0059Y-5.128
X5.0276Y-4.4823
X5.0295Y-4.8307
X5.0315Y-4.1791
X5.0315Y-4.4094
X5.0315Y-4.9646
X5.0394Y-4.5335
X5.045Y-3.85
X5.0472Y-4.7205
X5.05Y-5.17
X5.0551Y-5.0669
X5.0591Y-5.0
X5.0748Y-4.1555
X5.0768Y-4.9154
X5.0787Y-4.7736
X5.0807Y-4.5984
X5.0807Y-4.8307
X5.0827Y-4.9665
X5.1043Y-4.874
X5.1181Y-4.1791
X5.1181Y-4.2382
X5.122Y-4.815
X5.124Y-4.9193
X5.128Y-5.1024
X5.15Y-5.17
X5.1516Y-4.1476
X5.1516Y-4.2697
X5.1575Y-5.0669
X5.1594Y-4.5689
X5.1594Y-4.6909
X5.1752Y-4.8622
X5.185Y-4.1791
X5.185Y-4.2382
X5.1929Y-4.6004
X5.1929Y-4.6594
X5.1949Y-4.7224
X5.2Y-5.16
X5.2185Y-4.565
X5.2224Y-5.0059
X5.2382Y-4.189
X5.245Y-3.85
X5.25Y-4.5413
X5.25Y-5.17
X5.2697Y-4.7028
X5.2815Y-4.9921
X5.2894Y-4.2047
X5.2933Y-4.6673
X5.3366Y-4.7559
X5.35Y-5.17
X5.36Y-4.405
X5.36Y-4.605
X5.405Y-3.855
X5.455Y-3.905
X5.46Y-4.105
X5.46Y-4.305
X5.46Y-4.505
X5.46Y-4.705
X5.46Y-4.905
X5.46Y-5.105
X5.46Y-5.17
T2 T2
X5.4Y-4.985 X73.406Y-128.524
X74.549Y-129.54
X76.2Y-129.54
X77.343Y-128.27
X114.3Y-128.27
X115.443Y-129.54
X117.094Y-129.54
X119.126Y-129.54
X120.777Y-129.54
X121.856Y-128.27
X135.509Y-127.0
X135.509Y-129.54
X137.16Y-127.0
X138.303Y-128.27
T3 T3
X5.29Y-5.025 X137.16Y-129.794
X5.335Y-4.985
X5.345Y-5.085
T4 T4
X2.975Y-5.13 X48.133Y-127.0
X5.4Y-5.1 X57.023Y-84.709
T5 X140.462Y-82.423
X2.76Y-4.16 X140.462Y-129.54
X2.77Y-5.1 X143.002Y-127.0
X5.24Y-5.1
X5.39Y-4.0
X5.39Y-4.825
T0
M30 M30