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. r5585 - trunk/gta02-core/modules (wer...@docs.openmoko.org)
   2. r5586 - trunk/eda/fped (wer...@docs.openmoko.org)
   3. r5587 - trunk/gta02-core/scripts (wer...@docs.openmoko.org)
   4. r5588 - in trunk/gta02-core: . docs/ecn (re...@docs.openmoko.org)
--- Begin Message ---
Author: werner
Date: 2009-08-30 20:39:46 +0200 (Sun, 30 Aug 2009)
New Revision: 5585

Modified:
   trunk/gta02-core/modules/mkloe
Log:
- modules/mkloe: added -one-ps option to convert all modules to a combined
  Postscript file
- modules/mkloe: added -one-pdf option to convert all modules to a combined
  Postscript file
- modules/mkloe: accept --option as well as -option
- modules/Makefile: added "make gen" to generate combined Postscript and PDF
- modules/Makefile: added "make upload" to put combined Postscript and PDF on 
  the Web server
- modules/Makefile: "make ps" and new "make xpdf" now use the combined files



Modified: trunk/gta02-core/modules/mkloe
===================================================================
--- trunk/gta02-core/modules/mkloe      2009-08-30 13:20:11 UTC (rev 5584)
+++ trunk/gta02-core/modules/mkloe      2009-08-30 18:39:46 UTC (rev 5585)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 # Make a Library of Everything
 
 MODS="332fbga-p05 bga96-8x12-0mm8 ge865 stdpass tst wm3236aq"
@@ -6,6 +6,13 @@
 LIB=gta02-core.mod
 
 
+usage()
+{
+    echo "$0: [ --ps | --one-ps file | --one-pdf file ]" 1>&2
+    exit 1
+}
+
+
 for n in $MODS; do
     if [ ! -r $n.fpd ]; then
        echo $n.fpd: cannot read 1>&2
@@ -13,13 +20,28 @@
     fi
 done
 
-if [ "$1" = "-ps" ]; then
+if [ "$1" = "-ps" -o "$1" = "--ps" ]; then
     for n in $MODS; do
        fped -p $n.fpd || exit 1
     done
     exit 0
 fi
 
+if [ "$1" = "-one-ps" -o "$1" = "--one-ps" ]; then
+    [ ! -z "$2" ] || usage
+    eval psmerge -o$2 `for n in $MODS; do \
+      echo "<(fped -p $n.fpd -)"; done`
+    exit 0
+fi
+
+if [ "$1" = "-one-pdf" -o "$1" = "--one-pdf" ]; then
+    [ ! -z "$2" ] || usage
+    eval gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=$2 -f \
+      `for n in $MODS; do echo "<(fped -p $n.fpd -)"; done`
+    exit 0
+fi
+
+
 for n in $MODS; do
     fped -k $n.fpd -
 done |




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-08-30 21:38:33 +0200 (Sun, 30 Aug 2009)
New Revision: 5586

Modified:
   trunk/eda/fped/postscript.c
Log:
- postscript.c: added outline information for PDF
- postscript.c: ignore pdfmark if not supported by interpreter



Modified: trunk/eda/fped/postscript.c
===================================================================
--- trunk/eda/fped/postscript.c 2009-08-30 18:39:46 UTC (rev 5585)
+++ trunk/eda/fped/postscript.c 2009-08-30 19:38:33 UTC (rev 5586)
@@ -625,7 +625,7 @@
 }
 
 
-static void ps_page(FILE *file, int page)
+static void ps_page(FILE *file, int page, const struct pkg *pkg)
 {
        fprintf(file, "%%%%Page: %d %d\n", page, page);
 
@@ -638,6 +638,7 @@
 "    72 %d div 1000 div dup scale\n",
     (int) MIL_UNITS);
        fprintf(file, "%%%%EndPageSetup\n");
+       fprintf(file, "[ /Title (%s) /OUT pdfmark\n", pkg->name);
 }
 
 
@@ -676,7 +677,7 @@
        unit_type c, d;
        int done;
 
-       ps_page(file, page);
+       ps_page(file, page, pkg);
        ps_header(file, pkg);
 
        x = 2*PAGE_HALF_WIDTH-2*PS_DIVIDER_BORDER;
@@ -921,6 +922,17 @@
        fprintf(file,
 "/boxfont { 4 copy 1000 maxfont maxfont scalefont setfont } def\n");
 
+       /*
+        * Ignore pdfmark. From
+        * http://www.adobe.com/devnet/acrobat/pdfs/pdfmark_reference.pdf
+        * Page 10, Example 1.1.
+        */
+
+       fprintf(file,
+"/pdfmark where { pop }\n"
+"    { /globaldict where { pop globaldict } { userdict } ifelse"
+"    /pdfmark /cleartomark load put } ifelse\n");
+
        fprintf(file, "%%%%EndProlog\n");
 }
 




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-08-30 22:17:03 +0200 (Sun, 30 Aug 2009)
New Revision: 5587

Modified:
   trunk/gta02-core/scripts/all-sheets
Log:
- scripts/all-sheets: added outline information for PDF



Modified: trunk/gta02-core/scripts/all-sheets
===================================================================
--- trunk/gta02-core/scripts/all-sheets 2009-08-30 19:38:33 UTC (rev 5586)
+++ trunk/gta02-core/scripts/all-sheets 2009-08-30 20:17:03 UTC (rev 5587)
@@ -56,5 +56,6 @@
 
 if $pdf; then
     eval gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=$OUT.pdf -f \
-      `for n in $SHEETS; do [ -f $n.ps ] && echo "<($cmd $n.ps)"; done`
+      `for n in $SHEETS; do [ -f $n.ps ] && \
+      echo "<(echo '[ /Title ('${n#$B-}') /OUT pdfmark'; $cmd $n.ps;)"; done`
 fi




--- End Message ---
--- Begin Message ---
Author: rehar
Date: 2009-08-31 00:18:10 +0200 (Mon, 31 Aug 2009)
New Revision: 5588

Modified:
   trunk/gta02-core/audio.sch
   trunk/gta02-core/docs/ecn/ecn0032.txt
Log:
implemented ecn0032

Modified: trunk/gta02-core/audio.sch
===================================================================
--- trunk/gta02-core/audio.sch  2009-08-30 20:17:03 UTC (rev 5587)
+++ trunk/gta02-core/audio.sch  2009-08-30 22:18:10 UTC (rev 5588)
@@ -1,9 +1,9 @@
-EESchema Schematic File Version 2  date Mo 24 Aug 2009 15:22:36 CDT
-LIBS:power,device,conn,gta02-core,gta02-core-cache
+EESchema Schematic File Version 2  date Sun 30 Aug 2009 05:12:18 PM CDT
+LIBS:power,device,conn,gta02-core
 EELAYER 24  0
 EELAYER END
 $Descr A3 16535 11700
-Sheet 10 12
+Sheet 12 14
 Title ""
 Date ""
 Rev ""
@@ -14,16 +14,75 @@
 Comment4 ""
 $EndDescr
 Wire Wire Line
-       11950 9350 14700 9350
+       15300 8150 14750 8150
+Connection ~ 14200 8900
 Wire Wire Line
+       14200 9300 14200 8900
+Wire Wire Line
+       15000 9000 12500 9000
+Wire Wire Line
+       15000 8700 12350 8700
+Wire Wire Line
+       14650 7450 14650 7250
+Wire Wire Line
+       14650 7250 14950 7250
+Wire Wire Line
+       14950 7250 14950 7500
+Wire Wire Line
+       14950 8150 14950 7900
+Wire Wire Line
+       12350 8700 12350 7950
+Wire Wire Line
+       10900 7450 10900 7250
+Wire Wire Line
+       10900 7250 10600 7250
+Wire Wire Line
+       10600 7250 10600 7500
+Connection ~ 10050 8150
+Wire Wire Line
+       10050 7950 10050 8150
+Connection ~ 11700 8150
+Wire Wire Line
+       11700 7900 11700 8150
+Wire Wire Line
+       8650 8150 10800 8150
+Connection ~ 11600 9000
+Wire Wire Line
+       11600 9350 11600 9000
+Wire Wire Line
+       12700 9750 12700 10050
+Connection ~ 13350 9000
+Wire Wire Line
+       13350 9300 13350 9000
+Connection ~ 9400 9000
+Wire Wire Line
+       9400 9300 9400 9000
+Wire Wire Line
+       11050 9750 11050 10050
+Connection ~ 9950 8600
+Wire Wire Line
+       8900 8600 10150 8600
+Connection ~ 11050 8600
+Wire Wire Line
+       11050 9350 11050 8600
+Wire Wire Line
+       8900 9000 11800 9000
+Wire Wire Line
+       8300 8600 8500 8600
+Connection ~ 12350 8150
+Wire Wire Line
+       13050 7450 13050 7250
+Wire Wire Line
+       13050 7250 13300 7250
+Wire Wire Line
+       13300 7250 13300 7450
+Wire Wire Line
        8550 5100 7850 5100
 Wire Wire Line
        7650 4900 7650 5400
 Wire Wire Line
        7650 5400 7850 5400
 Wire Wire Line
-       14050 9050 14050 8500
-Wire Wire Line
        12250 2250 12450 2250
 Wire Wire Line
        12250 2250 12250 2450
@@ -70,8 +129,6 @@
 Wire Wire Line
        6300 6150 6300 4900
 Wire Wire Line
-       12450 8950 12450 9650
-Wire Wire Line
        13050 3200 12850 3200
 Wire Wire Line
        13050 3400 12850 3400
@@ -79,24 +136,16 @@
        12850 3200 12850 3150
 Wire Wire Line
        12850 3400 12850 3450
+Connection ~ 8900 8150
 Wire Wire Line
-       9650 9300 10100 9300
+       8900 8150 8900 7900
 Wire Wire Line
-       11550 9350 11150 9350
+       8900 7500 8900 7250
 Wire Wire Line
-       11150 9350 11150 9300
+       8900 7250 8550 7250
 Wire Wire Line
-       11150 9300 10900 9300
-Connection ~ 10250 8500
+       8550 7250 8550 7450
 Wire Wire Line
-       10250 8250 10250 8500
-Wire Wire Line
-       10250 7850 10250 7600
-Wire Wire Line
-       10250 7600 9900 7600
-Wire Wire Line
-       9900 7600 9900 7800
-Wire Wire Line
        8850 4250 9300 4250
 Wire Wire Line
        9300 4250 9300 5350
@@ -116,12 +165,12 @@
 Wire Wire Line
        14850 5450 14850 5150
 Wire Wire Line
-       14050 6200 14050 5950
+       14050 5950 14050 6200
 Wire Wire Line
        14050 6850 14050 6600
 Connection ~ 14550 5950
 Wire Wire Line
-       14550 6150 14550 5950
+       14550 5950 14550 6150
 Wire Wire Line
        14050 4500 14050 4250
 Wire Wire Line
@@ -139,7 +188,7 @@
 Connection ~ 13550 5150
 Connection ~ 13800 5950
 Wire Wire Line
-       13800 5750 13800 5950
+       13800 5950 13800 5750
 Connection ~ 13550 5950
 Wire Wire Line
        13350 5700 13350 5950
@@ -175,34 +224,30 @@
 Wire Wire Line
        3850 8500 4150 8500
 Wire Wire Line
-       3450 7800 3450 8050
+       3450 8050 3450 7800
 Connection ~ 2550 8950
 Wire Wire Line
-       2550 9200 2550 8950
+       2550 8950 2550 9200
 Connection ~ 2750 8050
 Wire Wire Line
-       2750 8300 2750 8050
+       2750 8050 2750 8300
 Connection ~ 2050 8050
 Wire Wire Line
        2050 7850 2050 8050
 Connection ~ 2250 8050
 Wire Wire Line
-       2250 8250 2250 8050
+       2250 8050 2250 8250
 Wire Wire Line
-       8700 8500 8900 8500
+       7350 8150 7550 8150
 Wire Wire Line
-       9300 8500 9500 8500
+       7950 8150 8150 8150
 Wire Wire Line
-       14700 9250 14450 9250
+       9100 9800 9100 10050
 Wire Wire Line
-       12450 10150 12450 10400
-Wire Wire Line
        9800 3850 9800 4800
 Wire Wire Line
        9800 3850 8850 3850
 Wire Wire Line
-       15150 8500 14450 8500
-Wire Wire Line
        9600 2950 9250 2950
 Wire Wire Line
        9250 2950 9250 3550
@@ -225,7 +270,7 @@
 Wire Wire Line
        5750 1650 5750 1450
 Wire Wire Line
-       5350 1450 5350 1650
+       5350 1650 5350 1450
 Wire Wire Line
        5750 2050 5750 2300
 Wire Wire Line
@@ -296,7 +341,7 @@
        2000 2700 2000 2400
 Connection ~ 1300 2400
 Wire Wire Line
-       1300 2700 1300 2400
+       1300 2400 1300 2700
 Wire Wire Line
        3200 4850 3200 4650
 Wire Wire Line
@@ -312,26 +357,26 @@
 Wire Wire Line
        3600 3350 4550 3350
 Wire Wire Line
-       7750 10200 7750 9800
+       6900 10250 6900 9850
 Wire Wire Line
-       7750 10800 7750 10600
+       6900 10850 6900 10650
 Wire Wire Line
-       8150 10000 8150 10200
+       7300 10250 7300 10050
 Wire Wire Line
-       7750 10000 8350 10000
-Connection ~ 7750 10000
-Connection ~ 8150 10000
+       6900 10050 7500 10050
+Connection ~ 6900 10050
+Connection ~ 7300 10050
 Wire Wire Line
-       8150 10800 8150 10600
+       7300 10850 7300 10650
 Wire Wire Line
-       5350 10800 5350 10600
+       4600 10850 4600 10650
 Wire Wire Line
-       6750 10800 6750 10600
+       6000 10850 6000 10650
 Wire Wire Line
-       5350 10200 5350 9800
-Connection ~ 6750 10000
+       4600 10250 4600 9850
+Connection ~ 6000 10050
 Wire Wire Line
-       6750 10200 6750 9800
+       6000 10250 6000 9850
 Connection ~ 6050 2300
 Wire Wire Line
        6050 2500 6050 2300
@@ -340,19 +385,19 @@
 Wire Wire Line
        5950 2300 6200 2300
 Wire Wire Line
-       6750 10000 6550 10000
+       5800 10050 6000 10050
 Wire Wire Line
-       5750 10000 5750 10200
+       5000 10250 5000 10050
 Wire Wire Line
-       5350 10000 5950 10000
-Connection ~ 5350 10000
-Connection ~ 5750 10000
+       4600 10050 5200 10050
+Connection ~ 4600 10050
+Connection ~ 5000 10050
 Wire Wire Line
-       5750 10800 5750 10600
+       5000 10850 5000 10650
 Wire Wire Line
-       8950 10000 9150 10000
+       8100 10050 8300 10050
 Wire Wire Line
-       9150 10000 9150 9750
+       8300 10050 8300 9800
 Wire Wire Line
        3600 3600 3900 3600
 Wire Wire Line
@@ -368,7 +413,7 @@
 Wire Wire Line
        4200 2400 1000 2400
 Wire Wire Line
-       1650 2700 1650 2400
+       1650 2400 1650 2700
 Connection ~ 1650 2400
 Wire Wire Line
        1300 3350 1300 3100
@@ -399,7 +444,7 @@
 Wire Wire Line
        6900 6050 6900 4900
 Wire Wire Line
-       6500 2300 6500 2500
+       6500 2500 6500 2300
 Connection ~ 6400 2300
 Wire Wire Line
        6900 1500 6900 1300
@@ -414,13 +459,13 @@
 Wire Wire Line
        7800 2100 7800 1900
 Wire Wire Line
-       7800 1300 7800 1500
+       7800 1500 7800 1300
 Connection ~ 7500 1300
 Wire Wire Line
-       7400 2300 7400 2500
+       7400 2500 7400 2300
 Connection ~ 7500 2300
 Wire Wire Line
-       7000 2300 7000 2500
+       7000 2500 7000 2300
 Wire Wire Line
        7150 2300 7150 2500
 Wire Wire Line
@@ -447,7 +492,7 @@
        10300 3100 10300 2950
 Connection ~ 10300 2950
 Wire Wire Line
-       10500 3850 10500 3650
+       10500 3650 10500 3850
 Connection ~ 10500 3650
 Wire Wire Line
        9050 1450 9650 1450
@@ -458,11 +503,11 @@
 Wire Wire Line
        9800 4800 10200 4800
 Wire Wire Line
-       14700 9450 14500 9450
+       15000 9100 14800 9100
 Wire Wire Line
-       14500 9450 14500 9650
+       14800 9100 14800 9300
 Wire Wire Line
-       12950 10400 12950 10150
+       9400 10050 9400 9800
 Wire Wire Line
        8850 3950 9700 3950
 Wire Wire Line
@@ -470,35 +515,29 @@
 Wire Wire Line
        9700 4950 10200 4950
 Wire Wire Line
-       14050 9050 14700 9050
-Wire Wire Line
-       14050 8500 10000 8500
-Wire Wire Line
-       13850 10400 13850 10150
-Wire Wire Line
        2050 9850 2050 9650
 Wire Wire Line
        2050 9150 2050 8950
 Connection ~ 2050 8950
 Wire Wire Line
-       2250 8750 2250 8950
+       2250 8950 2250 8750
 Connection ~ 2250 8950
 Wire Wire Line
-       2750 8700 2750 8950
+       2750 8950 2750 8700
 Connection ~ 2750 8950
 Wire Wire Line
        2550 9850 2550 9600
 Wire Wire Line
-       2550 7800 2550 8050
+       2550 8050 2550 7800
 Connection ~ 2550 8050
 Connection ~ 3450 8050
 Wire Wire Line
        3450 9850 3450 9600
 Wire Wire Line
-       3450 9200 3450 8950
+       3450 8950 3450 9200
 Connection ~ 3450 8950
 Wire Wire Line
-       3950 7850 3950 8050
+       3950 8050 3950 7850
 Connection ~ 3950 8050
 Wire Wire Line
        4550 8050 5200 8050
@@ -510,7 +549,7 @@
        13350 5150 14850 5150
 Connection ~ 14050 5950
 Wire Wire Line
-       13800 5350 13800 5150
+       13800 5150 13800 5350
 Connection ~ 13800 5150
 Connection ~ 14050 5150
 Wire Wire Line
@@ -539,7 +578,7 @@
 Wire Wire Line
        14850 5650 15250 5650
 Wire Wire Line
-       15050 5650 15050 5850
+       15050 5850 15050 5650
 Connection ~ 15050 5650
 Wire Wire Line
        8850 4150 9400 4150
@@ -548,36 +587,18 @@
 Wire Wire Line
        9400 5200 9600 5200
 Wire Wire Line
-       12400 8250 12400 8500
-Connection ~ 12400 8500
+       9400 7450 9400 7250
 Wire Wire Line
-       10750 7800 10750 7600
+       9400 7250 9750 7250
 Wire Wire Line
-       10750 7600 11100 7600
+       9750 7250 9750 7450
 Wire Wire Line
-       11100 7600 11100 7800
+       9400 8150 9400 7950
+Connection ~ 9400 8150
 Wire Wire Line
-       10750 8300 10750 8500
-Connection ~ 10750 8500
-Wire Wire Line
-       10900 9000 11150 9000
-Wire Wire Line
-       11150 9000 11150 8950
-Wire Wire Line
-       11150 8950 11550 8950
-Wire Wire Line
-       9650 9000 10100 9000
-Wire Wire Line
        9350 3650 9350 3950
 Connection ~ 9350 3950
 Wire Wire Line
-       13850 9650 13850 8950
-Connection ~ 13850 8950
-Connection ~ 12450 8950
-Wire Wire Line
-       12950 9650 12950 9350
-Connection ~ 12950 9350
-Wire Wire Line
        6200 5950 6200 4900
 Wire Wire Line
        6400 4900 6400 6250
@@ -588,10 +609,6 @@
 Wire Wire Line
        6400 6250 3250 6250
 Wire Wire Line
-       11300 7200 12400 7200
-Wire Wire Line
-       12400 7200 12400 7750
-Wire Wire Line
        1600 8550 1800 8550
 Wire Wire Line
        1800 8550 1800 8950
@@ -622,13 +639,327 @@
        6650 6200 6650 5800
 Connection ~ 6650 6000
 Wire Wire Line
-       14450 8500 14450 9250
-Wire Wire Line
        7850 5100 7850 4900
 Wire Wire Line
        8350 5400 8550 5400
 Wire Wire Line
-       11950 8950 14700 8950
+       13550 8900 13550 8150
+Wire Wire Line
+       13050 7950 13050 8600
+Connection ~ 13050 8600
+Wire Wire Line
+       12600 7450 12600 7250
+Wire Wire Line
+       12600 7250 12350 7250
+Wire Wire Line
+       12350 7250 12350 7450
+Wire Wire Line
+       8300 9000 8500 9000
+Wire Wire Line
+       9950 8600 9950 9350
+Wire Wire Line
+       9950 9750 9950 10050
+Wire Wire Line
+       9100 9300 9100 8600
+Connection ~ 9100 8600
+Wire Wire Line
+       13350 9800 13350 10050
+Wire Wire Line
+       12700 9350 12700 9000
+Connection ~ 12700 9000
+Wire Wire Line
+       11600 9750 11600 10050
+Wire Wire Line
+       10600 7900 10600 8150
+Connection ~ 10600 8150
+Wire Wire Line
+       10050 7450 10050 6850
+Wire Wire Line
+       10050 6850 9600 6850
+Wire Wire Line
+       11700 7500 11700 7250
+Wire Wire Line
+       11700 7250 11400 7250
+Wire Wire Line
+       11400 7250 11400 7450
+Wire Wire Line
+       11500 8150 12350 8150
+Wire Wire Line
+       13850 7900 13850 8150
+Connection ~ 13850 8150
+Wire Wire Line
+       13850 7500 13850 7250
+Wire Wire Line
+       13850 7250 14150 7250
+Wire Wire Line
+       14150 7250 14150 7450
+Connection ~ 14950 8150
+Wire Wire Line
+       15000 8600 10850 8600
+Wire Wire Line
+       13550 8900 15000 8900
+Wire Wire Line
+       14200 9800 14200 10050
+Wire Wire Line
+       13550 8150 14050 8150
+NoConn ~ 15000 8800
+$Comp
+L GND #PWR?
+U 1 1 4A9AF601
+P 14650 7450
+F 0 "#PWR?" H 14650 7450 30  0001 C CNN
+F 1 "GND" H 14650 7380 30  0001 C CNN
+       1    14650 7450
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AF5F8
+P 14150 7450
+F 0 "#PWR?" H 14150 7450 30  0001 C CNN
+F 1 "GND" H 14150 7380 30  0001 C CNN
+       1    14150 7450
+       1    0    0    -1  
+$EndComp
+$Comp
+L C C4411
+U 1 1 4A9AF5E5
+P 14950 7700
+F 0 "C4411" H 15000 7800 50  0000 L CNN
+F 1 "47p" H 15000 7600 50  0000 L CNN
+F 2 "0402" H 15050 7850 60  0001 C CNN
+       1    14950 7700
+       -1   0    0    -1  
+$EndComp
+$Comp
+L C C4410
+U 1 1 4A9AF5D2
+P 13850 7700
+F 0 "C4410" H 13900 7800 50  0000 L CNN
+F 1 "47p" H 13900 7600 50  0000 L CNN
+F 2 "0402" H 13950 7850 60  0001 C CNN
+       1    13850 7700
+       -1   0    0    -1  
+$EndComp
+$Comp
+L FILTER B4417
+U 1 1 4A9AF5B5
+P 14400 8150
+F 0 "B4417" H 14400 8300 60  0000 C CNN
+F 1 "BLM15HD102SN1" H 14400 8050 60  0000 C CNN
+       1    14400 8150
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AF332
+P 11400 7450
+F 0 "#PWR?" H 11400 7450 30  0001 C CNN
+F 1 "GND" H 11400 7380 30  0001 C CNN
+       1    11400 7450
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AF322
+P 10900 7450
+F 0 "#PWR?" H 10900 7450 30  0001 C CNN
+F 1 "GND" H 10900 7380 30  0001 C CNN
+       1    10900 7450
+       1    0    0    -1  
+$EndComp
+$Comp
+L C C4413
+U 1 1 4A9AF2A7
+P 10600 7700
+F 0 "C4413" H 10650 7800 50  0000 L CNN
+F 1 "47p" H 10650 7600 50  0000 L CNN
+F 2 "0402" H 10700 7850 60  0001 C CNN
+       1    10600 7700
+       1    0    0    -1  
+$EndComp
+$Comp
+L C C4412
+U 1 1 4A9AF29D
+P 11700 7700
+F 0 "C4412" H 11750 7800 50  0000 L CNN
+F 1 "47p" H 11750 7600 50  0000 L CNN
+F 2 "0402" H 11800 7850 60  0001 C CNN
+       1    11700 7700
+       -1   0    0    -1  
+$EndComp
+$Comp
+L FILTER B4418
+U 1 1 4A9AF291
+P 11150 8150
+F 0 "B4418" H 11150 8300 60  0000 C CNN
+F 1 "BLM15HD102SN1" H 11150 8050 60  0000 C CNN
+       1    11150 8150
+       1    0    0    -1  
+$EndComp
+$Comp
+L C C4414
+U 1 1 4A9AF1A0
+P 11050 9550
+F 0 "C4414" H 11100 9650 50  0000 L CNN
+F 1 "47p" H 11100 9450 50  0000 L CNN
+F 2 "0402" H 11150 9700 60  0001 C CNN
+       1    11050 9550
+       1    0    0    -1  
+$EndComp
+$Comp
+L C C4415
+U 1 1 4A9AF19F
+P 9950 9550
+F 0 "C4415" H 10000 9650 50  0000 L CNN
+F 1 "47p" H 10000 9450 50  0000 L CNN
+F 2 "0402" H 10050 9700 60  0001 C CNN
+       1    9950 9550
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AF19E
+P 9950 10050
+F 0 "#PWR?" H 9950 10050 30  0001 C CNN
+F 1 "GND" H 9950 9980 30  0001 C CNN
+       1    9950 10050
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AF19D
+P 11050 10050
+F 0 "#PWR?" H 11050 10050 30  0001 C CNN
+F 1 "GND" H 11050 9980 30  0001 C CNN
+       1    11050 10050
+       1    0    0    -1  
+$EndComp
+$Comp
+L FILTER B4419
+U 1 1 4A9AF16C
+P 10500 8600
+F 0 "B4419" H 10500 8750 60  0000 C CNN
+F 1 "BLM15HD102SN1" H 10500 8500 60  0000 C CNN
+       1    10500 8600
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AF08C
+P 12700 10050
+F 0 "#PWR?" H 12700 10050 30  0001 C CNN
+F 1 "GND" H 12700 9980 30  0001 C CNN
+       1    12700 10050
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AF088
+P 11600 10050
+F 0 "#PWR?" H 11600 10050 30  0001 C CNN
+F 1 "GND" H 11600 9980 30  0001 C CNN
+       1    11600 10050
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AF083
+P 9400 10050
+F 0 "#PWR?" H 9400 10050 30  0001 C CNN
+F 1 "GND" H 9400 9980 30  0001 C CNN
+       1    9400 10050
+       1    0    0    -1  
+$EndComp
+$Comp
+L C C4409
+U 1 1 4A9AF04A
+P 11600 9550
+F 0 "C4409" H 11650 9650 50  0000 L CNN
+F 1 "47p" H 11650 9450 50  0000 L CNN
+F 2 "0402" H 11700 9700 60  0001 C CNN
+       1    11600 9550
+       1    0    0    -1  
+$EndComp
+$Comp
+L C C4408
+U 1 1 4A9AF03A
+P 12700 9550
+F 0 "C4408" H 12750 9650 50  0000 L CNN
+F 1 "47p" H 12750 9450 50  0000 L CNN
+F 2 "0402" H 12800 9700 60  0001 C CNN
+       1    12700 9550
+       -1   0    0    -1  
+$EndComp
+$Comp
+L FILTER B4416
+U 1 1 4A9AF027
+P 12150 9000
+F 0 "B4416" H 12150 9150 60  0000 C CNN
+F 1 "BLM15HD102SN1" H 12150 8900 60  0000 C CNN
+       1    12150 9000
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AEF37
+P 13350 10050
+F 0 "#PWR?" H 13350 10050 30  0001 C CNN
+F 1 "GND" H 13350 9980 30  0001 C CNN
+       1    13350 10050
+       1    0    0    -1  
+$EndComp
+$Comp
+L VARISTOR D4404
+U 1 1 4A9AEEEE
+P 12350 7700
+F 0 "D4404" V 12250 7950 60  0000 C CNN
+F 1 "150pF" V 12350 7950 60  0000 C CNN
+F 2 "0402" H 12290 7910 60  0001 C CNN
+F 4 "5.6Vac" V 12450 7950 60  0000 C CNN "AC-Voltage"
+       1    12350 7700
+       0    -1   1    0   
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AEEED
+P 12600 7450
+F 0 "#PWR?" H 12600 7450 30  0001 C CNN
+F 1 "GND" H 12600 7380 30  0001 C CNN
+       1    12600 7450
+       1    0    0    -1  
+$EndComp
+$Comp
+L GND #PWR?
+U 1 1 4A9AEEC4
+P 13300 7450
+F 0 "#PWR?" H 13300 7450 30  0001 C CNN
+F 1 "GND" H 13300 7380 30  0001 C CNN
+       1    13300 7450
+       1    0    0    -1  
+$EndComp
+$Comp
+L VARISTOR D4405
+U 1 1 4A9AEEC3
+P 13050 7700
+F 0 "D4405" V 12950 7950 60  0000 C CNN
+F 1 "150pF" V 13050 7950 60  0000 C CNN
+F 2 "0402" H 12990 7910 60  0001 C CNN
+F 4 "5.6Vac" V 13150 7950 60  0000 C CNN "AC-Voltage"
+       1    13050 7700
+       0    1    1    0   
+$EndComp
+$Comp
+L VARISTOR D4403
+U 1 1 4A9AED9A
+P 14200 9550
+F 0 "D4403" V 14100 9800 60  0000 C CNN
+F 1 "150pF" V 14200 9800 60  0000 C CNN
+F 2 "0402" H 14140 9760 60  0001 C CNN
+F 4 "5.6Vac" V 14300 9800 60  0000 C CNN "AC-Voltage"
+       1    14200 9550
+       0    1    1    0   
+$EndComp
 NoConn ~ 7400 4900
 Text GLabel 8550 5100 2    60   Output ~ 0
 CODEC_IRQ
@@ -697,7 +1028,6 @@
 This schematic differs from\nthe original GTA02 schematic.\n\nDone:\n- ECN0010 
    - ECN0015\n- ECN0019     - ECN0022\n- ECN0031\n\nToDo/Discuss:\n- ECN0018   
  - ECN0020\n- ECN0032     - ECN0033
 Text Notes 13700 850  0    150  ~ 30
 Note:
-NoConn ~ 14700 9150
 Text GLabel 5050 6500 2    60   Output ~ 0
 IIS_MCLK
 $Comp
@@ -709,15 +1039,6 @@
        13   1350 5900
        1    0    0    -1  
 $EndComp
-$Comp
-L EXC24CB102U B4102
-U 1 1 4A43AD85
-P 10500 9150
-F 0 "B4102" H 10500 9500 60  0000 C CNN
-F 1 "EXC24CB102U" H 10500 8800 60  0000 C CNN
-       1    10500 9150
-       1    0    0    -1  
-$EndComp
 NoConn ~ 7750 4900
 Text Notes 1250 1250 0    200  ~ 40
 AUDIO
@@ -1090,112 +1411,112 @@
 $Comp
 L GND #PWR0212
 U 1 1 4A413D33
-P 13850 10400
-F 0 "#PWR0212" H 13850 10400 30  0001 C CNN
-F 1 "GND" H 13850 10330 30  0001 C CNN
-       1    13850 10400
+P 14200 10050
+F 0 "#PWR0212" H 14200 10050 30  0001 C CNN
+F 1 "GND" H 14200 9980 30  0001 C CNN
+       1    14200 10050
        1    0    0    -1  
 $EndComp
 $Comp
 L VARISTOR D4402
 U 1 1 4A413D29
-P 13850 9900
-F 0 "D4402" V 13750 10150 60  0000 C CNN
-F 1 "150pF" V 13850 10150 60  0000 C CNN
-F 2 "0402" H 13790 10110 60  0001 C CNN
-F 4 "5.6Vac" V 13950 10150 60  0000 C CNN "AC-Voltage"
-       1    13850 9900
-       0    1    1    0   
+P 13350 9550
+F 0 "D4402" V 13250 9800 60  0000 C CNN
+F 1 "150pF" V 13350 9800 60  0000 C CNN
+F 2 "0402" H 13290 9760 60  0001 C CNN
+F 4 "5.6Vac" V 13450 9800 60  0000 C CNN "AC-Voltage"
+       1    13350 9550
+       0    -1   1    0   
 $EndComp
 $Comp
 L R_US R4408
 U 1 1 4A413C3F
-P 12400 8000
-F 0 "R4408" V 12350 8200 50  0000 C CNN
-F 1 "2k2" V 12450 8150 50  0000 C CNN
-F 2 "0402" H 12450 8200 60  0001 C CNN
-       1    12400 8000
+P 10050 7700
+F 0 "R4408" V 10000 7900 50  0000 C CNN
+F 1 "2k2" V 10100 7850 50  0000 C CNN
+F 2 "0402" H 10100 7900 60  0001 C CNN
+       1    10050 7700
        0    1    1    0   
 $EndComp
 $Comp
 L GND #PWR0213
 U 1 1 4A413C2B
-P 11100 7800
-F 0 "#PWR0213" H 11100 7800 30  0001 C CNN
-F 1 "GND" H 11100 7730 30  0001 C CNN
-       1    11100 7800
+P 9750 7450
+F 0 "#PWR0213" H 9750 7450 30  0001 C CNN
+F 1 "GND" H 9750 7380 30  0001 C CNN
+       1    9750 7450
        1    0    0    -1  
 $EndComp
 $Comp
 L GND #PWR0214
 U 1 1 4A413C28
-P 9900 7800
-F 0 "#PWR0214" H 9900 7800 30  0001 C CNN
-F 1 "GND" H 9900 7730 30  0001 C CNN
-       1    9900 7800
+P 8550 7450
+F 0 "#PWR0214" H 8550 7450 30  0001 C CNN
+F 1 "GND" H 8550 7380 30  0001 C CNN
+       1    8550 7450
        1    0    0    -1  
 $EndComp
 $Comp
 L C C4405
 U 1 1 4A413BEC
-P 10250 8050
-F 0 "C4405" H 10300 8150 50  0000 L CNN
-F 1 "22p" H 10300 7950 50  0000 L CNN
-F 2 "0402" H 10350 8200 60  0001 C CNN
-       1    10250 8050
+P 8900 7700
+F 0 "C4405" H 8950 7800 50  0000 L CNN
+F 1 "22p" H 8950 7600 50  0000 L CNN
+F 2 "0402" H 9000 7850 60  0001 C CNN
+       1    8900 7700
        -1   0    0    -1  
 $EndComp
 $Comp
 L R_US R4404
 U 1 1 4A413B2E
-P 10750 8050
-F 0 "R4404" V 10700 7850 50  0000 C CNN
-F 1 "NC" V 10800 7920 50  0000 C CNN
-F 2 "0402" H 10700 8200 60  0001 C CNN
-       1    10750 8050
+P 9400 7700
+F 0 "R4404" V 9350 7500 50  0000 C CNN
+F 1 "NC" V 9450 7570 50  0000 C CNN
+F 2 "0402" H 9350 7850 60  0001 C CNN
+       1    9400 7700
        0    -1   1    0   
 $EndComp
 $Comp
 L R_US R4401
 U 1 1 4A413AF6
-P 9750 8500
-F 0 "R4401" H 9750 8600 50  0000 C CNN
-F 1 "220R" H 9750 8400 50  0000 C CNN
-F 2 "0402" H 9700 8650 60  0001 C CNN
-       1    9750 8500
+P 8400 8150
+F 0 "R4401" H 8400 8250 50  0000 C CNN
+F 1 "220R" H 8400 8050 50  0000 C CNN
+F 2 "0402" H 8350 8300 60  0001 C CNN
+       1    8400 8150
        1    0    0    -1  
 $EndComp
 $Comp
 L C C4406
 U 1 1 4A413AE7
-P 9100 8500
-F 0 "C4406" V 9000 8300 50  0000 L CNN
-F 1 "1u" V 9150 8600 50  0000 L CNN
-F 2 "0603" H 9200 8650 60  0001 C CNN
-       1    9100 8500
+P 7750 8150
+F 0 "C4406" V 7650 7950 50  0000 L CNN
+F 1 "1u" V 7800 8250 50  0000 L CNN
+F 2 "0603" H 7850 8300 60  0001 C CNN
+       1    7750 8150
        0    1    1    0   
 $EndComp
-Text GLabel 11300 7200 0    60   Input ~ 0
+Text GLabel 9600 6850 0    60   Input ~ 0
 MICBIAS
-Text GLabel 8700 8500 0    60   Output ~ 0
+Text GLabel 7350 8150 0    60   Output ~ 0
 HS_MIC
 $Comp
 L GND #PWR0215
 U 1 1 4A3F175F
-P 12450 10400
-F 0 "#PWR0215" H 12450 10400 30  0001 C CNN
-F 1 "GND" H 12450 10330 30  0001 C CNN
-       1    12450 10400
+P 9100 10050
+F 0 "#PWR0215" H 9100 10050 30  0001 C CNN
+F 1 "GND" H 9100 9980 30  0001 C CNN
+       1    9100 10050
        1    0    0    -1  
 $EndComp
 $Comp
 L R_US R4117
 U 1 1 4A3F1756
-P 12450 9900
-F 0 "R4117" V 12400 10100 50  0000 C CNN
-F 1 "1k" V 12500 10030 50  0000 C CNN
-F 2 "0402" H 12400 10050 60  0001 C CNN
-       1    12450 9900
+P 9100 9550
+F 0 "R4117" V 9050 9750 50  0000 C CNN
+F 1 "1k" V 9150 9680 50  0000 C CNN
+F 2 "0402" H 9050 9700 60  0001 C CNN
+       1    9100 9550
        0    -1   1    0   
 $EndComp
 Text GLabel 9600 5200 2    60   Output ~ 0
@@ -1205,68 +1526,68 @@
 $Comp
 L GND #PWR0216
 U 1 1 4A3F13F6
-P 14500 9650
-F 0 "#PWR0216" H 14500 9650 30  0001 C CNN
-F 1 "GND" H 14500 9580 30  0001 C CNN
-       1    14500 9650
+P 14800 9300
+F 0 "#PWR0216" H 14800 9300 30  0001 C CNN
+F 1 "GND" H 14800 9230 30  0001 C CNN
+       1    14800 9300
        1    0    0    -1  
 $EndComp
 $Comp
 L GND #PWR0217
 U 1 1 4A3F13DD
-P 12950 10400
-F 0 "#PWR0217" H 12950 10400 30  0001 C CNN
-F 1 "GND" H 12950 10330 30  0001 C CNN
-       1    12950 10400
+P 9400 10050
+F 0 "#PWR0217" H 9400 10050 30  0001 C CNN
+F 1 "GND" H 9400 9980 30  0001 C CNN
+       1    9400 10050
        1    0    0    -1  
 $EndComp
 $Comp
 L R_US R4116
 U 1 1 4A3F13C7
-P 12950 9900
-F 0 "R4116" V 12900 9700 50  0000 C CNN
-F 1 "1k" V 13000 9780 50  0000 C CNN
-F 2 "0402" H 13000 10050 60  0001 C CNN
-       1    12950 9900
+P 9400 9550
+F 0 "R4116" V 9350 9350 50  0000 C CNN
+F 1 "1k" V 9450 9430 50  0000 C CNN
+F 2 "0402" H 9450 9700 60  0001 C CNN
+       1    9400 9550
        0    -1   1    0   
 $EndComp
-Text GLabel 9650 9000 0    60   Input ~ 0
+Text GLabel 8300 8600 0    60   Input ~ 0
 EP_L
-Text GLabel 9650 9300 0    60   Input ~ 0
+Text GLabel 8300 9000 0    60   Input ~ 0
 EP_R
 Text GLabel 10200 4800 2    60   Output ~ 0
 EP_R
 Text GLabel 10200 4950 2    60   Output ~ 0
 EP_L
-Text GLabel 15150 8500 2    60   Output ~ 0
+Text GLabel 15300 8150 2    60   Output ~ 0
 JACK_INSERT
 $Comp
 L JACK_4P JK4401
 U 1 1 4A3F0510
-P 15100 9200
-F 0 "JK4401" H 15100 9650 60  0000 C CNN
-F 1 "JAR02-062101" H 15100 8850 60  0000 C CNN
-       1    15100 9200
+P 15400 8850
+F 0 "JK4401" H 15400 9300 60  0000 C CNN
+F 1 "JAR02-062101" H 15400 8500 60  0000 C CNN
+       1    15400 8850
        1    0    0    -1  
 $EndComp
 $Comp
 L CP1 C4110
 U 1 1 4A3EFB33
-P 11750 9350
-F 0 "C4110" V 11650 9150 50  0000 L CNN
-F 1 "100u" V 11800 9550 50  0000 L CNN
-F 2 "1206" V 11600 9100 60  0001 C CNN
-       1    11750 9350
+P 8700 9000
+F 0 "C4110" V 8600 8800 50  0000 L CNN
+F 1 "100u" V 8750 9200 50  0000 L CNN
+F 2 "1206" V 8550 8750 60  0001 C CNN
+       1    8700 9000
        0    -1   1    0   
 $EndComp
 $Comp
 L CP1 C4111
 U 1 1 4A3EFB18
-P 11750 8950
-F 0 "C4111" V 11650 8750 50  0000 L CNN
-F 1 "100u" V 11800 9150 50  0000 L CNN
-F 2 "1206" V 11600 8700 60  0001 C CNN
-       1    11750 8950
+P 8700 8600
+F 0 "C4111" V 8600 8400 50  0000 L CNN
+F 1 "100u" V 8750 8800 50  0000 L CNN
+F 2 "1206" V 8550 8350 60  0001 C CNN
+       1    8700 8600
        0    -1   1    0   
 $EndComp
 NoConn ~ 8850 3450
@@ -1634,152 +1955,152 @@
 $Comp
 L IO_3V3 #PWR0231
 U 1 1 4A3EB69F
-P 9150 9750
-F 0 "#PWR0231" H 9150 9650 50  0001 C CNN
-F 1 "IO_3V3" H 9150 9900 50  0000 C CNN
-       1    9150 9750
+P 8300 9800
+F 0 "#PWR0231" H 8300 9700 50  0001 C CNN
+F 1 "IO_3V3" H 8300 9950 50  0000 C CNN
+       1    8300 9800
        1    0    0    -1  
 $EndComp
 $Comp
 L DVCC_CODEC #PWR0232
 U 1 1 4A3EB691
-P 7750 9800
-F 0 "#PWR0232" H 7750 9700 50  0001 C CNN
-F 1 "DVCC_CODEC" H 7750 9950 50  0000 C CNN
-       1    7750 9800
+P 6900 9850
+F 0 "#PWR0232" H 6900 9750 50  0001 C CNN
+F 1 "DVCC_CODEC" H 6900 10000 50  0000 C CNN
+       1    6900 9850
        1    0    0    -1  
 $EndComp
 $Comp
 L GND #PWR0233
 U 1 1 4A3EB669
-P 7750 10800
-F 0 "#PWR0233" H 7750 10800 30  0001 C CNN
-F 1 "GND" H 7750 10730 30  0001 C CNN
-       1    7750 10800
+P 6900 10850
+F 0 "#PWR0233" H 6900 10850 30  0001 C CNN
+F 1 "GND" H 6900 10780 30  0001 C CNN
+       1    6900 10850
        1    0    0    -1  
 $EndComp
 $Comp
 L GND #PWR0234
 U 1 1 4A3EB668
-P 8150 10800
-F 0 "#PWR0234" H 8150 10800 30  0001 C CNN
-F 1 "GND" H 8150 10730 30  0001 C CNN
-       1    8150 10800
+P 7300 10850
+F 0 "#PWR0234" H 7300 10850 30  0001 C CNN
+F 1 "GND" H 7300 10780 30  0001 C CNN
+       1    7300 10850
        1    0    0    -1  
 $EndComp
 $Comp
 L INDUCTOR B3002
 U 1 1 4A3EB666
-P 8650 10000
-F 0 "B3002" V 8600 10000 40  0000 C CNN
-F 1 "KLB0603K601SA" V 8750 10000 40  0000 C CNN
-F 2 "0603" V 8560 9960 60  0001 C CNN
-       1    8650 10000
+P 7800 10050
+F 0 "B3002" V 7750 10050 40  0000 C CNN
+F 1 "KLB0603K601SA" V 7900 10050 40  0000 C CNN
+F 2 "0603" V 7710 10010 60  0001 C CNN
+       1    7800 10050
        0    -1   1    0   
 $EndComp
 $Comp
 L C C3004
 U 1 1 4A3EB665
-P 7750 10400
-F 0 "C3004" H 7800 10500 50  0000 L CNN
-F 1 "10u" H 7800 10300 50  0000 L CNN
-F 2 "0805" H 7850 10550 60  0001 C CNN
-       1    7750 10400
+P 6900 10450
+F 0 "C3004" H 6950 10550 50  0000 L CNN
+F 1 "10u" H 6950 10350 50  0000 L CNN
+F 2 "0805" H 7000 10600 60  0001 C CNN
+       1    6900 10450
        1    0    0    -1  
 $EndComp
 $Comp
 L C C3003
 U 1 1 4A3EB664
