Send commitlog mailing list submissions to
commitlog@lists.openmoko.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
commitlog-requ...@lists.openmoko.org
You can reach the person managing the list at
commitlog-ow...@lists.openmoko.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:
1. r5464 - in trunk/gta02-core: . modules (wer...@docs.openmoko.org)
2. r5465 - trunk/gta02-core/docs (wer...@docs.openmoko.org)
3. r5466 - trunk/gta02-core (alvie...@docs.openmoko.org)
4. r5467 - in trunk/gta02-core: . docs/ecn
(alvie...@docs.openmoko.org)
--- Begin Message ---
Author: werner
Date: 2009-08-16 14:29:54 +0200 (Sun, 16 Aug 2009)
New Revision: 5464
Added:
trunk/gta02-core/modules/mkloe
Modified:
trunk/gta02-core/Makefile
trunk/gta02-core/gta02-core.pro
Log:
- modules/mkloe: script to generate a unified library from the .fpd files
- gta02-core.pro: removed stock libraries and added gta02-core.mod instead
- Makefile: run modules/mkloe on "make update"
- Makefile: new target "brd" to invoke pcbnew
Modified: trunk/gta02-core/Makefile
===================================================================
--- trunk/gta02-core/Makefile 2009-08-16 12:24:03 UTC (rev 5463)
+++ trunk/gta02-core/Makefile 2009-08-16 12:29:54 UTC (rev 5464)
@@ -1,4 +1,4 @@
-.PHONY: all gen generate gv sch update upload xpdf bom-by-ref
+.PHONY: all gen generate gv sch brd update upload xpdf
bom-by-ref
all:
@echo "make what ? target: gen generate sch upload"
@@ -13,7 +13,9 @@
scripts/all-sheets --shrink --pdf gta02-core
update:
- svn update && cd components && ./mkloe
+ svn update && \
+ cd components && ./mkloe && \
+ cd ../modules && ./mkloe
gv:
gv gta02-core-all.ps.gz
@@ -28,6 +30,9 @@
sch:
eeschema `pwd`/gta02-core.sch
+brd:
+ pcbnew `pwd`/gta02-core.brd
+
bom-by-ref:
@sed '/^#Cmp ( order = Reference )/,/#End Cmp/p;d' \
gta02-core.lst | \
Modified: trunk/gta02-core/gta02-core.pro
===================================================================
--- trunk/gta02-core/gta02-core.pro 2009-08-16 12:24:03 UTC (rev 5463)
+++ trunk/gta02-core/gta02-core.pro 2009-08-16 12:29:54 UTC (rev 5464)
@@ -57,11 +57,7 @@
ShowMRa=1
[pcbnew/libraries]
LibDir=
-LibName1=connect
-LibName2=discret
-LibName3=pin_array
-LibName4=divers
-LibName5=led
+LibName1=./modules/gta02-core
[general]
version=1
[cvpcb]
Added: trunk/gta02-core/modules/mkloe
===================================================================
--- trunk/gta02-core/modules/mkloe (rev 0)
+++ trunk/gta02-core/modules/mkloe 2009-08-16 12:29:54 UTC (rev 5464)
@@ -0,0 +1,46 @@
+#!/bin/sh
+# Make a Library of Everything
+
+MODS="bga96-8x12-0mm8"
+
+LIB=gta02-core.mod
+
+
+for n in $MODS; do
+ if [ ! -r $n.fpd ]; then
+ echo $n.fpd: cannot read 1>&2
+ exit 1
+ fi
+done
+
+for n in $MODS; do
+ fped -k $n.fpd -
+done |
+perl -e '
+while (<>) {
+ if (/^\$EndINDEX/) {
+ $index = 0;
+ next;
+ }
+ if ($index) {
+ push(@index, $_);
+ next;
+ }
+ if (/^\$INDEX/) {
+ $index = 1;
+ next;
+ }
+ if (/^PCBNEW-LibModule/) {
+ $head = $_;
+ next;
+ }
+ if (/^\$EndLIBRARY/) {
+ $tail = $_;
+ next;
+ }
+ push(@body, $_);
+}
+print $head;
+print "\$INDEX\n", join("", @index), "\$EndINDEX\n";
+print join("", @body), $tail;
+' >$LIB
Property changes on: trunk/gta02-core/modules/mkloe
___________________________________________________________________
Name: svn:executable
+ *
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-08-16 14:42:56 +0200 (Sun, 16 Aug 2009)
New Revision: 5465
Modified:
trunk/gta02-core/docs/GETTING-STARTED
Log:
- added GETTING-STARTED instructions for installing fped and for accessing
footprints
Modified: trunk/gta02-core/docs/GETTING-STARTED
===================================================================
--- trunk/gta02-core/docs/GETTING-STARTED 2009-08-16 12:29:54 UTC (rev
5464)
+++ trunk/gta02-core/docs/GETTING-STARTED 2009-08-16 12:42:56 UTC (rev
5465)
@@ -49,6 +49,14 @@
cd ..
+- We draw footprints with the footprint editor fped. Install it:
+
+ svn checkout http://svn.openmoko.org/trunk/eda/fped
+ cd fped
+ make del all install
+
+ cd ..
+
- Build your local copy of the component (schematics symbol) library:
make update
@@ -73,7 +81,7 @@
- (re)view and edit the ECNs (Engineering Change Notices)
- - (re)view and edit footprints (coming soon)
+ - (re)view and edit footprints
- (re)view and edit the layout (coming soon)
@@ -147,6 +155,42 @@
the schematics.
+(Re)viewing and editing footprints
+----------------------------------
+
+#Feeling lazy ? Then use the pre-built PDF link for the "expanded view"
+#on http://people.openmoko.org/werner/gta02-core.html
+
+The footprints are kept in *.fpd files in modules/. To view a footprint,
+run
+
+ fped modules/filename.fpd
+
+To generate printable Postscript, run
+
+ fped -p modules/filename.fpd
+
+(writes modules/filename.ps), or
+
+ fped -p modules/filename.fpd -
+
+(writes to stdout.)
+
+Footprints are translated to KiCad and merged in a combined library with
+the script "mkloe" in the same directory. You usually don't invoke
+"mkloe" directly, but run
+
+ make update
+
+in the project's top-level directory.
+
+The review status of footprint is recorded in modules/STATUS
+
+Additional information, specifically links to data sheets (in addition
+to the ones we already have for the component itself), is in the file
+modules/INFO
+
+
Making changes
--------------
--- End Message ---
--- Begin Message ---
Author: alvieboy
Date: 2009-08-16 14:58:40 +0200 (Sun, 16 Aug 2009)
New Revision: 5466
Modified:
trunk/gta02-core/gps.sch
Log:
Fix footprint names
Modified: trunk/gta02-core/gps.sch
===================================================================
--- trunk/gta02-core/gps.sch 2009-08-16 12:42:56 UTC (rev 5465)
+++ trunk/gta02-core/gps.sch 2009-08-16 12:58:40 UTC (rev 5466)
@@ -1,4 +1,4 @@
-EESchema Schematic File Version 2 date Mon Aug 3 10:55:46 2009
+EESchema Schematic File Version 2 date Thu 13 Aug 2009 20:03:28 WEST
LIBS:power,device,conn,gta02-core,gta02-core-cache
EELAYER 24 0
EELAYER END
@@ -692,7 +692,7 @@
P 9700 1900
F 0 "C7625" H 9400 1800 50 0000 L CNN
F 1 "1u" H 9550 2000 50 0000 L CNN
-F 2 "C0402-H" H 9700 1900 60 0001 C CNN
+F 2 "0402" H 9700 1900 60 0001 C CNN
1 9700 1900
-1 0 0 1
$EndComp
@@ -756,6 +756,7 @@
P 5000 3200
F 0 "TP7604" V 5000 3600 50 0000 C CNN
F 1 "TST" H 5000 3450 30 0001 C CNN
+F 2 "TEST" H 5000 3200 60 0001 C CNN
1 5000 3200
0 -1 -1 0
$EndComp
@@ -787,7 +788,7 @@
P 13650 7000
F 0 "R7603" H 13650 7100 50 0000 C CNN
F 1 "0R" H 13650 6900 50 0000 C CNN
-F 2 "R0402-H" H 13650 7000 60 0001 C CNN
+F 2 "0402" H 13650 7000 60 0001 C CNN
1 13650 7000
-1 0 0 -1
$EndComp
@@ -806,7 +807,7 @@
P 12150 7700
F 0 "R7607" V 12100 7500 50 0000 C CNN
F 1 "NC" V 12200 7550 50 0000 C CNN
-F 2 "R0402-H" H 12150 7700 60 0001 C CNN
+F 2 "0402" H 12150 7700 60 0001 C CNN
1 12150 7700
0 -1 1 0
$EndComp
@@ -816,7 +817,7 @@
P 12800 6950
F 0 "R7606" V 12750 6750 50 0000 C CNN
F 1 "NC" V 12850 6800 50 0000 C CNN
-F 2 "R0402-H" H 12800 6950 60 0001 C CNN
+F 2 "0402" H 12800 6950 60 0001 C CNN
1 12800 6950
0 -1 1 0
$EndComp
@@ -844,7 +845,7 @@
P 13650 7800
F 0 "R7601" H 13650 7700 50 0000 C CNN
F 1 "NC" H 13650 7900 50 0000 C CNN
-F 2 "R0402-H" H 13650 7800 60 0001 C CNN
+F 2 "0402" H 13650 7800 60 0001 C CNN
1 13650 7800
1 0 0 1
$EndComp
@@ -854,7 +855,7 @@
P 13650 8200
F 0 "R7602" H 13650 8100 50 0000 C CNN
F 1 "0R" H 13650 8300 50 0000 C CNN
-F 2 "R0402-H" H 13650 8200 60 0001 C CNN
+F 2 "0402" H 13650 8200 60 0001 C CNN
1 13650 8200
1 0 0 1
$EndComp
@@ -864,7 +865,7 @@
P 12150 6800
F 0 "R7604" V 12100 6600 50 0000 C CNN
F 1 "0R" V 12200 6650 50 0000 C CNN
-F 2 "R0402-H" H 12150 6800 60 0001 C CNN
+F 2 "0402" H 12150 6800 60 0001 C CNN
1 12150 6800
0 -1 1 0
$EndComp
@@ -885,6 +886,7 @@
P 9200 5850
F 0 "TP7603" V 9200 6250 50 0000 C CNN
F 1 "TST" H 9200 6100 30 0001 C CNN
+F 2 "TEST" H 9200 5850 60 0001 C CNN
1 9200 5850
0 1 1 0
$EndComp
@@ -894,6 +896,7 @@
P 9200 5600
F 0 "TP7602" V 9200 6000 50 0000 C CNN
F 1 "TST" H 9200 5850 30 0001 C CNN
+F 2 "TEST" H 9200 5600 60 0001 C CNN
1 9200 5600
0 1 1 0
$EndComp
@@ -903,6 +906,7 @@
P 9200 5100
F 0 "TP7601" V 9200 5500 50 0000 C CNN
F 1 "TST" H 9200 5350 30 0001 C CNN
+F 2 "TEST" H 9200 5100 60 0001 C CNN
1 9200 5100
0 1 1 0
$EndComp
@@ -967,7 +971,7 @@
P 10000 4850
F 0 "C7611" H 9700 4750 50 0000 L CNN
F 1 "2n2" H 9800 4950 50 0000 L CNN
-F 2 "C0402" H 10000 4850 60 0001 C CNN
+F 2 "0402" H 10000 4850 60 0001 C CNN
1 10000 4850
-1 0 0 1
$EndComp
@@ -977,6 +981,7 @@
P 13200 8800
F 0 "C7619" H 12900 8700 50 0000 L CNN
F 1 "1u" H 13050 8900 50 0000 L CNN
+F 2 "0402" H 13200 8800 60 0001 C CNN
1 13200 8800
-1 0 0 1
$EndComp
@@ -986,6 +991,7 @@
P 12850 8800
F 0 "C7621" H 12550 8700 50 0000 L CNN
F 1 "1u" H 12700 8900 50 0000 L CNN
+F 2 "0402" H 12850 8800 60 0001 C CNN
1 12850 8800
-1 0 0 1
$EndComp
@@ -995,6 +1001,7 @@
P 12500 8800
F 0 "C7622" H 12550 8700 50 0000 L CNN
F 1 "1u" H 12550 8900 50 0000 L CNN
+F 2 "0402" H 12500 8800 60 0001 C CNN
1 12500 8800
-1 0 0 1
$EndComp
@@ -1013,7 +1020,7 @@
P 12150 8800
F 0 "C7624" H 12200 8700 50 0000 L CNN
F 1 "1u" H 12200 8900 50 0000 L CNN
-F 2 "C0402-H" H 12150 8800 60 0001 C CNN
+F 2 "0402" H 12150 8800 60 0001 C CNN
1 12150 8800
-1 0 0 1
$EndComp
@@ -1025,7 +1032,7 @@
P 4950 6400
F 0 "R7609" H 4950 6300 50 0000 C CNN
F 1 "0R" H 4950 6500 50 0000 C CNN
-F 2 "R0402-H" H 4950 6400 60 0001 C CNN
+F 2 "0402" H 4950 6400 60 0001 C CNN
1 4950 6400
1 0 0 1
$EndComp
@@ -1080,7 +1087,7 @@
P 3850 10100
F 0 "R7608" H 3850 10000 50 0000 C CNN
F 1 "100k" H 3850 10200 50 0000 C CNN
-F 2 "R0402-H" H 3850 10100 60 0001 C CNN
+F 2 "0402" H 3850 10100 60 0001 C CNN
1 3850 10100
1 0 0 1
$EndComp
@@ -1090,7 +1097,7 @@
P 4800 9600
F 0 "C7613" H 4500 9500 50 0000 L CNN
F 1 "100n" H 4550 9700 50 0000 L CNN
-F 2 "C0402-H" H 4800 9600 60 0001 C CNN
+F 2 "0402" H 4800 9600 60 0001 C CNN
1 4800 9600
-1 0 0 1
$EndComp
@@ -1100,7 +1107,7 @@
P 3900 9200
F 0 "B7601" V 3850 9200 50 0000 C CNN
F 1 "BLM15HD102SN1" V 4000 9200 50 0000 C CNN
-F 2 "L0402" H 3900 9200 60 0001 C CNN
+F 2 "0402" H 3900 9200 60 0001 C CNN
1 3900 9200
0 1 1 0
$EndComp
@@ -1110,6 +1117,7 @@
P 2450 10100
F 0 "U7610" H 2000 10650 60 0000 C CNN
F 1 "SI1040X" H 2100 9550 60 0000 C CNN
+F 2 "SOT563-F" H 2450 10100 60 0001 C CNN
1 2450 10100
1 0 0 -1
$EndComp
@@ -1137,7 +1145,7 @@
P 8900 1700
F 0 "C7618" H 8600 1600 50 0000 L CNN
F 1 "1u" H 8750 1800 50 0000 L CNN
-F 2 "C0402-H" H 8900 1700 60 0001 C CNN
+F 2 "0402" H 8900 1700 60 0001 C CNN
1 8900 1700
-1 0 0 1
$EndComp
@@ -1174,7 +1182,7 @@
P 7350 1450
F 0 "C7626" H 7400 1350 50 0000 L CNN
F 1 "1u" H 7200 1550 50 0000 L CNN
-F 2 "C0402-H" H 7350 1450 60 0001 C CNN
+F 2 "0402" H 7350 1450 60 0001 C CNN
1 7350 1450
-1 0 0 1
$EndComp
@@ -1193,7 +1201,7 @@
P 9550 9500
F 0 "C7617" H 9250 9400 50 0000 L CNN
F 1 "1u" H 9400 9600 50 0000 L CNN
-F 2 "C0402-H" H 9550 9500 60 0001 C CNN
+F 2 "0402" H 9550 9500 60 0001 C CNN
1 9550 9500
-1 0 0 1
$EndComp
@@ -1203,7 +1211,7 @@
P 9000 9500
F 0 "C7616" H 8700 9400 50 0000 L CNN
F 1 "1u" H 8850 9600 50 0000 L CNN
-F 2 "C0402-H" H 9000 9500 60 0001 C CNN
+F 2 "0402" H 9000 9500 60 0001 C CNN
1 9000 9500
-1 0 0 1
$EndComp
@@ -1213,7 +1221,7 @@
P 8450 9500
F 0 "C7615" H 8150 9400 50 0000 L CNN
F 1 "1u" H 8300 9600 50 0000 L CNN
-F 2 "C0402-H" H 8450 9500 60 0001 C CNN
+F 2 "0402" H 8450 9500 60 0001 C CNN
1 8450 9500
-1 0 0 1
$EndComp
@@ -1232,7 +1240,7 @@
P 7900 9500
F 0 "C7614" H 7600 9400 50 0000 L CNN
F 1 "1u" H 7750 9600 50 0000 L CNN
-F 2 "C0402-H" H 7900 9500 60 0001 C CNN
+F 2 "0402" H 7900 9500 60 0001 C CNN
1 7900 9500
-1 0 0 1
$EndComp
@@ -1240,8 +1248,9 @@
L INDUCTOR B7602
U 1 1 4A3D1DBD
P 7200 9100
-F 0 "B7602" V 7150 9100 40 0000 C CNN
-F 1 "BLM15HD102SN1" V 7300 9100 40 0000 C CNN
+F 0 "B7602" V 7150 9100 50 0000 C CNN
+F 1 "BLM15HD102SN1" V 7300 9100 50 0000 C CNN
+F 2 "0402" H 7200 9100 60 0001 C CNN
1 7200 9100
0 1 1 0
$EndComp
@@ -1341,7 +1350,7 @@
P 4800 7850
F 0 "C7632" H 4500 7750 50 0000 L CNN
F 1 "100n" H 4550 7950 50 0000 L CNN
-F 2 "C0402-H" H 4800 7850 60 0001 C CNN
+F 2 "0402" H 4800 7850 60 0001 C CNN
1 4800 7850
-1 0 0 1
$EndComp
@@ -1351,7 +1360,7 @@
P 3850 7900
F 0 "R7605" H 3850 7800 50 0000 C CNN
F 1 "100k" H 3850 8000 50 0000 C CNN
-F 2 "R0402-H" H 3850 7900 60 0001 C CNN
+F 2 "0402" H 3850 7900 60 0001 C CNN
1 3850 7900
1 0 0 1
$EndComp
@@ -1379,7 +1388,7 @@
P 1500 8250
F 0 "C7633" H 1200 8150 50 0000 L CNN
F 1 "10n" H 1300 8350 50 0000 L CNN
-F 2 "C0402-H" H 1500 8250 60 0001 C CNN
+F 2 "0402" H 1500 8250 60 0001 C CNN
1 1500 8250
-1 0 0 1
$EndComp
@@ -1389,6 +1398,7 @@
P 2450 7750
F 0 "U7609" H 2000 8300 60 0000 C CNN
F 1 "SI1040X" H 2100 7200 60 0000 C CNN
+F 2 "SOT563-F" H 2450 7750 60 0001 C CNN
1 2450 7750
1 0 0 -1
$EndComp
@@ -1416,6 +1426,7 @@
P 4500 2150
F 0 "U7604" H 4500 2550 60 0000 C CNN
F 1 "R3113D" H 4500 2450 60 0000 C CNN
+F 2 "SON1408-3" H 4500 2150 60 0001 C CNN
1 4500 2150
1 0 0 -1
$EndComp
@@ -1452,7 +1463,7 @@
P 4650 5400
F 0 "C7609" H 4350 5300 50 0000 L CNN
F 1 "18p" H 4450 5500 50 0000 L CNN
-F 2 "C0402-H" H 4650 5400 60 0001 C CNN
+F 2 "0402" H 4650 5400 60 0001 C CNN
1 4650 5400
-1 0 0 1
$EndComp
@@ -1471,7 +1482,7 @@
P 3650 5400
F 0 "C7610" H 3350 5300 50 0000 L CNN
F 1 "18p" H 3450 5500 50 0000 L CNN
-F 2 "C0402-H" H 3650 5400 60 0001 C CNN
+F 2 "0402" H 3650 5400 60 0001 C CNN
1 3650 5400
-1 0 0 1
$EndComp
@@ -1481,6 +1492,7 @@
P 4150 5000
F 0 "X7602" H 4150 5150 50 0000 C CNN
F 1 "CC7V-T1A" H 4150 4800 50 0000 C CNN
+F 2 "XTAL-6P0.7X1.0" H 4150 5000 60 0001 C CNN
1 4150 5000
1 0 0 -1
$EndComp
@@ -1499,6 +1511,7 @@
P 3250 4900
F 0 "C7608" H 2950 4800 50 0000 L CNN
F 1 "22p" H 3050 5000 50 0000 L CNN
+F 2 "0402" H 3250 4900 60 0001 C CNN
1 3250 4900
-1 0 0 1
$EndComp
@@ -1544,6 +1557,7 @@
P 2250 4400
F 0 "C7606" V 2400 4400 50 0000 L CNN
F 1 "12p" V 2050 4400 50 0000 L CNN
+F 2 "0402" H 2250 4400 60 0001 C CNN
1 2250 4400
0 -1 -1 0
$EndComp
@@ -1553,6 +1567,7 @@
P 2650 4800
F 0 "C7607" H 2350 4700 50 0000 L CNN
F 1 "4p7" H 2450 4900 50 0000 L CNN
+F 2 "0402" H 2650 4800 60 0001 C CNN
1 2650 4800
-1 0 0 1
$EndComp
@@ -1562,6 +1577,7 @@
P 1400 4550
F 0 "X7601" H 1400 4900 60 0000 C CNN
F 1 "IT3205BE" H 1400 4200 60 0000 C CNN
+F 2 "XTAL-4P2.2X2.6" H 1400 4550 60 0001 C CNN
1 1400 4550
1 0 0 -1
$EndComp
@@ -1598,6 +1614,7 @@
P 10650 2650
F 0 "C7603" H 10700 2550 50 0000 L CNN
F 1 "10n" H 10700 2750 50 0000 L CNN
+F 2 "0402" H 10650 2650 60 0001 C CNN
1 10650 2650
1 0 0 1
$EndComp
@@ -1652,6 +1669,7 @@
P 14650 1650
F 0 "R7618" V 14600 1450 50 0000 C CNN
F 1 "10R" V 14700 1500 50 0000 C CNN
+F 2 "0402" H 14650 1650 60 0001 C CNN
1 14650 1650
0 -1 1 0
$EndComp
@@ -1661,7 +1679,7 @@
P 14300 2550
F 0 "C7637" H 14350 2450 50 0000 L CNN
F 1 "22p" H 14350 2650 50 0000 L CNN
-F 2 "C0402-H" H 14300 2550 60 0001 C CNN
+F 2 "0402" H 14300 2550 60 0001 C CNN
1 14300 2550
1 0 0 1
$EndComp
@@ -1671,6 +1689,7 @@
P 13950 2550
F 0 "C7638" H 13650 2450 50 0000 L CNN
F 1 "100n" H 14000 2650 50 0000 L CNN
+F 2 "0402" H 13950 2550 60 0001 C CNN
1 13950 2550
1 0 0 1
$EndComp
@@ -1689,7 +1708,7 @@
P 14650 3200
F 0 "L7601" H 14850 3250 50 0000 C CNN
F 1 "39n" H 14850 3150 50 0000 C CNN
-F 2 "L0402-H" H 14650 3200 60 0001 C CNN
+F 2 "0402" H 14650 3200 60 0001 C CNN
1 14650 3200
1 0 0 -1
$EndComp
@@ -1699,6 +1718,7 @@
P 13850 4100
F 0 "C7602" H 13550 4000 50 0000 L CNN
F 1 "1p8" H 13650 4200 50 0000 L CNN
+F 2 "0402" H 13850 4100 60 0001 C CNN
1 13850 4100
-1 0 0 1
$EndComp
@@ -1708,6 +1728,7 @@
P 14250 3700
F 0 "C7601" V 14050 3700 50 0000 L CNN
F 1 "UNKNOWN" V 14400 3700 50 0000 L CNN
+F 2 "0402" H 14250 3700 60 0001 C CNN
1 14250 3700
0 1 1 0
$EndComp
@@ -1717,7 +1738,7 @@
P 13350 3700
F 0 "L7602" V 13300 3700 50 0000 C CNN
F 1 "4n7" V 13450 3700 50 0000 C CNN
-F 2 "L0402" H 13350 3700 60 0001 C CNN
+F 2 "0402" H 13350 3700 60 0001 C CNN
1 13350 3700
0 1 1 0
$EndComp
@@ -1727,6 +1748,7 @@
P 9450 4200
F 0 "C7605" V 9250 4200 50 0000 L CNN
F 1 "1p5" V 9600 4200 50 0000 L CNN
+F 2 "0402" H 9450 4200 60 0001 C CNN
1 9450 4200
0 1 1 0
$EndComp
@@ -1736,6 +1758,7 @@
P 9450 3200
F 0 "C7604" V 9250 3200 50 0000 L CNN
F 1 "1p5" V 9600 3200 50 0000 L CNN
+F 2 "0402" H 9450 3200 60 0001 C CNN
1 9450 3200
0 1 1 0
$EndComp
@@ -1745,6 +1768,7 @@
P 9050 3700
F 0 "L7603" H 9250 3800 50 0000 C CNN
F 1 "6n2" H 9250 3700 50 0000 C CNN
+F 2 "0402" H 9050 3700 60 0001 C CNN
1 9050 3700
1 0 0 -1
$EndComp
@@ -1754,6 +1778,7 @@
P 11950 3700
F 0 "U7601" H 11950 4100 60 0000 C CNN
F 1 "ATR0610" H 11950 3300 60 0000 C CNN
+F 2 "PLLP6" H 11950 3700 60 0001 C CNN
1 11950 3700
-1 0 0 -1
$EndComp
@@ -1763,6 +1788,7 @@
P 10450 3700
F 0 "U7603" H 10450 4100 60 0000 C CNN
F 1 "B7840" H 10450 4000 60 0000 C CNN
+F 2 "UNKNOWN" H 10450 3700 60 0001 C CNN
1 10450 3700
-1 0 0 -1
$EndComp
@@ -1772,6 +1798,7 @@
P 6900 4800
F 0 "U7608" H 6900 4900 60 0000 C CNN
F 1 "ATR0635" H 6900 4700 60 0000 C CNN
+F 2 "FBGA96-P0.8" H 6900 4800 60 0001 C CNN
1 6900 4800
1 0 0 -1
$EndComp
--- End Message ---
--- Begin Message ---
Author: alvieboy
Date: 2009-08-16 15:16:20 +0200 (Sun, 16 Aug 2009)
New Revision: 5467
Modified:
trunk/gta02-core/docs/ecn/STATUS
trunk/gta02-core/pmu.sch
Log:
Apply ECN0003 to ECN0007
Modified: trunk/gta02-core/docs/ecn/STATUS
===================================================================
--- trunk/gta02-core/docs/ecn/STATUS 2009-08-16 12:58:40 UTC (rev 5466)
+++ trunk/gta02-core/docs/ecn/STATUS 2009-08-16 13:16:20 UTC (rev 5467)
@@ -2,11 +2,11 @@
------- -------
---------------------------------------------------------------
0001 Edit Remove Glamo (U1801)
0002 Edit Remove NOR (U2501)
-0003 Execute Remove SHUTDOWN net and connect PMU.SHUTDOWN directly to GND
-0004 Execute Remove R1767 and R1768 and connect all PMU.EXTONx to R1766
-0005 Execute Simplify/remove BAT_ID/BATTEMP circuit (R1769)
-0006 Execute Either remove or populate R1701 (PMU.ADAPTSNS pull-down)
-0007 Execute Remove KEEPACT net and connect PMU.KEEPACT directly to IO_3V3
+0003 Done Remove SHUTDOWN net and connect PMU.SHUTDOWN directly to GND
+0004 Done Remove R1767 and R1768 and connect all PMU.EXTONx to R1766
+0005 Done Simplify/remove BAT_ID/BATTEMP circuit (R1769)
+0006 Done Either remove or populate R1701 (PMU.ADAPTSNS pull-down)
+0007 Done Remove KEEPACT net and connect PMU.KEEPACT directly to IO_3V3
0008 Edit Remove external GPS antenna connector and circuit (CON7602)
0009 Execute Remove LED transistors (Q1501 and Q1502)
0010 Discuss Remove audio amplifier (U4101)
Modified: trunk/gta02-core/pmu.sch
===================================================================
--- trunk/gta02-core/pmu.sch 2009-08-16 12:58:40 UTC (rev 5466)
+++ trunk/gta02-core/pmu.sch 2009-08-16 13:16:20 UTC (rev 5467)
@@ -1,4 +1,4 @@
-EESchema Schematic File Version 2 date Fri Jul 24 01:03:39 2009
+EESchema Schematic File Version 2 date Sun 16 Aug 2009 14:15:52 WEST
LIBS:power,device,conn,gta02-core,gta02-core-cache
EELAYER 24 0
EELAYER END
@@ -13,36 +13,25 @@
Comment3 ""
Comment4 ""
$EndDescr
-$Comp
-L LED- #PWR?
-U 1 1 4A5E9C57
-P 12900 6900
-F 0 "#PWR?" H 12900 6800 50 0001 C CNN
-F 1 "LED-" H 12900 7050 50 0000 C CNN
- 1 12900 6900
- -1 0 0 1
-$EndComp
-$Comp
-L LED+ #PWR?
-U 1 1 4A5E9C4F
-P 12900 6600
-F 0 "#PWR?" H 12900 6500 50 0001 C CNN
-F 1 "LED+" H 12900 6750 50 0000 C CNN
- 1 12900 6600
- 1 0 0 -1
-$EndComp
+Wire Wire Line
+ 2050 6750 8550 6750
+Wire Wire Line
+ 8550 7750 6350 7750
+Wire Wire Line
+ 8550 8100 8350 8100
+Wire Wire Line
+ 8350 8100 8150 8100
+Wire Wire Line
+ 8550 8200 8350 8200
+Wire Wire Line
+ 8350 8200 8350 8100
+Wire Wire Line
+ 8350 8100 8350 8000
+Wire Wire Line
+ 8350 8000 8550 8000
Connection ~ 13700 9600
Wire Wire Line
13700 9500 13700 9600
-$Comp
-L PWR_FLAG #FLG?
-U 1 1 4A5C7DF8
-P 13700 9500
-F 0 "#FLG?" H 13700 9770 30 0001 C CNN
-F 1 "PWR_FLAG" H 13700 9730 30 0000 C CNN
- 1 13700 9500
- 1 0 0 -1
-$EndComp
Connection ~ 11300 1000
Wire Wire Line
11300 1000 10900 1000
@@ -56,13 +45,29 @@
Wire Wire Line
13700 8000 13700 8100
Wire Wire Line
- 14350 9600 13200 9600
+ 14350 9600 14000 9600
Wire Wire Line
- 15350 4800 13600 4800
+ 14000 9600 13700 9600
Wire Wire Line
- 13550 7300 15350 7300
+ 13700 9600 13200 9600
Wire Wire Line
- 14250 8100 13350 8100
+ 15350 4800 15000 4800
+Wire Wire Line
+ 15000 4800 14650 4800
+Wire Wire Line
+ 14650 4800 14200 4800
+Wire Wire Line
+ 14200 4800 13600 4800
+Wire Wire Line
+ 15350 7300 15000 7300
+Wire Wire Line
+ 15000 7300 14200 7300
+Wire Wire Line
+ 14200 7300 13550 7300
+Wire Wire Line
+ 14250 8100 13700 8100
+Wire Wire Line
+ 13700 8100 13350 8100
Connection ~ 10450 3650
Wire Wire Line
10450 3550 10450 3650
@@ -70,8 +75,12 @@
9550 3450 9550 3650
Connection ~ 15350 6000
Wire Wire Line
- 12600 9800 12600 8600
+ 12600 9800 12600 9600
Wire Wire Line
+ 12600 9600 12600 9450
+Wire Wire Line
+ 12600 9450 12600 8600
+Wire Wire Line
12600 8600 12400 8600
Connection ~ 14000 9600
Wire Wire Line
@@ -81,33 +90,31 @@
Wire Wire Line
12850 8700 12850 8400
Wire Wire Line
- 14000 9800 14000 9600
+ 14000 9600 14000 9800
Wire Wire Line
14350 10400 14000 10400
Wire Wire Line
14000 10400 14000 10200
Connection ~ 1600 4550
Wire Wire Line
- 1800 4550 1200 4550
+ 1200 4550 1600 4550
Wire Wire Line
+ 1600 4550 1800 4550
+Wire Wire Line
1600 3650 1600 3850
-Connection ~ 6350 7850
+Connection ~ 6350 7950
Wire Wire Line
- 5900 8150 6350 8150
+ 5900 8250 6350 8250
Wire Wire Line
- 6350 8150 6350 7650
+ 6350 8250 6350 7950
+Wire Wire Line
+ 6350 7950 6350 7750
Connection ~ 4400 8500
Wire Wire Line
- 4150 8500 4850 8500
+ 4150 8500 4400 8500
Wire Wire Line
- 4850 8500 4850 7550
+ 4400 8500 4850 8500
Wire Wire Line
- 4850 7550 8300 7550
-Wire Wire Line
- 8300 7550 8300 7650
-Wire Wire Line
- 8300 7650 8550 7650
-Wire Wire Line
4400 8300 4400 8500
Wire Wire Line
4400 7600 4400 7800
@@ -117,30 +124,30 @@
3500 7450 3500 7250
Wire Wire Line
3500 7250 8550 7250
-Connection ~ 1600 6750
Wire Wire Line
- 2150 6300 2150 6100
+ 2400 6600 2400 6400
Wire Wire Line
- 2150 5600 2150 5400
-Connection ~ 2600 6650
+ 2050 6550 2050 6750
+Connection ~ 3600 6550
Wire Wire Line
- 8550 6650 2400 6650
+ 3400 6550 3600 6550
Wire Wire Line
- 1600 6550 1600 6750
+ 3600 6550 8550 6550
+Connection ~ 4450 6450
Wire Wire Line
- 1600 5850 1600 6050
-Connection ~ 3600 6550
+ 4250 6450 4450 6450
Wire Wire Line
- 8550 6550 3400 6550
-Connection ~ 4450 6450
-Wire Wire Line
- 8550 6450 4250 6450
+ 4450 6450 8550 6450
Connection ~ 5400 6350
Wire Wire Line
- 8550 6350 5200 6350
+ 5200 6350 5400 6350
+Wire Wire Line
+ 5400 6350 8550 6350
Connection ~ 6350 6250
Wire Wire Line
- 8550 6250 6150 6250
+ 6150 6250 6350 6250
+Wire Wire Line
+ 6350 6250 8550 6250
Connection ~ 3050 10000
Wire Wire Line
3050 10000 3800 10000
@@ -153,17 +160,23 @@
Wire Wire Line
3900 10000 3900 9800
Wire Wire Line
- 3050 10200 3050 9550
+ 3050 10200 3050 10000
+Wire Wire Line
+ 3050 10000 3050 9550
Connection ~ 6300 9750
Wire Wire Line
- 6100 9750 6650 9750
+ 6100 9750 6300 9750
Wire Wire Line
+ 6300 9750 6650 9750
+Wire Wire Line
6300 9550 6300 9750
Wire Wire Line
12400 4600 12600 4600
Wire Wire Line
- 12400 5500 12850 5500
+ 12850 5500 12600 5500
Wire Wire Line
+ 12600 5500 12400 5500
+Wire Wire Line
4550 2800 4550 2900
Wire Wire Line
3300 2700 3300 2900
@@ -171,48 +184,70 @@
5450 2700 5450 2900
Connection ~ 3650 2100
Wire Wire Line
- 3850 2100 3300 2100
+ 3300 2100 3650 2100
Wire Wire Line
+ 3650 2100 3850 2100
+Wire Wire Line
3850 2450 3650 2450
Wire Wire Line
3650 2450 3650 2100
Connection ~ 7850 1400
Wire Wire Line
- 7850 1650 7850 1300
+ 7850 1650 7850 1400
Wire Wire Line
+ 7850 1400 7850 1300
+Wire Wire Line
8050 1400 7850 1400
Wire Wire Line
13050 1750 12800 1750
Connection ~ 13750 1750
Wire Wire Line
- 12800 1550 12800 2000
+ 12800 1550 12800 1750
Wire Wire Line
+ 12800 1750 12800 2000
+Wire Wire Line
12800 2000 12600 2000
Connection ~ 13000 3150
Wire Wire Line
- 13000 3250 13000 2950
+ 13000 2950 13000 3150
+Wire Wire Line
+ 13000 3150 13000 3250
Connection ~ 13000 2350
Wire Wire Line
13000 2550 13000 2350
Wire Wire Line
- 11300 1250 11300 850
+ 11300 850 11300 1000
Wire Wire Line
- 11300 2350 10900 2350
+ 11300 1000 11300 1250
+Wire Wire Line
+ 10900 2350 11100 2350
+Wire Wire Line
+ 11100 2350 11300 2350
Connection ~ 11300 1250
Wire Wire Line
- 8650 1250 10300 1250
+ 10300 1250 10100 1250
+Wire Wire Line
+ 10100 1250 9700 1250
+Wire Wire Line
+ 9700 1250 8650 1250
Connection ~ 10100 1250
Wire Wire Line
- 10100 850 10100 1450
+ 10100 1450 10100 1250
Wire Wire Line
+ 10100 1250 10100 1000
+Wire Wire Line
+ 10100 1000 10100 850
+Wire Wire Line
9700 1250 9700 1450
Wire Wire Line
8650 1350 9050 1350
Connection ~ 2950 8200
Connection ~ 2600 8200
Wire Wire Line
- 2950 8200 2250 8200
+ 2950 8200 2600 8200
Wire Wire Line
+ 2600 8200 2250 8200
+Wire Wire Line
8550 7050 2600 7050
Wire Wire Line
2600 7050 2600 7600
@@ -221,8 +256,10 @@
Wire Wire Line
2600 8000 2600 8200
Wire Wire Line
- 2950 8000 2950 8400
+ 2950 8400 2950 8200
Wire Wire Line
+ 2950 8200 2950 8000
+Wire Wire Line
6850 6100 6850 6000
Wire Wire Line
6850 6000 7050 6000
@@ -236,16 +273,20 @@
13100 8400 13100 8100
Connection ~ 12950 10400
Wire Wire Line
- 12950 10500 12950 10200
+ 12950 10200 12950 10400
Wire Wire Line
+ 12950 10400 12950 10500
+Wire Wire Line
12950 10400 12600 10400
Wire Wire Line
12600 10400 12600 10200
Connection ~ 12600 9600
Connection ~ 12950 9600
Wire Wire Line
- 15350 8800 14800 8800
+ 15350 8800 15000 8800
Wire Wire Line
+ 15000 8800 14800 8800
+Wire Wire Line
14800 8800 14800 9050
Wire Wire Line
12700 7500 13700 7500
@@ -254,21 +295,29 @@
Connection ~ 12600 6000
Connection ~ 12900 6700
Wire Wire Line
- 11500 6700 13100 6700
+ 13100 6700 12900 6700
Wire Wire Line
+ 12900 6700 11500 6700
+Wire Wire Line
13600 4800 13600 5500
Connection ~ 14250 8100
Wire Wire Line
- 14250 8000 14250 8300
+ 14250 8300 14250 8100
Wire Wire Line
+ 14250 8100 14250 8000
+Wire Wire Line
14250 8700 14250 8900
Connection ~ 15350 8100
Wire Wire Line
- 15350 8200 15350 7900
+ 15350 7900 15350 8100
+Wire Wire Line
+ 15350 8100 15350 8200
Connection ~ 14650 7700
Wire Wire Line
- 14650 7600 14650 7900
+ 14650 7900 14650 7700
Wire Wire Line
+ 14650 7700 14650 7600
+Wire Wire Line
15350 8100 15000 8100
Wire Wire Line
15000 8100 15000 7900
@@ -281,23 +330,29 @@
9900 9600 9900 9400
Connection ~ 7050 9950
Wire Wire Line
- 7050 9750 7050 10200
+ 7050 10200 7050 9950
Wire Wire Line
+ 7050 9950 7050 9750
+Wire Wire Line
8350 9750 8350 9950
Wire Wire Line
7700 9550 7700 9950
Connection ~ 8350 9150
Wire Wire Line
- 8350 9350 8350 8850
+ 8350 9350 8350 9150
Wire Wire Line
+ 8350 9150 8350 8850
+Wire Wire Line
8150 9150 8350 9150
Wire Wire Line
8350 8850 8550 8850
Connection ~ 15000 6800
Connection ~ 14650 6800
Wire Wire Line
- 14650 6600 14650 6900
+ 14650 6900 14650 6800
Wire Wire Line
+ 14650 6800 14650 6600
+Wire Wire Line
15000 6600 15000 6800
Connection ~ 15000 6000
Wire Wire Line
@@ -306,34 +361,46 @@
14650 6000 14650 6200
Connection ~ 14650 6000
Wire Wire Line
- 15350 6200 15350 5900
+ 15350 5900 15350 6000
Wire Wire Line
+ 15350 6000 15350 6200
+Wire Wire Line
15350 6600 15350 6800
Wire Wire Line
- 15350 6800 14650 6800
+ 15350 6800 15000 6800
+Wire Wire Line
+ 15000 6800 14650 6800
Connection ~ 15000 5600
Connection ~ 14650 5600
Wire Wire Line
- 14650 5400 14650 5700
+ 14650 5700 14650 5600
Wire Wire Line
+ 14650 5600 14650 5400
+Wire Wire Line
15000 5400 15000 5600
Connection ~ 15000 4800
Wire Wire Line
15000 4800 15000 5000
Wire Wire Line
- 14650 5000 14650 4800
+ 14650 4800 14650 5000
Connection ~ 14650 4800
Wire Wire Line
- 15350 5000 15350 4700
+ 15350 4700 15350 4800
+Wire Wire Line
+ 15350 4800 15350 5000
Connection ~ 15350 4800
Wire Wire Line
15350 5400 15350 5600
Wire Wire Line
- 15350 5600 14650 5600
+ 15350 5600 15000 5600
+Wire Wire Line
+ 15000 5600 14650 5600
Connection ~ 14650 4400
Wire Wire Line
- 14650 4500 14650 4200
+ 14650 4200 14650 4400
Wire Wire Line
+ 14650 4400 14650 4500
+Wire Wire Line
15000 4200 15000 4400
Wire Wire Line
12750 5100 13150 5100
@@ -373,23 +440,25 @@
Wire Wire Line
11800 5500 11500 5500
Wire Wire Line
- 11500 5100 12250 5100
+ 12250 5100 11700 5100
+Wire Wire Line
+ 11700 5100 11500 5100
Connection ~ 11700 4200
Wire Wire Line
- 11700 4100 11700 4300
+ 11700 4100 11700 4200
Wire Wire Line
+ 11700 4200 11700 4300
+Wire Wire Line
11700 4900 11500 4900
Wire Wire Line
- 8550 8200 8350 8200
-Wire Wire Line
- 8550 8000 8350 8000
-Wire Wire Line
11700 4300 11500 4300
Wire Wire Line
11500 4200 11700 4200
Wire Wire Line
- 8550 4950 7150 4950
+ 8550 4950 8350 4950
Wire Wire Line
+ 8350 4950 7150 4950
+Wire Wire Line
8350 6000 8350 5900
Wire Wire Line
8350 5900 8550 5900
@@ -399,28 +468,19 @@
8350 5650 8550 5650
Connection ~ 8350 4950
Wire Wire Line
- 6650 4500 6450 4500
-Wire Wire Line
6650 4050 6450 4050
Wire Wire Line
8050 4050 8250 4050
Wire Wire Line
- 7150 4050 7550 4050
-Connection ~ 7350 4500
+ 7550 4050 7350 4050
Wire Wire Line
- 7350 4500 7350 4700
-Wire Wire Line
- 7350 4700 8550 4700
-Wire Wire Line
- 8550 4500 8050 4500
+ 7350 4050 7150 4050
Connection ~ 7350 3700
Wire Wire Line
8350 4200 8350 3700
Wire Wire Line
8350 4200 8550 4200
Wire Wire Line
- 7150 4500 7550 4500
-Wire Wire Line
8350 4950 8350 5050
Wire Wire Line
8350 5050 8550 5050
@@ -428,25 +488,27 @@
8150 5500 8550 5500
Connection ~ 7350 4050
Wire Wire Line
- 7350 4050 7350 3700
+ 7350 3700 7350 4050
Wire Wire Line
- 8350 3700 6450 3700
+ 8350 3700 7350 3700
Wire Wire Line
- 7750 5300 8550 5300
+ 7350 3700 6450 3700
Wire Wire Line
7650 5500 7450 5500
Wire Wire Line
7450 5500 7450 5600
Wire Wire Line
- 7250 5300 7050 5300
+ 8150 5750 8350 5750
Wire Wire Line
- 7050 5300 7050 5600
-Wire Wire Line
- 8550 5750 8150 5750
+ 8350 5750 8550 5750
Connection ~ 8350 5750
Wire Wire Line
- 7450 6000 8550 6000
+ 8550 6000 8350 6000
Wire Wire Line
+ 8350 6000 7650 6000
+Wire Wire Line
+ 7650 6000 7450 6000
+Wire Wire Line
7650 6000 7650 5900
Connection ~ 8350 6000
Wire Wire Line
@@ -456,17 +518,7 @@
Wire Wire Line
11700 5200 11500 5200
Wire Wire Line
- 8550 8100 8350 8100
-Wire Wire Line
- 7850 8000 7550 8000
-Connection ~ 7550 8100
-Wire Wire Line
- 7550 7900 7550 8200
-Connection ~ 7550 8000
-Wire Wire Line
11700 4500 11500 4500
-Wire Wire Line
- 7850 8100 7550 8100
Connection ~ 11700 5100
Wire Wire Line
11500 5400 11700 5400
@@ -475,11 +527,15 @@
Wire Wire Line
12600 5600 12600 5500
Wire Wire Line
- 11500 4600 11800 4600
+ 11800 4600 11700 4600
+Wire Wire Line
+ 11700 4600 11500 4600
Connection ~ 11700 4600
Wire Wire Line
- 11500 4800 12600 4800
+ 11500 4800 11700 4800
Wire Wire Line
+ 11700 4800 12600 4800
+Wire Wire Line
12600 4800 12600 4600
Connection ~ 11700 4800
Wire Wire Line
@@ -491,10 +547,14 @@
Wire Wire Line
12600 6100 12600 6000
Wire Wire Line
- 11500 6500 11900 6500
+ 11900 6500 11700 6500
Wire Wire Line
- 11500 6900 11900 6900
+ 11700 6500 11500 6500
Wire Wire Line
+ 11900 6900 11700 6900
+Wire Wire Line
+ 11700 6900 11500 6900
+Wire Wire Line
11500 8000 11900 8000
Wire Wire Line
11900 8000 11900 7900
@@ -513,8 +573,10 @@
Wire Wire Line
12900 6900 12900 6800
Wire Wire Line
- 12900 6800 11500 6800
+ 12900 6800 12600 6800
Wire Wire Line
+ 12600 6800 11500 6800
+Wire Wire Line
12500 6500 12700 6500
Wire Wire Line
12700 6500 12700 6600
@@ -524,30 +586,42 @@
14650 3800 14650 3600
Connection ~ 14650 3600
Wire Wire Line
- 15350 3800 15350 3500
+ 15350 3500 15350 3600
+Wire Wire Line
+ 15350 3600 15350 3800
Connection ~ 15350 3600
Wire Wire Line
15350 4200 15350 4400
Wire Wire Line
- 15350 4400 14650 4400
+ 15350 4400 15000 4400
+Wire Wire Line
+ 15000 4400 14650 4400
Connection ~ 12600 5500
Wire Wire Line
8550 8750 7050 8750
Wire Wire Line
7250 9150 7050 9150
Wire Wire Line
- 7050 8750 7050 9350
+ 7050 8750 7050 9150
+Wire Wire Line
+ 7050 9150 7050 9350
Connection ~ 7050 9150
Wire Wire Line
- 8350 9950 7050 9950
+ 8350 9950 7700 9950
+Wire Wire Line
+ 7700 9950 7050 9950
Connection ~ 7700 9950
Wire Wire Line
- 10100 9800 10100 9400
+ 10100 9400 10100 9600
Wire Wire Line
+ 10100 9600 10100 9800
+Wire Wire Line
8550 8650 6650 8650
Connection ~ 15000 7300
Wire Wire Line
- 15350 7500 15350 7200
+ 15350 7200 15350 7300
+Wire Wire Line
+ 15350 7300 15350 7500
Connection ~ 15350 7300
Wire Wire Line
14650 8300 14650 8500
@@ -565,8 +639,10 @@
13350 7700 12700 7700
Connection ~ 15350 9600
Wire Wire Line
- 15350 9700 15350 9400
+ 15350 9400 15350 9600
Wire Wire Line
+ 15350 9600 15350 9700
+Wire Wire Line
15350 9600 15000 9600
Wire Wire Line
15000 9600 15000 9400
@@ -574,15 +650,15 @@
15000 9000 15000 8800
Connection ~ 15000 8800
Wire Wire Line
- 15350 9000 15350 8700
+ 15350 8700 15350 8800
+Wire Wire Line
+ 15350 8800 15350 9000
Connection ~ 15350 8800
Wire Wire Line
12850 8400 12400 8400
Wire Wire Line
11500 8800 11700 8800
Wire Wire Line
- 7550 8200 7850 8200
-Wire Wire Line
8550 7150 2950 7150
Wire Wire Line
2950 7150 2950 7600
@@ -600,8 +676,10 @@
Wire Wire Line
8850 1450 8850 1650
Wire Wire Line
- 9700 2150 9700 1850
+ 9700 1850 9700 2050
Wire Wire Line
+ 9700 2050 9700 2150
+Wire Wire Line
9700 2050 10100 2050
Wire Wire Line
10100 2050 10100 1850
@@ -614,7 +692,11 @@
Wire Wire Line
11100 2000 11100 1250
Wire Wire Line
- 10900 1250 11550 1250
+ 11550 1250 11300 1250
+Wire Wire Line
+ 11300 1250 11100 1250
+Wire Wire Line
+ 11100 1250 10900 1250
Connection ~ 11100 1250
Wire Wire Line
12050 1250 12250 1250
@@ -632,7 +714,9 @@
Wire Wire Line
13350 3150 13000 3150
Wire Wire Line
- 12600 2350 13350 2350
+ 13350 2350 13000 2350
+Wire Wire Line
+ 13000 2350 12600 2350
Connection ~ 13350 2350
Wire Wire Line
12800 850 12800 1050
@@ -642,24 +726,34 @@
Wire Wire Line
13750 2550 13750 2350
Wire Wire Line
- 13350 2550 13350 2150
+ 13350 2150 13350 2350
Wire Wire Line
- 13550 1750 13950 1750
+ 13350 2350 13350 2550
Wire Wire Line
+ 13950 1750 13750 1750
+Wire Wire Line
+ 13750 1750 13550 1750
+Wire Wire Line
7850 1300 8050 1300
Wire Wire Line
5250 2100 5450 2100
Wire Wire Line
- 5450 2300 5450 1900
+ 5450 1900 5450 2100
+Wire Wire Line
+ 5450 2100 5450 2300
Connection ~ 5450 2100
Wire Wire Line
- 3300 2300 3300 1900
+ 3300 1900 3300 2100
+Wire Wire Line
+ 3300 2100 3300 2300
Connection ~ 3300 2100
Wire Wire Line
13600 5500 13350 5500
Wire Wire Line
- 12400 6000 12850 6000
+ 12850 6000 12600 6000
Wire Wire Line
+ 12600 6000 12400 6000
+Wire Wire Line
6650 8650 6650 9750
Wire Wire Line
6300 8850 6300 9050
@@ -684,31 +778,16 @@
Wire Wire Line
3600 5650 3600 5850
Wire Wire Line
- 2600 6650 2600 5400
-Wire Wire Line
- 2600 5400 2150 5400
-Wire Wire Line
- 1400 7650 1400 7450
-Wire Wire Line
- 1400 6750 1400 6950
-Wire Wire Line
- 8550 6750 1200 6750
-Connection ~ 1400 6750
-Wire Wire Line
8550 7450 5950 7450
Wire Wire Line
- 8550 7750 8100 7750
+ 5950 7950 6350 7950
Wire Wire Line
- 8100 7750 8100 7650
+ 5600 8400 5600 9550
Wire Wire Line
- 8100 7650 6350 7650
+ 5600 9550 4400 9550
Wire Wire Line
- 5950 7850 6350 7850
+ 4400 9550 4200 9550
Wire Wire Line
- 5600 8400 5600 9550
-Wire Wire Line
- 5600 9550 4200 9550
-Wire Wire Line
1600 4350 1600 4550
Wire Wire Line
2300 4550 2700 4550
@@ -717,32 +796,54 @@
8550 4600 8350 4600
Connection ~ 7650 6000
Wire Wire Line
- 14350 10500 14350 10200
+ 14350 10200 14350 10400
+Wire Wire Line
+ 14350 10400 14350 10500
Connection ~ 14350 10400
Wire Wire Line
- 14350 9800 14350 9500
+ 14350 9500 14350 9600
+Wire Wire Line
+ 14350 9600 14350 9800
Connection ~ 14350 9600
Wire Wire Line
- 12950 9500 12950 9800
+ 12950 9800 12950 9600
Wire Wire Line
+ 12950 9600 12950 9500
+Wire Wire Line
8550 4400 8250 4400
Wire Wire Line
8250 4400 8250 4050
Wire Wire Line
9550 3650 9750 3650
Wire Wire Line
- 10250 3650 10850 3650
+ 10250 3650 10450 3650
Wire Wire Line
+ 10450 3650 10850 3650
+Wire Wire Line
10850 3650 10850 3450
Wire Wire Line
- 14800 9050 13400 9050
+ 14800 9050 13700 9050
Wire Wire Line
- 13700 7700 14650 7700
+ 13700 9050 13400 9050
Wire Wire Line
- 13350 6000 15350 6000
+ 13700 7700 14050 7700
Wire Wire Line
- 13150 3600 15350 3600
+ 14050 7700 14650 7700
Wire Wire Line
+ 13350 6000 14200 6000
+Wire Wire Line
+ 14200 6000 14650 6000
+Wire Wire Line
+ 14650 6000 15000 6000
+Wire Wire Line
+ 15000 6000 15350 6000
+Wire Wire Line
+ 13150 3600 14650 3600
+Wire Wire Line
+ 14650 3600 15000 3600
+Wire Wire Line
+ 15000 3600 15350 3600
+Wire Wire Line
12350 9350 12350 9450
Wire Wire Line
12350 9450 12600 9450
@@ -754,14 +855,69 @@
14050 7650 14050 7700
Connection ~ 14050 7700
Wire Wire Line
- 14200 5900 14200 6000
+ 14200 6000 14200 5900
Connection ~ 14200 6000
Connection ~ 4400 9550
Connection ~ 15000 4400
Wire Wire Line
10900 1000 10900 900
+Wire Wire Line
+ 8550 6650 2600 6650
+Wire Wire Line
+ 2600 6650 2600 6400
+Wire Wire Line
+ 2600 6400 2400 6400
+Connection ~ 8350 8100
+Wire Wire Line
+ 7350 8000 7350 8100
+Wire Wire Line
+ 7350 8100 7650 8100
+Wire Wire Line
+ 8550 7650 4850 7650
+Wire Wire Line
+ 4850 7650 4850 8500
+Text Notes 950 6900 0 60 ~ 0
+ECN0007: remove R1710, R1741
+Text Notes 6400 4500 0 60 ~ 0
+ECN0005: Remove R1769 and R1705
+Text Notes 7250 5300 0 60 ~ 0
+ECN0006: remove R1701
+NoConn ~ 8550 5300
+NoConn ~ 8550 4700
+NoConn ~ 8550 4500
+Text Notes 6700 8300 0 60 ~ 0
+ECN0004: R1767,R1768 removed.
+Text Notes 2000 6200 0 60 ~ 0
+ECN0003 - R1765 removed
$Comp
+L LED- #PWR?
+U 1 1 4A5E9C57
+P 12900 6900
+F 0 "#PWR?" H 12900 6800 50 0001 C CNN
+F 1 "LED-" H 12900 7050 50 0000 C CNN
+ 1 12900 6900
+ -1 0 0 1
+$EndComp
+$Comp
+L LED+ #PWR?
+U 1 1 4A5E9C4F
+P 12900 6600
+F 0 "#PWR?" H 12900 6500 50 0001 C CNN
+F 1 "LED+" H 12900 6750 50 0000 C CNN
+ 1 12900 6600
+ 1 0 0 -1
+$EndComp
+$Comp
L PWR_FLAG #FLG?
+U 1 1 4A5C7DF8
+P 13700 9500
+F 0 "#FLG?" H 13700 9770 30 0001 C CNN
+F 1 "PWR_FLAG" H 13700 9730 30 0000 C CNN
+ 1 13700 9500
+ 1 0 0 -1
+$EndComp
+$Comp
+L PWR_FLAG #FLG?
U 1 1 4A5C77DB
P 10900 900
F 0 "#FLG?" H 10900 1170 30 0001 C CNN
@@ -928,15 +1084,15 @@
$Comp
L TST TP1704
U 1 1 4A3CEC74
-P 5900 8150
-F 0 "TP1704" V 6000 8300 50 0000 C CNN
-F 1 "TST" V 5850 8200 50 0001 C CNN
- 1 5900 8150
+P 5900 8250
+F 0 "TP1704" V 6000 8400 50 0000 C CNN
+F 1 "TST" V 5850 8300 50 0001 C CNN
+ 1 5900 8250
0 -1 -1 0
$EndComp
Text GLabel 4150 8500 0 60 Output ~ 0
GSM_ON
-Text GLabel 5950 7850 0 60 Input ~ 0
+Text GLabel 5950 7950 0 60 Input ~ 0
PWREN
$Comp
L IO_3V3 #PWR12
@@ -978,66 +1134,23 @@
0 1 1 0
$EndComp
$Comp
-L GND #PWR1
-U 1 1 4A3CEA74
-P 1400 7650
-F 0 "#PWR1" H 1400 7650 30 0001 C CNN
-F 1 "GND" H 1400 7580 30 0001 C CNN
- 1 1400 7650
- 1 0 0 -1
-$EndComp
-$Comp
L GND #PWR4
U 1 1 4A3CEA71
-P 2150 6300
-F 0 "#PWR4" H 2150 6300 30 0001 C CNN
-F 1 "GND" H 2150 6230 30 0001 C CNN
- 1 2150 6300
+P 2400 6600
+F 0 "#PWR4" H 2400 6600 30 0001 C CNN
+F 1 "GND" H 2400 6530 30 0001 C CNN
+ 1 2400 6600
1 0 0 -1
$EndComp
-Text GLabel 1200 6750 0 60 Input ~ 0
-KEEPACT
$Comp
-L R_US R1741
-U 1 1 4A3CEA3E
-P 1400 7200
-F 0 "R1741" V 1350 7400 50 0000 C CNN
-F 1 "NC" V 1450 7350 50 0000 C CNN
-F 2 "R0402-H" H 1400 7200 60 0001 C CNN
- 1 1400 7200
- 0 1 1 0
-$EndComp
-$Comp
-L R_US R1765
-U 1 1 4A3CEA0E
-P 2150 5850
-F 0 "R1765" V 2100 6050 50 0000 C CNN
-F 1 "10k" V 2200 6000 50 0000 C CNN
-F 2 "R0402-H" H 2150 5850 60 0001 C CNN
- 1 2150 5850
- 0 1 1 0
-$EndComp
-Text GLabel 2400 6650 0 60 Input ~ 0
-SHUTDOWN
-$Comp
L IO_3V3 #PWR3
U 1 1 4A3CE972
-P 1600 5850
-F 0 "#PWR3" H 1600 5750 50 0001 C CNN
-F 1 "IO_3V3" H 1600 6000 50 0000 C CNN
- 1 1600 5850
+P 2050 6550
+F 0 "#PWR3" H 2050 6450 50 0001 C CNN
+F 1 "IO_3V3" H 2050 6700 50 0000 C CNN
+ 1 2050 6550
1 0 0 -1
$EndComp
-$Comp
-L R_US R1710
-U 1 1 4A3CE971
-P 1600 6300
-F 0 "R1710" V 1550 6500 50 0000 C CNN
-F 1 "33k" V 1650 6450 50 0000 C CNN
-F 2 "R0402-H" H 1600 6300 60 0001 C CNN
- 1 1600 6300
- 0 1 1 0
-$EndComp
Text GLabel 3400 6550 0 60 Output ~ 0
nPWR_IRQ
Text GLabel 4250 6450 0 60 Output ~ 0
@@ -1609,10 +1722,10 @@
$Comp
L VB_SYS #PWR26
U 1 1 4A3B47B9
-P 7550 7900
-F 0 "#PWR26" H 7550 7800 50 0001 C CNN
-F 1 "VB_SYS" H 7550 8050 50 0000 C CNN
- 1 7550 7900
+P 7350 8000
+F 0 "#PWR26" H 7350 7900 50 0001 C CNN
+F 1 "VB_SYS" H 7350 8150 50 0000 C CNN
+ 1 7350 8000
1 0 0 -1
$EndComp
$Comp
@@ -2207,45 +2320,16 @@
0 1 1 0
$EndComp
$Comp
-L R_US R1768
-U 1 1 4A3943B4
-P 8100 8200
-F 0 "R1768" H 7800 8250 50 0000 C CNN
-F 1 "10k" H 8350 8250 50 0000 C CNN
-F 2 "R0402-H" H 8100 8200 60 0001 C CNN
- 1 8100 8200
- 1 0 0 -1
-$EndComp
-$Comp
-L R_US R1767
-U 1 1 4A3943B2
-P 8100 8100
-F 0 "R1767" H 7800 8150 50 0000 C CNN
-F 1 "10k" H 8350 8150 50 0000 C CNN
-F 2 "R0402-H" H 8100 8100 60 0001 C CNN
- 1 8100 8100
- 1 0 0 -1
-$EndComp
-$Comp
L R_US R1766
U 1 1 4A3943AF
-P 8100 8000
-F 0 "R1766" H 7800 8050 50 0000 C CNN
-F 1 "10k" H 8350 8050 50 0000 C CNN
-F 2 "R0402-H" H 8100 8000 60 0001 C CNN
- 1 8100 8000
+P 7900 8100
+F 0 "R1766" H 7600 8150 50 0000 C CNN
+F 1 "10k" H 8150 8150 50 0000 C CNN
+F 2 "R0402-H" H 7900 8100 60 0001 C CNN
+ 1 7900 8100
1 0 0 -1
$EndComp
$Comp
-L GND #PWR21
-U 1 1 4A3940A8
-P 7050 5600
-F 0 "#PWR21" H 7050 5600 30 0001 C CNN
-F 1 "GND" H 7050 5530 30 0001 C CNN
- 1 7050 5600
- 1 0 0 -1
-$EndComp
-$Comp
L GND #PWR25
U 1 1 4A394062
P 7450 5600
@@ -2266,28 +2350,6 @@
1 0 0 -1
$EndComp
$Comp
-L R_US R1701
-U 1 1 4A393F24
-P 7500 5300
-F 0 "R1701" H 7500 5400 50 0000 C CNN
-F 1 "NC" H 7500 5200 50 0000 C CNN
-F 2 "R0402-H" H 7500 5300 60 0001 C CNN
- 1 7500 5300
- 1 0 0 -1
-$EndComp
-Text GLabel 6450 4500 0 60 Input ~ 0
-BAT_ID
-$Comp
-L R_US R1769
-U 1 1 4A393BD2
-P 6900 4500
-F 0 "R1769" H 6900 4400 50 0000 C CNN
-F 1 "NC" H 6900 4600 50 0000 C CNN
-F 2 "R0402-H" H 6900 4500 60 0001 C CNN
- 1 6900 4500
- -1 0 0 1
-$EndComp
-$Comp
L R_US R1731
U 1 1 4A393BCA
P 6900 4050
@@ -2299,17 +2361,6 @@
1 0 0 -1
$EndComp
$Comp
-L R_US R1705
-U 1 1 4A393BC6
-P 7800 4500
-F 0 "R1705" H 7800 4600 50 0000 C CNN
-F 1 "5k36" H 7700 4400 50 0000 C CNN
-F 2 "R0402-H" H 7800 4500 60 0001 C CNN
-F 4 "1%" H 7900 4400 50 0000 C CNN "Tolerance"
- 1 7800 4500
- 1 0 0 -1
-$EndComp
-$Comp
L R_US R1732
U 1 1 4A3937A7
P 7800 4050
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog