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. r5258 - trunk/gta02-core/kicad-patches (wer...@docs.openmoko.org)
   2. r5259 - trunk/gta02-core/docs/ecn (wer...@docs.openmoko.org)
   3. r5260 - trunk/gta02-core (da...@docs.openmoko.org)
--- Begin Message ---
Author: werner
Date: 2009-06-30 06:15:01 +0200 (Tue, 30 Jun 2009)
New Revision: 5258

Added:
   trunk/gta02-core/kicad-patches/make-junctions-larger-in-plots.patch
Removed:
   trunk/gta02-core/kicad-patches/fix-r1837-build.patch
Modified:
   trunk/gta02-core/kicad-patches/series
Log:
r1837 build failures were a local problem. Updated junction size fix for
r1846.



Deleted: trunk/gta02-core/kicad-patches/fix-r1837-build.patch
===================================================================
--- trunk/gta02-core/kicad-patches/fix-r1837-build.patch        2009-06-30 
01:21:13 UTC (rev 5257)
+++ trunk/gta02-core/kicad-patches/fix-r1837-build.patch        2009-06-30 
04:15:01 UTC (rev 5258)
@@ -1,45 +0,0 @@
-This fixes a number of build issues in r1837:
-
-- LibDrawPin now needs the parent to be passed
-- type inconsistency for g_PlotScaleX and g_PlotScaleY between declaration and
-  definition
-- g_DrawDefaultLineThickness vanished
-
----
-
-Index: kicad/eeschema/pinedit.cpp
-===================================================================
---- kicad.orig/eeschema/pinedit.cpp    2009-06-25 05:36:52.000000000 -0300
-+++ kicad/eeschema/pinedit.cpp 2009-06-25 05:36:52.000000000 -0300
-@@ -557,7 +557,7 @@
-     for( ; DrawItem != NULL; DrawItem = DrawItem->Next() )
-         DrawItem->m_Flags = 0;
- 
--    CurrentPin = new LibDrawPin();
-+    CurrentPin = new LibDrawPin( CurrentLibEntry );
- 
-     CurrentDrawItem = CurrentPin;
-     if( CurrentPin == NULL )
-Index: kicad/eeschema/eeschema.cpp
-===================================================================
---- kicad.orig/eeschema/eeschema.cpp   2009-06-25 05:36:52.000000000 -0300
-+++ kicad/eeschema/eeschema.cpp        2009-06-25 05:37:28.000000000 -0300
-@@ -68,8 +68,8 @@
- 
- int       g_PlotFormat;                  /* flag = TYPE_HPGL, TYPE_PS... */
- int       g_PlotMargin;                  /* Marge pour traces du cartouche */
--float     g_PlotScaleX;
--float     g_PlotScaleY; /* coeff d'echelle de trace en unites table tracante 
*/
-+double    g_PlotScaleX;
-+double    g_PlotScaleY; /* coeff d'echelle de trace en unites table tracante 
*/
- 
- HPGL_Pen_Descr_Struct g_HPGL_Pen_Descr;
- 
-@@ -93,6 +93,7 @@
- bool g_EditPinByPinIsOn = FALSE;
- 
- int g_LibSymbolDefaultLineWidth; /* default line width  (in EESCHEMA units) 
used when creating a new graphic item in libedit : 0 = default */
-+int g_DrawDefaultLineThickness; /* Default line (in EESCHEMA units) thickness 
*/
- int g_DrawMinimunLineWidth;      /* Minimum line (in EESCHEMA units) 
thickness used to draw items on screen; 0 = single pixel line width */
- int g_PlotLine_Width;            /* Minimum line (in EESCHEMA units) 
thickness used to Plot/Print items */
- // Color to draw selected items

Added: trunk/gta02-core/kicad-patches/make-junctions-larger-in-plots.patch
===================================================================
--- trunk/gta02-core/kicad-patches/make-junctions-larger-in-plots.patch         
                (rev 0)
+++ trunk/gta02-core/kicad-patches/make-junctions-larger-in-plots.patch 
2009-06-30 04:15:01 UTC (rev 5258)
@@ -0,0 +1,20 @@
+plotter->circle expects the diameter, but DRAWJUNCTION_SIZE is just the
+radius. This fix is originally by Alvaro Lopes <alvie...@alvie.com>
+
+- Werner
+
+---
+
+Index: kicad/eeschema/plot.cpp
+===================================================================
+--- kicad.orig/eeschema/plot.cpp       2009-06-29 23:14:22.000000000 -0300
++++ kicad/eeschema/plot.cpp    2009-06-29 23:14:47.000000000 -0300
+@@ -761,7 +761,7 @@
+                 #undef STRUCT
+                 #define STRUCT ( (DrawJunctionStruct*) drawlist )
+             plotter->set_color( ReturnLayerColor( STRUCT->GetLayer() ) );
+-            plotter->circle( STRUCT->m_Pos, DRAWJUNCTION_SIZE, FILLED_SHAPE );
++            plotter->circle( STRUCT->m_Pos, DRAWJUNCTION_SIZE*2, FILLED_SHAPE 
);
+             break;
+ 
+         case TYPE_SCH_TEXT:

Modified: trunk/gta02-core/kicad-patches/series
===================================================================
--- trunk/gta02-core/kicad-patches/series       2009-06-30 01:21:13 UTC (rev 
5257)
+++ trunk/gta02-core/kicad-patches/series       2009-06-30 04:15:01 UTC (rev 
5258)
@@ -17,10 +17,6 @@
 #drag-override.patch
 #pcbnew-plot-only-mode.patch
 
+# updated for r1846
+#make-junctions-larger-in-plots.patch
 make-junctions-larger-on-plotps.patch
-
-# applied as of r1836
-##fix-eeschema-libs.patch
-
-# r1837 has a bewildering number of build issues. tentative fix.
-fix-r1837-build.patch




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-06-30 07:18:14 +0200 (Tue, 30 Jun 2009)
New Revision: 5259

Modified:
   trunk/gta02-core/docs/ecn/ecn0016.txt
Log:
Added reference to discussion of acceleration sensor selection to ECN0016.



Modified: trunk/gta02-core/docs/ecn/ecn0016.txt
===================================================================
--- trunk/gta02-core/docs/ecn/ecn0016.txt       2009-06-30 04:15:01 UTC (rev 
5258)
+++ trunk/gta02-core/docs/ecn/ecn0016.txt       2009-06-30 05:18:14 UTC (rev 
5259)
@@ -19,4 +19,5 @@
 
 To do:
 - why the upper ?
+  http://lists.openmoko.org/pipermail/devel/2009-June/005758.html
 - connect both interrupts (motivation)




--- End Message ---
--- Begin Message ---
Author: daveb
Date: 2009-06-30 11:32:19 +0200 (Tue, 30 Jun 2009)
New Revision: 5260

Modified:
   trunk/gta02-core/io.sch
Log:
replace HLabels with GLabels, improve readability of some test points and Debug 
symbol text


Modified: trunk/gta02-core/io.sch
===================================================================
--- trunk/gta02-core/io.sch     2009-06-30 05:18:14 UTC (rev 5259)
+++ trunk/gta02-core/io.sch     2009-06-30 09:32:19 UTC (rev 5260)
@@ -1,6 +1,6 @@
-EESchema Schematic File Version 1
-LIBS:power,device,conn,linear,regul,74xx,cmos4000,adc-dac,memory,xilinx,special,microcontrollers,dsp,microchip,analog_switches,motorola,texas,intel,audio,interface,digital-audio,philips,display,cypress,siliconi,contrib,valves,./io.cache
-EELAYER 23  0
+EESchema Schematic File Version 2  date Tue 30 Jun 2009 10:30:48 BST
+LIBS:power,device,conn,gta02-core,gta02-core-cache
+EELAYER 24  0
 EELAYER END
 $Descr A3 16535 11700
 Sheet 7 11
@@ -13,6 +13,14 @@
 Comment3 ""
 Comment4 ""
 $EndDescr
+Wire Wire Line
+       12550 7050 12750 7050
+Connection ~ 12750 6850
+Wire Wire Line
+       12750 7050 12750 6850
+Connection ~ 14050 9550
+Wire Wire Line
+       14050 9350 14050 9550
 Connection ~ 13350 2350
 Wire Wire Line
        13350 2350 13350 2200
@@ -29,28 +37,18 @@
 Wire Wire Line
        4250 8050 4250 8350
 Wire Wire Line
-       5200 8350 4250 8350
+       3650 8350 5200 8350
 Wire Wire Line
-       4250 8350 3650 8350
+       5200 8550 3650 8550
 Wire Wire Line
-       3650 8550 5000 8550
-Wire Wire Line
-       5000 8550 5200 8550
-Wire Wire Line
        3650 9050 3850 9050
 Wire Wire Line
        3650 9350 3850 9350
 Wire Wire Line
        4000 2650 3750 2650
 Wire Wire Line
-       14350 2450 14150 2450
+       12850 2450 14350 2450
 Wire Wire Line
-       14150 2450 13950 2450
-Wire Wire Line
-       13950 2450 12850 2450
-Wire Wire Line
-       12850 2450 12850 2450
-Wire Wire Line
        13950 7600 13950 8450
 Wire Wire Line
        13150 7600 13150 8050
@@ -62,9 +60,7 @@
 Wire Wire Line
        13650 6850 13650 6700
 Wire Wire Line
-       14250 6850 13650 6850
-Wire Wire Line
-       13650 6850 12450 6850
+       12450 6850 14250 6850
 Connection ~ 13750 8350
 Wire Wire Line
        13750 7700 13750 8350
@@ -75,33 +71,19 @@
 Wire Wire Line
        12950 7700 12950 7950
 Wire Wire Line
-       12450 8450 13950 8450
+       14250 8450 12450 8450
 Wire Wire Line
-       13950 8450 14250 8450
+       12450 9950 15800 9950
 Wire Wire Line
-       12450 9950 14050 9950
+       12450 7850 14250 7850
 Wire Wire Line
-       14050 9950 14500 9950
+       12450 7950 14250 7950
 Wire Wire Line
-       14500 9950 15800 9950
-Wire Wire Line
-       14250 7850 12750 7850
-Wire Wire Line
-       12750 7850 12450 7850
-Wire Wire Line
-       14250 7950 12950 7950
-Wire Wire Line
-       12950 7950 12450 7950
-Wire Wire Line
-       14250 8250 13550 8250
-Wire Wire Line
-       13550 8250 12450 8250
-Connection ~ 13900 9650
-Wire Wire Line
-       13700 9650 13900 9650
+       12450 8250 14250 8250
+Connection ~ 13850 9550
 Connection ~ 14050 9950
 Wire Wire Line
-       13000 9550 13000 9650
+       12950 9450 12950 9550
 Wire Wire Line
        14050 9950 14050 9650
 Wire Wire Line
@@ -116,9 +98,7 @@
 Wire Wire Line
        3900 4750 3900 4850
 Wire Wire Line
-       3900 4850 5300 4850
-Wire Wire Line
-       5300 4850 6250 4850
+       3900 4850 6250 4850
 Connection ~ 13950 2450
 Wire Wire Line
        13950 2450 13950 2650
@@ -145,20 +125,8 @@
 Wire Wire Line
        9150 5700 9150 6100
 Wire Wire Line
-       9150 6100 8650 6100
+       9150 6100 7400 6100
 Wire Wire Line
-       8650 6100 7950 6100
-Wire Wire Line
-       7950 6100 7700 6100
-Wire Wire Line
-       7700 6100 7650 6100
-Wire Wire Line
-       7650 6100 7600 6100
-Wire Wire Line
-       7600 6100 7500 6100
-Wire Wire Line
-       7500 6100 7400 6100
-Wire Wire Line
        8650 5300 8650 5000
 Connection ~ 7700 6100
 Wire Wire Line
@@ -173,14 +141,10 @@
 Wire Wire Line
        4950 5550 4950 5050
 Wire Wire Line
-       4950 5050 6000 5050
+       4950 5050 6250 5050
 Wire Wire Line
-       6000 5050 6250 5050
+       6250 4950 4850 4950
 Wire Wire Line
-       6250 4950 5650 4950
-Wire Wire Line
-       5650 4950 4850 4950
-Wire Wire Line
        6250 5350 3700 5350
 Wire Wire Line
        7400 6100 7400 5900
@@ -193,9 +157,7 @@
        7650 6100 7650 6300
 Connection ~ 7650 6100
 Wire Wire Line
-       9150 5000 8650 5000
-Wire Wire Line
-       8650 5000 8450 5000
+       8450 5000 9150 5000
 Connection ~ 8650 5000
 Wire Wire Line
        8650 6100 8650 5700
@@ -204,11 +166,7 @@
 Wire Wire Line
        9150 4800 8450 4800
 Wire Wire Line
-       9150 4600 9150 4900
-Wire Wire Line
-       9150 4900 9150 5000
-Wire Wire Line
-       9150 5000 9150 5300
+       9150 5300 9150 4600
 Connection ~ 9150 4900
 Wire Wire Line
        9150 3950 9150 4100
@@ -216,15 +174,11 @@
        5650 4600 5650 4950
 Connection ~ 5650 4950
 Wire Wire Line
-       5300 3900 5650 3900
+       5300 3900 6000 3900
 Wire Wire Line
-       5650 3900 6000 3900
-Wire Wire Line
        6000 3900 6000 4100
 Wire Wire Line
-       5300 3750 5300 3900
-Wire Wire Line
-       5300 3900 5300 4100
+       5300 4100 5300 3750
 Connection ~ 5300 3900
 Wire Wire Line
        4850 4950 4850 3950
@@ -233,23 +187,15 @@
 Wire Wire Line
        6250 5450 3700 5450
 Wire Wire Line
-       12850 2700 12850 2450
-Wire Wire Line
        13550 2350 13550 2650
 Wire Wire Line
        12400 3200 12400 3450
 Wire Wire Line
-       12400 3450 12850 3450
+       12400 3450 13950 3450
 Wire Wire Line
-       12850 3450 13050 3450
-Wire Wire Line
-       13050 3450 13550 3450
-Wire Wire Line
-       13550 3450 13950 3450
-Wire Wire Line
        13950 3450 13950 3150
 Wire Wire Line
-       12850 3100 12850 3450
+       12850 3450 12850 3100
 Connection ~ 12850 3450
 Wire Wire Line
        13050 3450 13050 3650
@@ -263,31 +209,17 @@
 Wire Wire Line
        14350 5300 14350 5500
 Wire Wire Line
-       14250 9550 13900 9550
-Wire Wire Line
-       13900 9550 13900 9650
-Wire Wire Line
-       13900 9650 13900 9800
-Wire Wire Line
        15800 9950 15800 9600
 Wire Wire Line
        15800 9100 15800 9000
 Wire Wire Line
-       13000 9650 13200 9650
+       12950 9550 13150 9550
 Wire Wire Line
-       12450 8050 13150 8050
+       14250 8050 12450 8050
 Wire Wire Line
-       13150 8050 14250 8050
+       14250 8150 12450 8150
 Wire Wire Line
-       12450 8150 13350 8150
-Wire Wire Line
-       13350 8150 14250 8150
-Wire Wire Line
-       13900 9800 12450 9800
-Wire Wire Line
-       12450 8350 13750 8350
-Wire Wire Line
-       13750 8350 14250 8350
+       14250 8350 12450 8350
 Connection ~ 12750 7850
 Connection ~ 13150 8050
 Connection ~ 13550 8250
@@ -299,32 +231,18 @@
 Wire Wire Line
        12950 5800 12950 6050
 Wire Wire Line
-       12450 6550 13950 6550
+       14250 6550 12450 6550
 Wire Wire Line
-       13950 6550 14250 6550
+       12450 5950 14250 5950
 Wire Wire Line
-       14250 5950 12750 5950
+       12450 6050 14250 6050
 Wire Wire Line
-       12750 5950 12450 5950
+       12450 6350 14250 6350
 Wire Wire Line
-       14250 6050 12950 6050
+       14250 6150 12450 6150
 Wire Wire Line
-       12950 6050 12750 6050
+       14250 6250 12450 6250
 Wire Wire Line
-       12750 6050 12450 6050
-Wire Wire Line
-       14250 6350 13550 6350
-Wire Wire Line
-       13550 6350 12450 6350
-Wire Wire Line
-       12450 6150 13150 6150
-Wire Wire Line
-       13150 6150 14250 6150
-Wire Wire Line
-       12450 6250 13350 6250
-Wire Wire Line
-       13350 6250 14250 6250
-Wire Wire Line
        14250 6450 12450 6450
 Connection ~ 12750 5950
 Connection ~ 13150 6150
@@ -348,14 +266,10 @@
 Wire Wire Line
        14150 5850 14250 5850
 Wire Wire Line
-       12400 2350 13350 2350
-Wire Wire Line
-       13350 2350 13550 2350
-Wire Wire Line
-       13550 2350 14350 2350
+       12400 2350 14350 2350
 Connection ~ 13550 2350
 Wire Wire Line
-       12850 2450 12850 2100
+       12850 2100 12850 2700
 Connection ~ 13550 2350
 Wire Wire Line
        3750 2550 4000 2550
@@ -364,16 +278,10 @@
 Wire Wire Line
        3650 8950 3850 8950
 Wire Wire Line
-       6550 8450 6300 8450
+       3650 8450 6550 8450
 Wire Wire Line
-       6300 8450 4600 8450
+       5200 8250 3650 8250
 Wire Wire Line
-       4600 8450 3650 8450
-Wire Wire Line
-       3650 8250 3900 8250
-Wire Wire Line
-       3900 8250 5200 8250
-Wire Wire Line
        3900 8050 3900 8250
 Connection ~ 3900 8250
 Wire Wire Line
@@ -388,12 +296,20 @@
 Wire Wire Line
        14150 2200 14150 2450
 Connection ~ 14150 2450
+Wire Wire Line
+       14250 9550 13650 9550
+Wire Wire Line
+       13850 9550 13850 9800
+Wire Wire Line
+       13850 9800 12450 9800
+Text GLabel 12450 5950 0    60   Input ~ 0
+STDI
 $Comp
 L IO_3V3 #PWR?
 U 1 1 4A47AEEA
 P 6300 7550
-F 0 "#PWR?" H 6300 7450 50  0001 C C
-F 1 "IO_3V3" H 6300 7700 50  0000 C C
+F 0 "#PWR?" H 6300 7450 50  0001 C CNN
+F 1 "IO_3V3" H 6300 7700 50  0000 C CNN
        1    6300 7550
        1    0    0    -1  
 $EndComp
@@ -401,8 +317,8 @@
 L R_US R1519
 U 1 1 4A47AEC6
 P 6300 8000
-F 0 "R1519" H 6300 8100 50  0000 C C
-F 1 "NC" H 6300 7900 50  0000 C C
+F 0 "R1519" H 6300 8100 50  0000 C CNN
+F 1 "NC" H 6300 7900 50  0000 C CNN
        1    6300 8000
        0    1    1    0   
 $EndComp
@@ -410,8 +326,8 @@
 L TST TP1511
 U 1 1 4A47AD1B
 P 5000 8050
-F 0 "TP1511" H 5000 8350 40  0000 C C
-F 1 "TST" H 5000 8300 30  0001 C C
+F 0 "TP1511" H 5000 8350 40  0000 C CNN
+F 1 "TST" H 5000 8300 30  0001 C CNN
        1    5000 8050
        1    0    0    -1  
 $EndComp
@@ -419,8 +335,8 @@
 L TST TP1510
 U 1 1 4A47AD16
 P 4600 8050
-F 0 "TP1510" H 4600 8350 40  0000 C C
-F 1 "TST" H 4600 8300 30  0001 C C
+F 0 "TP1510" H 4600 8350 40  0000 C CNN
+F 1 "TST" H 4600 8300 30  0001 C CNN
        1    4600 8050
        1    0    0    -1  
 $EndComp
@@ -428,8 +344,8 @@
 L TST TP1530
 U 1 1 4A47AD0E
 P 4250 8050
-F 0 "TP1530" H 4250 8350 40  0000 C C
-F 1 "TST" H 4250 8300 30  0001 C C
+F 0 "TP1530" H 4250 8350 40  0000 C CNN
+F 1 "TST" H 4250 8300 30  0001 C CNN
        1    4250 8050
        1    0    0    -1  
 $EndComp
@@ -437,31 +353,31 @@
 L TST TP1531
 U 1 1 4A47AD04
 P 3900 8050
-F 0 "TP1531" H 3900 8350 40  0000 C C
-F 1 "TST" H 3900 8300 30  0001 C C
+F 0 "TP1531" H 3900 8350 40  0000 C CNN
+F 1 "TST" H 3900 8300 30  0001 C CNN
        1    3900 8050
        1    0    0    -1  
 $EndComp
 NoConn ~ 3650 9550
-Text GLabel 5200 8250 2    60   Output
+Text GLabel 5200 8250 2    60   Output ~ 0
 CTS_MODEM
-Text GLabel 5200 8350 2    60   Input
+Text GLabel 5200 8350 2    60   Input ~ 0
 RTS_MODEM
-Text GLabel 6550 8450 2    60   Output
+Text GLabel 6550 8450 2    60   Output ~ 0
 TX_MODEM
-Text GLabel 5200 8550 2    60   Input
+Text GLabel 5200 8550 2    60   Input ~ 0
 RX_MODEM
-Text GLabel 3850 9050 2    60   Input
+Text GLabel 3850 9050 2    60   Input ~ 0
 GPS_RX_M
-Text GLabel 3850 8950 2    60   Output
+Text GLabel 3850 8950 2    60   Output ~ 0
 GPS_TX_M
-Text GLabel 3850 9250 2    60   Output
+Text GLabel 3850 9250 2    60   Output ~ 0
 CONSOLE_TXD
-Text GLabel 3850 9350 2    60   Input
+Text GLabel 3850 9350 2    60   Input ~ 0
 CONSOLE_RXD
-Text GLabel 4000 2650 2    60   BiDi
+Text GLabel 4000 2650 2    60   BiDi ~ 0
 X_I2C_SDA
-Text GLabel 4000 2550 2    60   Output
+Text GLabel 4000 2550 2    60   Output ~ 0
 X_I2C_SCL
 NoConn ~ 14250 9450
 NoConn ~ 14250 9350
@@ -487,43 +403,41 @@
 $Comp
 L TST TP4712
 U 1 1 4A479DF7
-P 12750 6850
-F 0 "TP4712" H 12750 7150 40  0000 C C
-F 1 "TST" H 12750 7100 30  0001 C C
-       1    12750 6850
-       -1   0    0    1   
+P 12550 7050
+F 0 "TP4712" H 12550 7350 40  0000 C CNN
+F 1 "TST" H 12550 7300 30  0001 C CNN
+       1    12550 7050
+       0    -1   -1   0   
 $EndComp
 $Comp
 L R_US R4703
 U 1 1 4A479DDC
 P 13200 6700