-P 8150 10400
-F 0 "C3003" H 8200 10500 50  0000 L CNN
-F 1 "100n" H 8200 10300 50  0000 L CNN
-F 2 "0402" H 8250 10550 60  0001 C CNN
-       1    8150 10400
+P 7300 10450
+F 0 "C3003" H 7350 10550 50  0000 L CNN
+F 1 "100n" H 7350 10350 50  0000 L CNN
+F 2 "0402" H 7400 10600 60  0001 C CNN
+       1    7300 10450
        1    0    0    -1  
 $EndComp
 $Comp
 L GND #PWR0235
 U 1 1 4A3EB47C
-P 5350 10800
-F 0 "#PWR0235" H 5350 10800 30  0001 C CNN
-F 1 "GND" H 5350 10730 30  0001 C CNN
-       1    5350 10800
+P 4600 10850
+F 0 "#PWR0235" H 4600 10850 30  0001 C CNN
+F 1 "GND" H 4600 10780 30  0001 C CNN
+       1    4600 10850
        1    0    0    -1  
 $EndComp
 $Comp
 L GND #PWR0236
 U 1 1 4A3EB477
-P 5750 10800
-F 0 "#PWR0236" H 5750 10800 30  0001 C CNN
-F 1 "GND" H 5750 10730 30  0001 C CNN
-       1    5750 10800
+P 5000 10850
+F 0 "#PWR0236" H 5000 10850 30  0001 C CNN
+F 1 "GND" H 5000 10780 30  0001 C CNN
+       1    5000 10850
        1    0    0    -1  
 $EndComp
 $Comp
 L GND #PWR0237
 U 1 1 4A3EB472
-P 6750 10800
-F 0 "#PWR0237" H 6750 10800 30  0001 C CNN
-F 1 "GND" H 6750 10730 30  0001 C CNN
-       1    6750 10800
+P 6000 10850
+F 0 "#PWR0237" H 6000 10850 30  0001 C CNN
+F 1 "GND" H 6000 10780 30  0001 C CNN
+       1    6000 10850
        1    0    0    -1  
 $EndComp
 $Comp
 L INDUCTOR B3001
 U 1 1 4A3EB407
-P 6250 10000
-F 0 "B3001" V 6200 10000 40  0000 C CNN
-F 1 "KLB0603K601SA" V 6350 10000 40  0000 C CNN
-F 2 "0603" V 6160 9960 60  0001 C CNN
-       1    6250 10000
+P 5500 10050
+F 0 "B3001" V 5450 10050 40  0000 C CNN
+F 1 "KLB0603K601SA" V 5600 10050 40  0000 C CNN
+F 2 "0603" V 5410 10010 60  0001 C CNN
+       1    5500 10050
        0    1    1    0   
 $EndComp
 $Comp
 L C C3001
 U 1 1 4A3EB3EF
-P 5350 10400
-F 0 "C3001" H 5400 10500 50  0000 L CNN
-F 1 "10u" H 5400 10300 50  0000 L CNN
-F 2 "0805" H 5450 10550 60  0001 C CNN
-       1    5350 10400
+P 4600 10450
+F 0 "C3001" H 4650 10550 50  0000 L CNN
+F 1 "10u" H 4650 10350 50  0000 L CNN
+F 2 "0805" H 4700 10600 60  0001 C CNN
+       1    4600 10450
        1    0    0    -1  
 $EndComp
 $Comp
 L C C3002
 U 1 1 4A3EB3E9
-P 5750 10400
-F 0 "C3002" H 5800 10500 50  0000 L CNN
-F 1 "100n" H 5800 10300 50  0000 L CNN
-F 2 "0402" H 5850 10550 60  0001 C CNN
-       1    5750 10400
+P 5000 10450
+F 0 "C3002" H 5050 10550 50  0000 L CNN
+F 1 "100n" H 5050 10350 50  0000 L CNN
+F 2 "0402" H 5100 10600 60  0001 C CNN
+       1    5000 10450
        1    0    0    -1  
 $EndComp
 $Comp
 L C C3005
 U 1 1 4A3EB3DE
-P 6750 10400
-F 0 "C3005" H 6800 10500 50  0000 L CNN
-F 1 "10u" H 6800 10300 50  0000 L CNN
-F 2 "0805" H 6850 10550 60  0001 C CNN
-       1    6750 10400
+P 6000 10450
+F 0 "C3005" H 6050 10550 50  0000 L CNN
+F 1 "10u" H 6050 10350 50  0000 L CNN
+F 2 "0805" H 6100 10600 60  0001 C CNN
+       1    6000 10450
        1    0    0    -1  
 $EndComp
 $Comp
 L CODEC_3V3 #PWR0238
 U 1 1 4A3EB3C0
-P 6750 9800
-F 0 "#PWR0238" H 6750 9700 50  0001 C CNN
-F 1 "CODEC_3V3" H 6750 9950 50  0000 C CNN
-       1    6750 9800
+P 6000 9850
+F 0 "#PWR0238" H 6000 9750 50  0001 C CNN
+F 1 "CODEC_3V3" H 6000 10000 50  0000 C CNN
+       1    6000 9850
        1    0    0    -1  
 $EndComp
 $Comp
 L AVCC_CODEC #PWR0239
 U 1 1 4A3EB3AC
-P 5350 9800
-F 0 "#PWR0239" H 5350 9700 50  0001 C CNN
-F 1 "AVCC_CODEC" H 5350 9950 50  0000 C CNN
-       1    5350 9800
+P 4600 9850
+F 0 "#PWR0239" H 4600 9750 50  0001 C CNN
+F 1 "AVCC_CODEC" H 4600 10000 50  0000 C CNN
+       1    4600 9850
        1    0    0    -1  
 $EndComp
 $Comp

Modified: trunk/gta02-core/docs/ecn/ecn0032.txt
===================================================================
--- trunk/gta02-core/docs/ecn/ecn0032.txt       2009-08-30 20:17:03 UTC (rev 
5587)
+++ trunk/gta02-core/docs/ecn/ecn0032.txt       2009-08-30 22:18:10 UTC (rev 
5588)
@@ -17,7 +17,7 @@
 - add Pi-filter to all signal lines of the headset jack 
   (see ecn0032/pi-filter.png)
   C1=47pF C2=47pF B=BLM15HD102SN1 1R25(DC) 
-  possible references C4408-C4415, B4415-B4419
+  possible references C4408-C4415, B4416-B4419
 - remove 22pF capacitors C4403/4404/4405
 - remove common mode choke B4102 
 




--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to