-F 0 "R4703" H 13200 6800 50  0000 C C
-F 1 "NC" H 13200 6600 50  0000 C C
+F 0 "R4703" H 13200 6800 50  0000 C CNN
+F 1 "NC" H 13200 6600 50  0000 C CNN
        1    13200 6700
        1    0    0    -1  
 $EndComp
-Text GLabel 12450 6850 0    60   Input
+Text GLabel 12450 6850 0    60   Input ~ 0
 nSTRST
-Text GLabel 12450 6550 0    60   Input
+Text GLabel 12450 6550 0    60   Input ~ 0
 nNOR_WP
-Text GLabel 12450 6450 0    60   Input
+Text GLabel 12450 6450 0    60   Input ~ 0
 nGSM_EN
-Text GLabel 12450 6350 0    60   Input
+Text GLabel 12450 6350 0    60   Input ~ 0
 STD0
-Text GLabel 12450 6250 0    60   Input
+Text GLabel 12450 6250 0    60   Input ~ 0
 STCK
-Text GLabel 12450 6150 0    60   Input
+Text GLabel 12450 6150 0    60   Input ~ 0
 STMS
-Text GLabel 12450 6050 0    60   Input
+Text GLabel 12450 6050 0    60   Input ~ 0
 nRESET
-Text GLabel 12450 5950 0    60   Input
-STDI
 $Comp
 L TST TP4706
 U 1 1 4A479D4B
 P 12750 5700
-F 0 "TP4706" H 12750 6000 40  0000 C C
-F 1 "TST" H 12750 5950 30  0001 C C
+F 0 "TP4706" H 12750 6000 40  0000 C CNN
+F 1 "TST" H 12750 5950 30  0001 C CNN
        1    12750 5700
        1    0    0    -1  
 $EndComp
@@ -531,8 +445,8 @@
 L TST TP4710
 U 1 1 4A479D4A
 P 13550 5700
-F 0 "TP4710" H 13550 6000 40  0000 C C
-F 1 "TST" H 13550 5950 30  0001 C C
+F 0 "TP4710" H 13550 6000 40  0000 C CNN
+F 1 "TST" H 13550 5950 30  0001 C CNN
        1    13550 5700
        1    0    0    -1  
 $EndComp
@@ -540,8 +454,8 @@
 L TST TP4709
 U 1 1 4A479D49
 P 13350 5800
-F 0 "TP4709" H 13350 6100 40  0000 C C
-F 1 "TST" H 13350 6050 30  0001 C C
+F 0 "TP4709" H 13350 6100 40  0000 C CNN
+F 1 "TST" H 13350 6050 30  0001 C CNN
        1    13350 5800
        1    0    0    -1  
 $EndComp
@@ -549,8 +463,8 @@
 L TST TP4708
 U 1 1 4A479D48
 P 13150 5700
-F 0 "TP4708" H 13150 6000 40  0000 C C
-F 1 "TST" H 13150 5950 30  0001 C C
+F 0 "TP4708" H 13150 6000 40  0000 C CNN
+F 1 "TST" H 13150 5950 30  0001 C CNN
        1    13150 5700
        1    0    0    -1  
 $EndComp
@@ -558,8 +472,8 @@
 L TST TP4707
 U 1 1 4A479D47
 P 12950 5800
-F 0 "TP4707" H 12950 6100 40  0000 C C
-F 1 "TST" H 12950 6050 30  0001 C C
+F 0 "TP4707" H 12950 6100 40  0000 C CNN
+F 1 "TST" H 12950 6050 30  0001 C CNN
        1    12950 5800
        1    0    0    -1  
 $EndComp
@@ -567,35 +481,35 @@
 L TST TP4711
 U 1 1 4A479D45
 P 13950 5700
-F 0 "TP4711" H 13950 6000 40  0000 C C
-F 1 "TST" H 13950 5950 30  0001 C C
+F 0 "TP4711" H 13950 6000 40  0000 C CNN
+F 1 "TST" H 13950 5950 30  0001 C CNN
        1    13950 5700
        1    0    0    -1  
 $EndComp
-Text GLabel 12450 9950 0    60   Output
+Text GLabel 12450 9950 0    60   Output ~ 0
 CONSOLE_RXD
-Text GLabel 12450 9800 0    60   Input
+Text GLabel 12450 9800 0    60   Input ~ 0
 CONSOLE_TXD
-Text GLabel 12450 8450 0    60   Input
+Text GLabel 12450 8450 0    60   Input ~ 0
 EINT3
-Text GLabel 12450 8350 0    60   Input
+Text GLabel 12450 8350 0    60   Input ~ 0
 SS0
-Text GLabel 12450 8250 0    60   Output
+Text GLabel 12450 8250 0    60   Output ~ 0
 SPI_MISO0
-Text GLabel 12450 8150 0    60   Input
+Text GLabel 12450 8150 0    60   Input ~ 0
 SPI_MOSI0
-Text GLabel 12450 8050 0    60   Input
+Text GLabel 12450 8050 0    60   Input ~ 0
 SPI_CLK0
-Text GLabel 12450 7950 0    60   BiDi
+Text GLabel 12450 7950 0    60   BiDi ~ 0
 X_I2C_SDA
-Text GLabel 12450 7850 0    60   Input
+Text GLabel 12450 7850 0    60   Input ~ 0
 X_I2C_SCL
 $Comp
 L TST TP4703
 U 1 1 4A4799F3
 P 12750 7600
-F 0 "TP4703" H 12750 7900 40  0000 C C
-F 1 "TST" H 12750 7850 30  0001 C C
+F 0 "TP4703" H 12750 7900 40  0000 C CNN
+F 1 "TST" H 12750 7850 30  0001 C CNN
        1    12750 7600
        1    0    0    -1  
 $EndComp
@@ -603,8 +517,8 @@
 L TST TP4717
 U 1 1 4A4799A2
 P 13550 7600
-F 0 "TP4717" H 13550 7900 40  0000 C C
-F 1 "TST" H 13550 7850 30  0001 C C
+F 0 "TP4717" H 13550 7900 40  0000 C CNN
+F 1 "TST" H 13550 7850 30  0001 C CNN
        1    13550 7600
        1    0    0    -1  
 $EndComp
@@ -612,8 +526,8 @@
 L TST TP4716
 U 1 1 4A47999F
 P 13350 7700
-F 0 "TP4716" H 13350 8000 40  0000 C C
-F 1 "TST" H 13350 7950 30  0001 C C
+F 0 "TP4716" H 13350 8000 40  0000 C CNN
+F 1 "TST" H 13350 7950 30  0001 C CNN
        1    13350 7700
        1    0    0    -1  
 $EndComp
@@ -621,8 +535,8 @@
 L TST TP4715
 U 1 1 4A47999D
 P 13150 7600
-F 0 "TP4715" H 13150 7900 40  0000 C C
-F 1 "TST" H 13150 7850 30  0001 C C
+F 0 "TP4715" H 13150 7900 40  0000 C CNN
+F 1 "TST" H 13150 7850 30  0001 C CNN
        1    13150 7600
        1    0    0    -1  
 $EndComp
@@ -630,8 +544,8 @@
 L TST TP4704
 U 1 1 4A479994
 P 12950 7700
-F 0 "TP4704" H 12950 8000 40  0000 C C
-F 1 "TST" H 12950 7950 30  0001 C C
+F 0 "TP4704" H 12950 8000 40  0000 C CNN
+F 1 "TST" H 12950 7950 30  0001 C CNN
        1    12950 7700
        1    0    0    -1  
 $EndComp
@@ -639,8 +553,8 @@
 L TST TP4718
 U 1 1 4A4797D4
 P 13750 7700
-F 0 "TP4718" H 13750 8000 40  0000 C C
-F 1 "TST" H 13750 7950 30  0001 C C
+F 0 "TP4718" H 13750 8000 40  0000 C CNN
+F 1 "TST" H 13750 7950 30  0001 C CNN
        1    13750 7700
        1    0    0    -1  
 $EndComp
@@ -648,8 +562,8 @@
 L TST TP4705
 U 1 1 4A4797BC
 P 13950 7600
-F 0 "TP4705" H 13950 7900 40  0000 C C
-F 1 "TST" H 13950 7850 30  0001 C C
+F 0 "TP4705" H 13950 7900 40  0000 C CNN
+F 1 "TST" H 13950 7850 30  0001 C CNN
        1    13950 7600
        1    0    0    -1  
 $EndComp
@@ -657,53 +571,53 @@
 L IO_3V3 #PWR?
 U 1 1 4A479794
 P 15800 9000
-F 0 "#PWR?" H 15800 8900 50  0001 C C
-F 1 "IO_3V3" H 15800 9150 50  0000 C C
+F 0 "#PWR?" H 15800 8900 50  0001 C CNN
+F 1 "IO_3V3" H 15800 9150 50  0000 C CNN
        1    15800 9000
        1    0    0    -1  
 $EndComp
 $Comp
 L IO_3V3 #PWR?
 U 1 1 4A479790
-P 13000 9550
-F 0 "#PWR?" H 13000 9450 50  0001 C C
-F 1 "IO_3V3" H 13000 9700 50  0000 C C
-       1    13000 9550
+P 12950 9450
+F 0 "#PWR?" H 12950 9350 50  0001 C CNN
+F 1 "IO_3V3" H 12950 9600 50  0000 C CNN
+       1    12950 9450
        1    0    0    -1  
 $EndComp
 $Comp
 L TST TP4714
 U 1 1 4A47976B
 P 14500 10150
-F 0 "TP4714" H 14500 10450 40  0000 C C
-F 1 "TST" H 14500 10400 30  0001 C C
+F 0 "TP4714" H 14500 10450 40  0000 C CNN
+F 1 "TST" H 14500 10400 30  0001 C CNN
        1    14500 10150
        -1   0    0    1   
 $EndComp
 $Comp
 L TST TP4713
 U 1 1 4A479767
-P 13900 9550
-F 0 "TP4713" H 13900 9850 40  0000 C C
-F 1 "TST" H 13900 9800 30  0001 C C
-       1    13900 9550
+P 14050 9350
+F 0 "TP4713" H 14050 9650 40  0000 C CNN
+F 1 "TST" H 14050 9600 30  0001 C CNN
+       1    14050 9350
        1    0    0    -1  
 $EndComp
 $Comp
 L R_US R4701
 U 1 1 4A47974B
-P 13450 9650
-F 0 "R4701" H 13450 9750 50  0000 C C
-F 1 "100K" H 13450 9550 50  0000 C C
-       1    13450 9650
+P 13400 9550
+F 0 "R4701" H 13400 9650 50  0000 C CNN
+F 1 "100K" H 13400 9450 50  0000 C CNN
+       1    13400 9550
        1    0    0    -1  
 $EndComp
 $Comp
 L R_US 100K
 U 1 1 4A479744
 P 15800 9350
-F 0 "100K" H 15800 9450 50  0000 C C
-F 1 "R4702" H 15800 9250 50  0000 C C
+F 0 "100K" H 15800 9450 50  0000 C CNN
+F 1 "R4702" H 15800 9250 50  0000 C CNN
        1    15800 9350
        0    1    1    0   
 $EndComp
@@ -711,8 +625,8 @@
 L SC32442 U1501
 U 14 1 4A4648C4
 P 1850 2450
-F 0 "U1501" H 1850 2350 50  0000 C C
-F 1 "SC32442" H 1850 2550 50  0000 C C
+F 0 "U1501" H 1850 2350 50  0000 C CNN
+F 1 "SC32442" H 1850 2550 50  0000 C CNN
        14   1850 2450
        1    0    0    -1  
 $EndComp
@@ -720,8 +634,8 @@
 L SC32442 U1501
 U 5 1 4A464889
 P 1750 8750
-F 0 "U1501" H 1750 8650 50  0000 C C
-F 1 "SC32442" H 1750 8850 50  0000 C C
+F 0 "U1501" H 1750 8650 50  0000 C CNN
+F 1 "SC32442" H 1750 8850 50  0000 C CNN
        5    1750 8750
        1    0    0    -1  
 $EndComp
@@ -729,8 +643,8 @@
 L GND #PWR?
 U 1 1 4A464857
 P 14350 5500
-F 0 "#PWR?" H 14350 5500 30  0001 C C
-F 1 "GND" H 14350 5430 30  0001 C C
+F 0 "#PWR?" H 14350 5500 30  0001 C CNN
+F 1 "GND" H 14350 5430 30  0001 C CNN
        1    14350 5500
        1    0    0    -1  
 $EndComp
@@ -738,18 +652,18 @@
 L DEBUG CON4702
 U 1 1 4A4647BE
 P 14750 7750
-F 0 "CON4702" H 14850 7850 60  0000 C C
-F 1 "FH23-39S" H 14850 7650 60  0000 C C
+F 0 "CON4702" H 14750 9800 60  0000 C CNN
+F 1 "FH23-39S" H 14750 5700 60  0000 C CNN
        1    14750 7750
        1    0    0    -1  
 $EndComp
-Text GLabel 4300 6250 2    60   Input
+Text GLabel 4300 6250 2    60   Input ~ 0
 NAND_BUS_WIDTH
-Text GLabel 4300 6150 2    60   Input
+Text GLabel 4300 6150 2    60   Input ~ 0
 NAND_ADDR_CYCLE
-Text GLabel 4300 6050 2    60   Input
+Text GLabel 4300 6050 2    60   Input ~ 0
 NAND_PAGE_SIZE
-Text GLabel 11600 2850 0    60   Input
+Text GLabel 11600 2850 0    60   Input ~ 0
 VIBRATOR_ON
 NoConn ~ 3700 5950
 NoConn ~ 3700 5850
@@ -766,14 +680,14 @@
 NoConn ~ 3700 4250
 NoConn ~ 3700 4150
 NoConn ~ 3700 4050
-Text Notes 1700 1700 0    200  ~
+Text Notes 1700 1700 0    200  ~ 40
 I/O
 $Comp
 L GND #PWR?
 U 1 1 4A4308D5
 P 13050 3650
-F 0 "#PWR?" H 13050 3650 30  0001 C C
-F 1 "GND" H 13050 3580 30  0001 C C
+F 0 "#PWR?" H 13050 3650 30  0001 C CNN
+F 1 "GND" H 13050 3580 30  0001 C CNN
        1    13050 3650
        1    0    0    -1  
 $EndComp
@@ -781,8 +695,8 @@
 L VB #PWR?
 U 1 1 4A430837
 P 12850 2100
-F 0 "#PWR?" H 12850 2000 50  0001 C C
-F 1 "VB" H 12850 2250 50  0000 C C
+F 0 "#PWR?" H 12850 2000 50  0001 C CNN
+F 1 "VB" H 12850 2250 50  0000 C CNN
        1    12850 2100
        1    0    0    -1  
 $EndComp
@@ -790,8 +704,8 @@
 L KEV040209151A D4602
 U 1 1 4A4307AE
 P 13950 2900
-F 0 "D4602" H 13950 3000 60  0000 C C
-F 1 "6.5Vac, 151pF" H 13950 2800 60  0000 C C
+F 0 "D4602" H 13950 3000 60  0000 C CNN
+F 1 "6.5Vac, 151pF" H 13950 2800 60  0000 C CNN
        1    13950 2900
        0    -1   -1   0   
 $EndComp
@@ -799,8 +713,8 @@
 L C C4601
 U 1 1 4A430741
 P 12850 2900
-F 0 "C4601" H 12900 3000 50  0000 L C
-F 1 "10p" H 12900 2800 50  0000 L C
+F 0 "C4601" H 12900 3000 50  0000 L CNN
+F 1 "10p" H 12900 2800 50  0000 L CNN
        1    12850 2900
        1    0    0    -1  
 $EndComp
@@ -808,8 +722,8 @@
 L DIODE D4603
 U 1 1 4A4077FE
 P 13750 2200
-F 0 "D4603" H 13750 2400 40  0000 C C
-F 1 "1SS400" H 13750 2300 40  0000 C C
+F 0 "D4603" H 13750 2400 40  0000 C CNN
+F 1 "1SS400" H 13750 2300 40  0000 C CNN
        1    13750 2200
        1    0    0    -1  
 $EndComp
@@ -817,8 +731,8 @@
 L KEV040209151A D4601
 U 1 1 4A4077E9
 P 13550 2900
-F 0 "D4601" H 13550 3000 60  0000 C C
-F 1 "6.5Vac, 151pF" H 13550 2800 60  0000 C C
+F 0 "D4601" H 13550 3000 60  0000 C CNN
+F 1 "6.5Vac, 151pF" H 13550 2800 60  0000 C CNN
        1    13550 2900
        0    -1   -1   0   
 $EndComp
@@ -826,8 +740,8 @@
 L DTC123JETL Q4601
 U 1 1 4A407670
 P 12200 2850
-F 0 "Q4601" H 12100 3075 60  0000 C C
-F 1 "DTC123JETL" H 12000 2550 60  0000 C C
+F 0 "Q4601" H 12100 3075 60  0000 C CNN
+F 1 "DTC123JETL" H 12000 2550 60  0000 C CNN
        1    12200 2850
        1    0    0    -1  
 $EndComp
@@ -835,8 +749,8 @@
 L P0408B-13-P2H VB4601
 U 1 1 4A40763A
 P 14800 2400
-F 0 "VB4601" H 14800 2650 60  0000 C C
-F 1 "P0408B-13-P2H" H 14800 2150 60  0000 C C
+F 0 "VB4601" H 14800 2650 60  0000 C CNN
+F 1 "P0408B-13-P2H" H 14800 2150 60  0000 C CNN
        1    14800 2400
        1    0    0    -1  
 $EndComp
@@ -844,8 +758,8 @@
 L GSENSOR_3V3 #PWR?
 U 1 1 4A401C8A
 P 5300 3750
-F 0 "#PWR?" H 5300 3650 50  0001 C C
-F 1 "GSENSOR_3V3" H 5300 3900 50  0000 C C
+F 0 "#PWR?" H 5300 3650 50  0001 C CNN
+F 1 "GSENSOR_3V3" H 5300 3900 50  0000 C CNN
        1    5300 3750
        1    0    0    -1  
 $EndComp
@@ -853,8 +767,8 @@
 L R_US R7810
 U 1 1 4A401C59
 P 5300 4350
-F 0 "R7810" H 5300 4250 50  0000 C C
-F 1 "NC" H 5300 4450 50  0000 C C
+F 0 "R7810" H 5300 4250 50  0000 C CNN
+F 1 "NC" H 5300 4450 50  0000 C CNN
        1    5300 4350
        0    1    1    0   
 $EndComp
@@ -862,8 +776,8 @@
 L R_US R7807
 U 1 1 4A401C2B
 P 5650 4350
-F 0 "R7807" H 5650 4250 50  0000 C C
-F 1 "NC" H 5650 4450 50  0000 C C
+F 0 "R7807" H 5650 4250 50  0000 C CNN
+F 1 "NC" H 5650 4450 50  0000 C CNN
        1    5650 4350
        0    1    1    0   
 $EndComp
@@ -871,8 +785,8 @@
 L R_US R7811
 U 1 1 4A401C19
 P 6000 4350
-F 0 "R7811" H 6000 4250 50  0000 C C
-F 1 "NC" H 6000 4450 50  0000 C C
+F 0 "R7811" H 6000 4250 50  0000 C CNN
+F 1 "NC" H 6000 4450 50  0000 C CNN
        1    6000 4350
        0    1    1    0   
 $EndComp
@@ -880,8 +794,8 @@
 L R_US R7804
 U 1 1 4A401AEB
 P 9150 4350
-F 0 "R7804" H 9150 4250 50  0000 C C
-F 1 "0R" H 9150 4450 50  0000 C C
+F 0 "R7804" H 9150 4250 50  0000 C CNN
+F 1 "0R" H 9150 4450 50  0000 C CNN
        1    9150 4350
        0    1    1    0   
 $EndComp
@@ -889,8 +803,8 @@
 L GSENSOR_3V3 #PWR?
 U 1 1 4A401A8A
 P 9150 3950
-F 0 "#PWR?" H 9150 3850 50  0001 C C
-F 1 "GSENSOR_3V3" H 9150 4100 50  0000 C C
+F 0 "#PWR?" H 9150 3850 50  0001 C CNN
+F 1 "GSENSOR_3V3" H 9150 4100 50  0000 C CNN
        1    9150 3950
        1    0    0    -1  
 $EndComp
@@ -898,8 +812,8 @@
 L C C7804
 U 1 1 4A4019F7
 P 9150 5500
-F 0 "C7804" H 9200 5600 50  0000 L C
-F 1 "10u" H 9200 5400 50  0000 L C
+F 0 "C7804" H 9200 5600 50  0000 L CNN
+F 1 "10u" H 9200 5400 50  0000 L CNN
        1    9150 5500
        1    0    0    -1  
 $EndComp
@@ -907,8 +821,8 @@
 L C C7803
 U 1 1 4A4019EE
 P 8650 5500
-F 0 "C7803" H 8700 5600 50  0000 L C
-F 1 "100n" H 8700 5400 50  0000 L C
+F 0 "C7803" H 8700 5600 50  0000 L CNN
+F 1 "100n" H 8700 5400 50  0000 L CNN
        1    8650 5500
        1    0    0    -1  
 $EndComp
@@ -916,8 +830,8 @@
 L GND #PWR?
 U 1 1 4A401999
 P 7650 6300
-F 0 "#PWR?" H 7650 6300 30  0001 C C
-F 1 "GND" H 7650 6230 30  0001 C C
+F 0 "#PWR?" H 7650 6300 30  0001 C CNN
+F 1 "GND" H 7650 6230 30  0001 C CNN
        1    7650 6300
        1    0    0    -1  
 $EndComp
@@ -925,8 +839,8 @@
 L SC32442 U1501
 U 4 1 4A4016E2
 P 1800 5050
-F 0 "U1501" H 1800 4950 50  0000 C C
-F 1 "SC32442" H 1800 5150 50  0000 C C
+F 0 "U1501" H 1800 4950 50  0000 C CNN
+F 1 "SC32442" H 1800 5150 50  0000 C CNN
        4    1800 5050
        1    0    0    -1  
 $EndComp
@@ -934,8 +848,8 @@
 L LIS302DL U7802
 U 1 1 4A0CAA18
 P 7350 5150
-F 0 "U7802" H 6650 5650 60  0000 L C
-F 1 "LIS302DL" H 6650 4650 60  0000 L C
+F 0 "U7802" H 6650 5650 60  0000 L CNN
+F 1 "LIS302DL" H 6650 4650 60  0000 L CNN
        1    7350 5150
        1    0    0    -1  
 $EndComp




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

Reply via email to