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. r5105 - trunk/gta02-core/components (wer...@docs.openmoko.org)
2. r5106 - in trunk/gta02-core: . docs (wer...@docs.openmoko.org)
3. r5107 - trunk/gta02-core/components (da...@docs.openmoko.org)
4. r5108 - in trunk/gta02-core: . components expanded
(da...@docs.openmoko.org)
--- Begin Message ---
Author: werner
Date: 2009-06-08 14:36:26 +0200 (Mon, 08 Jun 2009)
New Revision: 5105
Modified:
trunk/gta02-core/components/STATUS
Log:
STATUS updates:
- Tobias reviewed si1040x, smsn16, sw_push_4, tas4025a
- corrected typo in Tobias' name
- added Alvaro as author of emh4, ht210, sw_push_4
Modified: trunk/gta02-core/components/STATUS
===================================================================
--- trunk/gta02-core/components/STATUS 2009-06-08 00:10:29 UTC (rev 5104)
+++ trunk/gta02-core/components/STATUS 2009-06-08 12:36:26 UTC (rev 5105)
@@ -8,12 +8,12 @@
b7840 U7603 Rene Werner Dave
dfbm-cs320 U2 Rene
dtc123 Q4601 Alvaro [2]
-emh4 Q1501 Werner Dave
+emh4 Q1501 Alvaro Werner Dave
exc24cb102u B3004 Alvaro Werner Dave
fa2012 RP6001 Alvaro Werner Dave
gta02_wlan_h CON7802 Rene
gta02_wlan_s CON7901 Rene
-ht210 LED1501 Werner Dave
+ht210 LED1501 Alvaro Werner Dave
it3205be X7601 Rene Werner
k4m51323pe U2201 Dave Werner Alvaro <1>
lis302dl U7801 Dave Werner Alvaro
@@ -24,11 +24,11 @@
rt9013 U1702 Alvaro Werner Dave
rt9702a U1705 Alvaro Werner Dave
rt9711_bd_5 U4905 Alvaro Werner Dave
-sc32442 U1501 Dave Werner Andre Tobis <1>
-si1040x U7609 Alvaro Andre
-smsn16 CON7501 Alvaro Werner
-sw_push_4 SW1501 Werner
-tas4025a X1501 Alvaro [3]
+sc32442 U1501 Dave Werner Andre Tobias <1>
+si1040x U7609 Alvaro Andre Tobias
+smsn16 CON7501 Alvaro Werner Tobias
+sw_push_4 SW1501 Alvaro Werner Tobias
+tas4025a X1501 Alvaro Tobias [3]
td028ttec1 CON6001 Rene
varistor D3001 Alvaro Werner Dave
vibrator VB4601 Alvaro Werner
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-06-08 15:10:34 +0200 (Mon, 08 Jun 2009)
New Revision: 5106
Added:
trunk/gta02-core/docs/
trunk/gta02-core/docs/kicad-wishlist
Log:
First draft of the (incomplete) KiCad feature wishlist.
Added: trunk/gta02-core/docs/kicad-wishlist
===================================================================
--- trunk/gta02-core/docs/kicad-wishlist (rev 0)
+++ trunk/gta02-core/docs/kicad-wishlist 2009-06-08 13:10:34 UTC (rev
5106)
@@ -0,0 +1,223 @@
+KiCad wishlish (DRAFT)
+==============
+
+This is a list of enhancements and fixes to KiCad that would benefit
+the gta02-core project. They're roughly in the order of importance.
+
+Before starting to work on any of these items, please make sure to
+synchronize with the KiCad developer community to make sure that they
+actually like the feature and that this doesn't duplicate ongoing
+work. The kicad-devel list can be found here:
+
+http://tech.groups.yahoo.com/group/kicad-devel/
+
+
+- Clean up eeschema --plot hack and get it accepted into KiCad mainline
+
+ Problem: eeschema in KiCad mainline doesn't have a non-interactive way
+ to print or plot schematics. Such a capability would be extremely useful
+ for automated generation of project summaries and similar.
+
+ Status: here's a patch that implements an option --plot that does
+ roughly what we need. This is used to generate the .ps.gz with the
+ gta02-core exploded view:
+
+
http://svn.openmoko.org/trunk/gta02-core/kicad-patches/eeschema-plot-only-mode.patch
+
+ The problem with this patch is that it's not quite what the KiCad
+ maintainers want. See here for the discussion:
+
+ http://tech.groups.yahoo.com/group/kicad-devel/message/2579
+
+ Known issues: the above hack creates an eeschema session that doesn't
+ get properly terminated. So the next time eeschema is started, either
+ interactively or with --plot, it will complain that it's already
+ running and ask for confirmation.
+
+
+- Implement a non-interactive plot mode for pcbnew
+
+ Problem: like the above "eeschema --plot", it would be good to have a
+ "pcbnew --plot". Even better would be the ability to adjust some of the
+ settings, such as mirroring and the output format, e.g., Postscript or
+ Gerber.
+
+ Status: dabbled a bit with it, but don't really have anything to show.
+
+
+- Text aligment in eeschema symbols
+
+ Background: we use right-aligned text in symbols for a number of
+ purposes, e.g., as a band-aid in "Pin name inside and on top" and as
+ a manual solution for "Multi-purpose pins".
+
+ Problem: text in symbols ("components") can only be centered, so if
+ any other alignment is desired, it has to be done manually. This is
+ not very elegant and causes the aligments to be lost when the font
+ geometry changes (which just happened recently).
+
+
+- Make relative paths work when passing a file to eeschema and pcbnew
+
+ Background: eeschema and pcbnew can be invoked with the name of the
+ file to open. This works very well as long as the path name is
+ absolute. However, if it is relative ...
+
+ Problem: eeschema and pcbnew change the working directory which
+ yields weird results if the path is relative to the current directory,
+ usually resulting in eeschema finding neither the profile (project
+ settings) nor the file passed on the command line. (As can be guessed
+ from this description, I haven't quite figured out how exactly all
+ this goes wrong.)
+
+ The work-around is to simply prefix the relative path with `pwd`/,
+ but this upsets the usual command prefix[Tab][Enter] workflow.
+
+
+- Pin name inside and on top
+
+ Background: eeschema currently supports two types if pin labeling,
+ pin name inside or outside:
+
+ "Pin name inside" "Pin name outside"
+
+ inside | outside inside | outside
+ | |
+ | 2 | FOOBAR
+ FOOBAR |------ -----|---------
+ | | 2
+
+ For symbols that contain a drawing of the internal structure, "pin
+ name outside" allows the signal to be graphically continued, as
+ shown in the example above.
+
+ Problem: if pin names are long, it can be difficult to accommodate
+ them on top of the pins in "pin name outside" mode. Furthermore,
+ this often differs from the style chosen in the reference drawings
+ in the data sheets.
+
+ It would therefore be nice to have a third option, namely "pin
+ name inside and above":
+
+ inside | outside
+ |
+ FOOBAR | 2
+ ---------|------
+ |
+
+ When implementing this, perhaps the properties/options dialog in
+ the component editor could be streamlined from having checkboxes
+ for "show pin name" and "pin name inside" to having radio buttons
+ for no name/outside/inside centered/inside raised.
+
+ Status: needs discussion with the KiCad developer community. Maybe
+ they don't like it. As a work-around, we can hide the pin names
+ and add them as text fields.
+
+
+- Fix wx plot and print
+
+ [ Add more description. Not sure if any actual coding is needed,
+ or just integration. ]
+
+ http://tech.groups.yahoo.com/group/kicad-devel/message/2649
+ http://tech.groups.yahoo.com/group/kicad-devel/message/2653
+ http://tech.groups.yahoo.com/group/kicad-devel/message/2656
+
+
+- Consider: multi-connect pins
+
+ Background: in some devices, one pin can have multiple functions,
+ e.g., EINT19/TCLK1/GPG11 can be an external interrupt, a clock signal,
+ or a GPIO. If the chip is complex enough, it may be broken down into
+ functional blocks, and pins may be associated with the respective
+ block.
+
+ In the above example, this pin could be in the EINT block, the TIMER
+ block, or a GPIO block (if such exists). It is generally perceived as
+ desirable to have a pin appear in the vicinity of pins with related
+ functions.
+
+ Problem: the preferred placement of the pin would depend on the
+ application, thus requiring an application-specific variant of the
+ symbol.
+
+ In gta02-core, we place a pin in the block with its primary function
+ and add a text repeating the full signal name at the location of the
+ secondary function. This provides the desired reference, but it still
+ means that one has to look up the pin manually when using a secondary
+ function.
+
+ Possible enhancements: it would be nice if one could have a "real"
+ pin at each location, and connect the signal at the place
+ corresponding to the actual use. There could be the following
+ possibilities:
+
+ - just create pins with the same pin number, ignore the complaints
+ from the component editor's consistency check, and connect only to
+ one of the pins. Problem: KiCad gets confused when this happens and
+ produces an invalid netlist. Also, having to ignore ERC is rarely a
+ good idea.
+
+ - add a mechanism that allows one to have multiple copies of a pin,
+ but check that all but one are marked as "no connect", and enhance
+ the netlist generator such that it skips these "unconnected" pins.
+
+ - similarly, automatically mark all pins with the same name as
+ inaccessible if one of them is connected.
+
+ There's also the question whether such multi-use pins should have to
+ be flagged in the component editor to avoid false warnings. Such a
+ flag would require an extension of the component file format, which
+ is probably undesirable. ERC should be able to detect problems
+ without explicit flagging.
+
+
+- "Live" inclusion of sub-boards in the layout, similar to hierarchical
+ sheets in eeschema
+
+ [ Add summary. Link to discussion. ]
+
+
+- Move nodes while maintaining the slope
+
+ Problem: when moving a node (a corner in a trace), the slopes of the
+ adjacent segments no longer maintain 45 deg alignment.
+
+ Proposed improvement: Alignment could be treating this as move
+ involving four connected segments, the two adjacent to the node, and
+ the segments leading to them. The "far" segments would only be allowed
+ to grow and shrink while the "near" segments would move according to
+ the length of the respective "far" segment, and would grow or shrink
+ according to the position of the node. If all segments maintain their
+ angle, the four lengths are completely determined by the position of
+ the node.
+
+ Where no "far" segment exists, one could be introduced with an
+ orientation such that no angles below 90 degrees are created.
+
+
+- Drag nodes or traces in pcbnew without going through menus
+
+ Background: pcbnew supports drag operations in nodes and on traces.
+ E.g., to drag a node, one right-clicks on the node, selects any of
+ the two tracks shown, selects "Mode node", moves the mouse to pull
+ the node to the desired location, and clicks to move the node.
+
+ Problem: a lot of selections are necessary for such an operation
+ that can be quite common when doing manual routing.
+
+ Proposed improvement: the drag action (press and hold mouse button,
+ then move mouse) is currently only used to mark blocks. Block usually
+ surround the selected items. Thus, a drag starting on a node could be
+ used to directly initiate a movement, without requiring further
+ interaction.
+
+ This enhancement would be particularly useful after the previous one
+ has been implemented.
+
+
+- Add a push-router
+
+ [ Add description. Also note that some of the checks that are done
+ while drawing new traces are missing while moving existing ones. ]
--- End Message ---
--- Begin Message ---
Author: daveb
Date: 2009-06-08 16:09:59 +0200 (Mon, 08 Jun 2009)
New Revision: 5107
Modified:
trunk/gta02-core/components/INFO
Log:
Additional component info - from re...@saweb.de
Modified: trunk/gta02-core/components/INFO
===================================================================
--- trunk/gta02-core/components/INFO 2009-06-08 13:10:34 UTC (rev 5106)
+++ trunk/gta02-core/components/INFO 2009-06-08 14:09:59 UTC (rev 5107)
@@ -33,6 +33,11 @@
A: gps-amp
D: http://www.atmel.com/dyn/resources/prod_documents/doc4573.pdf
+# GPS Chipset
+S: atr0635
+A: gps
+D: http://atmel.com/dyn/resources/prod_documents/doc4928.pdf
+
# Low-Loss Filter 1575.42 MHz
S: b7840
A: gps-filter
@@ -147,6 +152,11 @@
A: cpu-xtal
D: http://www.tew.co.jp/e/crystal/02/pdf/TAS-4025A_E.pdf
+# GPS Coaxial Connector
+S: U.FL-R-SMT-1
+A: gps-coax
+D: http://www.hirose.co.jp/cataloge_hp/e32119372.pdf
+
# Vibrator (TA&MI P0408B-13-P2H)
S: vibrator
#D: http://www.di-motor.com.tw/html/page.html
--- End Message ---
--- Begin Message ---
Author: daveb
Date: 2009-06-08 16:16:03 +0200 (Mon, 08 Jun 2009)
New Revision: 5108
Added:
trunk/gta02-core/components/atr0635.lib
trunk/gta02-core/components/coax.lib
Modified:
trunk/gta02-core/components/gta02-core-expanded.lib
trunk/gta02-core/components/gta02-core.lib
trunk/gta02-core/components/mkloe
trunk/gta02-core/expanded/gps.sch
trunk/gta02-core/gta02-core.pro
Log:
Additional components from Rene Harder re...@saweb.de
- gps chipset (atr0635)
- gps coax connector
Added: trunk/gta02-core/components/atr0635.lib
===================================================================
--- trunk/gta02-core/components/atr0635.lib (rev 0)
+++ trunk/gta02-core/components/atr0635.lib 2009-06-08 14:16:03 UTC (rev
5108)
@@ -0,0 +1,109 @@
+EESchema-LIBRARY Version 2.3 Date: 8/6/2009-13:29:40
+#
+# ATR0635
+#
+DEF ATR0635 U 0 40 Y Y 1 F N
+F0 "U" 0 100 60 H V C C
+F1 "ATR0635" 0 -100 60 H V C C
+DRAW
+S -1800 1900 1800 -1900 0 1 0 N
+X VDD_18 E5 -1050 2200 300 D 50 50 1 1 W
+X VDD_18 B9 -950 2200 300 D 50 50 1 1 W
+X VDD_18 F12 -850 2200 300 D 50 50 1 1 W
+X VDD_18 G11 -750 2200 300 D 50 50 1 1 W
+X VDD_18 H9 -650 2200 300 D 50 50 1 1 W
+X VCC2 C4 -450 2200 300 D 50 50 1 1 W
+X VCC1 C2 -350 2200 300 D 50 50 1 1 W
+X VBAT D12 -150 2200 300 D 50 50 1 1 W
+X VBAT_18 C12 -50 2200 300 D 50 50 1 1 W
+X VBP G2 150 2200 300 D 50 50 1 1 W
+X VBP G3 250 2200 300 D 50 50 1 1 W
+X VBP H2 350 2200 300 D 50 50 1 1 W
+X VBP H3 450 2200 300 D 50 50 1 1 W
+X VDDIO B5 650 2200 300 D 50 50 1 1 W
+X VDDIO H5 750 2200 300 D 50 50 1 1 W
+X VDIG A5 850 2200 300 D 50 50 1 1 W
+X VDD_USB A10 1050 2200 300 D 50 50 1 1 W
+X NTRST H11 2100 -1750 300 L 50 50 1 1 I I
+X TMS G10 2100 -1650 300 L 50 50 1 1 I
+X TDO F9 2100 -1550 300 L 50 50 1 1 O
+X TDI H10 2100 -1450 300 L 50 50 1 1 I
+X TCK G9 2100 -1350 300 L 50 50 1 1 I
+X DBG_EN E8 2100 -1250 300 L 50 50 1 1 I
+X CLK23 A8 2100 -1050 300 L 50 50 1 1 O
+X SIGLO0 B7 2100 -950 300 L 50 50 1 1 O
+X SIGHI0 B8 2100 -850 300 L 50 50 1 1 O
+X TEST D3 2100 -750 300 L 50 50 1 1 I
+X MO C3 2100 -650 300 L 50 50 1 1 O
+X P20/SCK2 G7 2100 -450 300 L 50 50 1 1 B
+X P21/TXD2 E6 2100 -350 300 L 50 50 1 1 B
+X P22/RXD2 D10 2100 -250 300 L 50 50 1 1 B
+X P31/RXD1 C10 2100 -150 300 L 50 50 1 1 B
+X P18/TXD1 C7 2100 -50 300 L 50 50 1 1 B
+X SDI C4 2100 150 300 L 50 50 1 1 I
+X P30/AGCOUT0 G12 2100 250 300 L 50 50 1 1 B
+X EGC D4 2100 350 300 L 50 50 1 1 I
+X AGCO A4 2100 450 300 L 50 50 1 1 B
+X P15/ANTON F11 2100 650 300 L 50 50 1 1 B
+X P14/NAADET1 G6 2100 750 300 L 50 50 1 1 B I
+X P25/NAADET0 G5 2100 850 300 L 50 50 1 1 B I
+X P0/NANTSHORT C8 2100 950 300 L 50 50 1 1 B I
+X RF D1 2100 1150 300 L 50 50 1 1 I
+X NRF C1 2100 1250 300 L 50 50 1 1 I I
+X P8/STATUSLED D7 2100 1400 300 L 50 50 1 1 B
+X LDO_OUT E12 2100 1550 300 L 50 50 1 1 w
+X LDO_IN E11 2100 1650 300 L 50 50 1 1 W
+X LDOBAT_IN D11 2100 1750 300 L 50 50 1 1 W
+X P28 E7 -2100 -1750 300 R 50 50 1 1 B
+X P16/NEEPROM G8 -2100 -1650 300 R 50 50 1 1 B I
+X P9/EXTINT0 A11 -2100 -1550 300 R 50 50 1 1 B
+X UDB_D+ C9 -2100 -1350 300 R 50 50 1 1 B
+X USB_D- D9 -2100 -1250 300 R 50 50 1 1 B
+X P29/GPSMODE12 D5 -2100 -1050 300 R 50 50 1 1 B
+X P27/GPSMODE11 F7 -2100 -950 300 R 50 50 1 1 B
+X P26/GPSMODE10 B6 -2100 -850 300 R 50 50 1 1 B
+X P24/GPSMODE8 H7 -2100 -750 300 R 50 50 1 1 B
+X P23/GPSMODE7 F8 -2100 -650 300 R 50 50 1 1 B
+X P19/GPSMODE6 F6 -2100 -550 300 R 50 50 1 1 B
+X P17/GPSMODE5 H6 -2100 -450 300 R 50 50 1 1 B
+X P13/GPSMODE3 B10 -2100 -350 300 R 50 50 1 1 B
+X P12/GPSMODE2 D6 -2100 -250 300 R 50 50 1 1 B
+X P1/GPSMODE0 D8 -2100 -150 300 R 50 50 1 1 B
+X XT_OUT B12 -2100 50 300 R 50 50 1 1 O
+X XT_IN A12 -2100 150 300 R 50 50 1 1 I
+X NXTO B3 -2100 350 300 R 50 50 1 1 I I
+X XTO A1 -2100 450 300 R 50 50 1 1 I
+X NX B2 -2100 550 300 R 50 50 1 1 O I
+X X A2 -2100 650 300 R 50 50 1 1 O
+X RF_ON F10 -2100 850 300 R 50 50 1 1 O
+X PURF H4 -2100 950 300 R 50 50 1 1 I
+X PURF G4 -2100 1050 300 R 50 50 1 1 I
+X PUXTO F4 -2100 1150 300 R 50 50 1 1 I
+X NSLEEP E10 -2100 1250 300 R 50 50 1 1 O I
+X LDO_EN C11 -2100 1350 300 R 50 50 1 1 I
+X NSHDN E9 -2100 1450 300 R 50 50 1 1 O I
+X P2/BOOT_MODE C6 -2100 1650 300 R 50 50 1 1 B
+X NRESET A7 -2100 1750 300 R 50 50 1 1 B I
+X GND A6 -1000 -2200 300 U 50 50 1 1 W
+X GND A9 -900 -2200 300 U 50 50 1 1 W
+X GND B11 -800 -2200 300 U 50 50 1 1 W
+X GND F5 -700 -2200 300 U 50 50 1 1 W
+X GND H8 -600 -2200 300 U 50 50 1 1 W
+X GND H12 -500 -2200 300 U 50 50 1 1 W
+X GDIG C5 -300 -2200 300 U 50 50 1 1 W
+X GNDA A3 -100 -2200 300 U 50 50 1 1 W
+X GNDA B1 0 -2200 300 U 50 50 1 1 W
+X GNDA B4 100 -2200 300 U 50 50 1 1 W
+X GNDA D2 200 -2200 300 U 50 50 1 1 W
+X GNDA E1 300 -2200 300 U 50 50 1 1 W
+X GNDA E2 400 -2200 300 U 50 50 1 1 W
+X GNDA E3 500 -2200 300 U 50 50 1 1 W
+X GNDA F1 600 -2200 300 U 50 50 1 1 W
+X GNDA F2 700 -2200 300 U 50 50 1 1 W
+X GNDA F3 800 -2200 300 U 50 50 1 1 W
+X GNDA G1 900 -2200 300 U 50 50 1 1 W
+X GNDA H1 1000 -2200 300 U 50 50 1 1 W
+ENDDRAW
+ENDDEF
+#
+#End Library
Added: trunk/gta02-core/components/coax.lib
===================================================================
--- trunk/gta02-core/components/coax.lib (rev 0)
+++ trunk/gta02-core/components/coax.lib 2009-06-08 14:16:03 UTC (rev
5108)
@@ -0,0 +1,20 @@
+EESchema-LIBRARY Version 2.3 Date: Mo 08 Jun 2009 00:01:10 CDT
+#
+# COAX
+#
+DEF COAX CON 0 40 Y Y 1 F N
+F0 "CON" -400 250 60 H V C CNN
+F1 "COAX" 500 -250 60 H V C CNN
+ALIAS U.FL-R-SMT-1
+DRAW
+C 0 0 28 0 1 0 F
+P 3 0 1 10 0 0 200 0 200 0 N
+C 0 0 206 0 1 5 N
+P 4 0 1 10 50 0 150 0 150 0 150 0 N
+X ~ 2 0 400 200 D 50 50 1 1 P
+X ~ 1 400 0 200 L 50 50 1 1 P
+X ~ 3 0 -400 200 U 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+#End Library
Modified: trunk/gta02-core/components/gta02-core-expanded.lib
===================================================================
--- trunk/gta02-core/components/gta02-core-expanded.lib 2009-06-08 14:09:59 UTC
(rev 5107)
+++ trunk/gta02-core/components/gta02-core-expanded.lib 2009-06-08 14:16:03 UTC
(rev 5108)
@@ -1383,6 +1383,230 @@
ENDDEF
#
#
+# ATR0635
+#
+DEF XATR0635 U 0 40 Y Y 1 F N
+F0 "U" 0 100 60 H V C C
+F1 "XATR0635" 0 -100 60 H V C C
+DRAW
+S -1800 1900 1800 -1900 0 1 0 N
+X VDD_18 E5 -1050 2200 300 D 50 50 1 1 W
+T 900 -1050 2448 60 0 1 0 Pwr~In Normal 0
+X VDD_18 B9 -950 2200 300 D 50 50 1 1 W
+T 900 -950 2448 60 0 1 0 Pwr~In Normal 0
+X VDD_18 F12 -850 2200 300 D 50 50 1 1 W
+T 900 -850 2448 60 0 1 0 Pwr~In Normal 0
+X VDD_18 G11 -750 2200 300 D 50 50 1 1 W
+T 900 -750 2448 60 0 1 0 Pwr~In Normal 0
+X VDD_18 H9 -650 2200 300 D 50 50 1 1 W
+T 900 -650 2448 60 0 1 0 Pwr~In Normal 0
+X VCC2 C4 -450 2200 300 D 50 50 1 1 W
+T 900 -450 2448 60 0 1 0 Pwr~In Normal 0
+X VCC1 C2 -350 2200 300 D 50 50 1 1 W
+T 900 -350 2448 60 0 1 0 Pwr~In Normal 0
+X VBAT D12 -150 2200 300 D 50 50 1 1 W
+T 900 -150 2448 60 0 1 0 Pwr~In Normal 0
+X VBAT_18 C12 -50 2200 300 D 50 50 1 1 W
+T 900 -50 2448 60 0 1 0 Pwr~In Normal 0
+X VBP G2 150 2200 300 D 50 50 1 1 W
+T 900 150 2448 60 0 1 0 Pwr~In Normal 0
+X VBP G3 250 2200 300 D 50 50 1 1 W
+T 900 250 2448 60 0 1 0 Pwr~In Normal 0
+X VBP H2 350 2200 300 D 50 50 1 1 W
+T 900 350 2448 60 0 1 0 Pwr~In Normal 0
+X VBP H3 450 2200 300 D 50 50 1 1 W
+T 900 450 2448 60 0 1 0 Pwr~In Normal 0
+X VDDIO B5 650 2200 300 D 50 50 1 1 W
+T 900 650 2448 60 0 1 0 Pwr~In Normal 0
+X VDDIO H5 750 2200 300 D 50 50 1 1 W
+T 900 750 2448 60 0 1 0 Pwr~In Normal 0
+X VDIG A5 850 2200 300 D 50 50 1 1 W
+T 900 850 2448 60 0 1 0 Pwr~In Normal 0
+X VDD_USB A10 1050 2200 300 D 50 50 1 1 W
+T 900 1050 2448 60 0 1 0 Pwr~In Normal 0
+X NTRST H11 2100 -1750 300 L 50 50 1 1 I I
+T 0 2315 -1750 60 0 1 0 Input Normal 0
+X TMS G10 2100 -1650 300 L 50 50 1 1 I
+T 0 2315 -1650 60 0 1 0 Input Normal 0
+X TDO F9 2100 -1550 300 L 50 50 1 1 O
+T 0 2348 -1550 60 0 1 0 Output Normal 0
+X TDI H10 2100 -1450 300 L 50 50 1 1 I
+T 0 2315 -1450 60 0 1 0 Input Normal 0
+X TCK G9 2100 -1350 300 L 50 50 1 1 I
+T 0 2315 -1350 60 0 1 0 Input Normal 0
+X DBG_EN E8 2100 -1250 300 L 50 50 1 1 I
+T 0 2315 -1250 60 0 1 0 Input Normal 0
+X CLK23 A8 2100 -1050 300 L 50 50 1 1 O
+T 0 2348 -1050 60 0 1 0 Output Normal 0
+X SIGLO0 B7 2100 -950 300 L 50 50 1 1 O
+T 0 2348 -950 60 0 1 0 Output Normal 0
+X SIGHI0 B8 2100 -850 300 L 50 50 1 1 O
+T 0 2348 -850 60 0 1 0 Output Normal 0
+X TEST D3 2100 -750 300 L 50 50 1 1 I
+T 0 2315 -750 60 0 1 0 Input Normal 0
+X MO C3 2100 -650 300 L 50 50 1 1 O
+T 0 2348 -650 60 0 1 0 Output Normal 0
+X P20/SCK2 G7 2100 -450 300 L 50 50 1 1 B
+T 0 2282 -450 60 0 1 0 BiDi Normal 0
+X P21/TXD2 E6 2100 -350 300 L 50 50 1 1 B
+T 0 2282 -350 60 0 1 0 BiDi Normal 0
+X P22/RXD2 D10 2100 -250 300 L 50 50 1 1 B
+T 0 2282 -250 60 0 1 0 BiDi Normal 0
+X P31/RXD1 C10 2100 -150 300 L 50 50 1 1 B
+T 0 2282 -150 60 0 1 0 BiDi Normal 0
+X P18/TXD1 C7 2100 -50 300 L 50 50 1 1 B
+T 0 2282 -50 60 0 1 0 BiDi Normal 0
+X SDI C4 2100 150 300 L 50 50 1 1 I
+T 0 2315 150 60 0 1 0 Input Normal 0
+X P30/AGCOUT0 G12 2100 250 300 L 50 50 1 1 B
+T 0 2282 250 60 0 1 0 BiDi Normal 0
+X EGC D4 2100 350 300 L 50 50 1 1 I
+T 0 2315 350 60 0 1 0 Input Normal 0
+X AGCO A4 2100 450 300 L 50 50 1 1 B
+T 0 2282 450 60 0 1 0 BiDi Normal 0
+X P15/ANTON F11 2100 650 300 L 50 50 1 1 B
+T 0 2282 650 60 0 1 0 BiDi Normal 0
+X P14/NAADET1 G6 2100 750 300 L 50 50 1 1 B I
+T 0 2282 750 60 0 1 0 BiDi Normal 0
+X P25/NAADET0 G5 2100 850 300 L 50 50 1 1 B I
+T 0 2282 850 60 0 1 0 BiDi Normal 0
+X P0/NANTSHORT C8 2100 950 300 L 50 50 1 1 B I
+T 0 2282 950 60 0 1 0 BiDi Normal 0
+X RF D1 2100 1150 300 L 50 50 1 1 I
+T 0 2315 1150 60 0 1 0 Input Normal 0
+X NRF C1 2100 1250 300 L 50 50 1 1 I I
+T 0 2315 1250 60 0 1 0 Input Normal 0
+X P8/STATUSLED D7 2100 1400 300 L 50 50 1 1 B
+T 0 2282 1400 60 0 1 0 BiDi Normal 0
+X LDO_OUT E12 2100 1550 300 L 50 50 1 1 w
+T 0 2381 1550 60 0 1 0 Pwr~Out Normal 0
+X LDO_IN E11 2100 1650 300 L 50 50 1 1 W
+T 0 2348 1650 60 0 1 0 Pwr~In Normal 0
+X LDOBAT_IN D11 2100 1750 300 L 50 50 1 1 W
+T 0 2348 1750 60 0 1 0 Pwr~In Normal 0
+X P28 E7 -2100 -1750 300 R 50 50 1 1 B
+T 0 -2282 -1750 60 0 1 0 BiDi Normal 0
+X P16/NEEPROM G8 -2100 -1650 300 R 50 50 1 1 B I
+T 0 -2282 -1650 60 0 1 0 BiDi Normal 0
+X P9/EXTINT0 A11 -2100 -1550 300 R 50 50 1 1 B
+T 0 -2282 -1550 60 0 1 0 BiDi Normal 0
+X UDB_D+ C9 -2100 -1350 300 R 50 50 1 1 B
+T 0 -2282 -1350 60 0 1 0 BiDi Normal 0
+X USB_D- D9 -2100 -1250 300 R 50 50 1 1 B
+T 0 -2282 -1250 60 0 1 0 BiDi Normal 0
+X P29/GPSMODE12 D5 -2100 -1050 300 R 50 50 1 1 B
+T 0 -2282 -1050 60 0 1 0 BiDi Normal 0
+X P27/GPSMODE11 F7 -2100 -950 300 R 50 50 1 1 B
+T 0 -2282 -950 60 0 1 0 BiDi Normal 0
+X P26/GPSMODE10 B6 -2100 -850 300 R 50 50 1 1 B
+T 0 -2282 -850 60 0 1 0 BiDi Normal 0
+X P24/GPSMODE8 H7 -2100 -750 300 R 50 50 1 1 B
+T 0 -2282 -750 60 0 1 0 BiDi Normal 0
+X P23/GPSMODE7 F8 -2100 -650 300 R 50 50 1 1 B
+T 0 -2282 -650 60 0 1 0 BiDi Normal 0
+X P19/GPSMODE6 F6 -2100 -550 300 R 50 50 1 1 B
+T 0 -2282 -550 60 0 1 0 BiDi Normal 0
+X P17/GPSMODE5 H6 -2100 -450 300 R 50 50 1 1 B
+T 0 -2282 -450 60 0 1 0 BiDi Normal 0
+X P13/GPSMODE3 B10 -2100 -350 300 R 50 50 1 1 B
+T 0 -2282 -350 60 0 1 0 BiDi Normal 0
+X P12/GPSMODE2 D6 -2100 -250 300 R 50 50 1 1 B
+T 0 -2282 -250 60 0 1 0 BiDi Normal 0
+X P1/GPSMODE0 D8 -2100 -150 300 R 50 50 1 1 B
+T 0 -2282 -150 60 0 1 0 BiDi Normal 0
+X XT_OUT B12 -2100 50 300 R 50 50 1 1 O
+T 0 -2348 50 60 0 1 0 Output Normal 0
+X XT_IN A12 -2100 150 300 R 50 50 1 1 I
+T 0 -2315 150 60 0 1 0 Input Normal 0
+X NXTO B3 -2100 350 300 R 50 50 1 1 I I
+T 0 -2315 350 60 0 1 0 Input Normal 0
+X XTO A1 -2100 450 300 R 50 50 1 1 I
+T 0 -2315 450 60 0 1 0 Input Normal 0
+X NX B2 -2100 550 300 R 50 50 1 1 O I
+T 0 -2348 550 60 0 1 0 Output Normal 0
+X X A2 -2100 650 300 R 50 50 1 1 O
+T 0 -2348 650 60 0 1 0 Output Normal 0
+X RF_ON F10 -2100 850 300 R 50 50 1 1 O
+T 0 -2348 850 60 0 1 0 Output Normal 0
+X PURF H4 -2100 950 300 R 50 50 1 1 I
+T 0 -2315 950 60 0 1 0 Input Normal 0
+X PURF G4 -2100 1050 300 R 50 50 1 1 I
+T 0 -2315 1050 60 0 1 0 Input Normal 0
+X PUXTO F4 -2100 1150 300 R 50 50 1 1 I
+T 0 -2315 1150 60 0 1 0 Input Normal 0
+X NSLEEP E10 -2100 1250 300 R 50 50 1 1 O I
+T 0 -2348 1250 60 0 1 0 Output Normal 0
+X LDO_EN C11 -2100 1350 300 R 50 50 1 1 I
+T 0 -2315 1350 60 0 1 0 Input Normal 0
+X NSHDN E9 -2100 1450 300 R 50 50 1 1 O I
+T 0 -2348 1450 60 0 1 0 Output Normal 0
+X P2/BOOT_MODE C6 -2100 1650 300 R 50 50 1 1 B
+T 0 -2282 1650 60 0 1 0 BiDi Normal 0
+X NRESET A7 -2100 1750 300 R 50 50 1 1 B I
+T 0 -2282 1750 60 0 1 0 BiDi Normal 0
+X GND A6 -1000 -2200 300 U 50 50 1 1 W
+T 900 -1000 -2448 60 0 1 0 Pwr~In Normal 0
+X GND A9 -900 -2200 300 U 50 50 1 1 W
+T 900 -900 -2448 60 0 1 0 Pwr~In Normal 0
+X GND B11 -800 -2200 300 U 50 50 1 1 W
+T 900 -800 -2448 60 0 1 0 Pwr~In Normal 0
+X GND F5 -700 -2200 300 U 50 50 1 1 W
+T 900 -700 -2448 60 0 1 0 Pwr~In Normal 0
+X GND H8 -600 -2200 300 U 50 50 1 1 W
+T 900 -600 -2448 60 0 1 0 Pwr~In Normal 0
+X GND H12 -500 -2200 300 U 50 50 1 1 W
+T 900 -500 -2448 60 0 1 0 Pwr~In Normal 0
+X GDIG C5 -300 -2200 300 U 50 50 1 1 W
+T 900 -300 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA A3 -100 -2200 300 U 50 50 1 1 W
+T 900 -100 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA B1 0 -2200 300 U 50 50 1 1 W
+T 900 0 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA B4 100 -2200 300 U 50 50 1 1 W
+T 900 100 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA D2 200 -2200 300 U 50 50 1 1 W
+T 900 200 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA E1 300 -2200 300 U 50 50 1 1 W
+T 900 300 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA E2 400 -2200 300 U 50 50 1 1 W
+T 900 400 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA E3 500 -2200 300 U 50 50 1 1 W
+T 900 500 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA F1 600 -2200 300 U 50 50 1 1 W
+T 900 600 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA F2 700 -2200 300 U 50 50 1 1 W
+T 900 700 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA F3 800 -2200 300 U 50 50 1 1 W
+T 900 800 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA G1 900 -2200 300 U 50 50 1 1 W
+T 900 900 -2448 60 0 1 0 Pwr~In Normal 0
+X GNDA H1 1000 -2200 300 U 50 50 1 1 W
+T 900 1000 -2448 60 0 1 0 Pwr~In Normal 0
+ENDDRAW
+ENDDEF
+#
+#
+# COAX
+#
+DEF XCOAX CON 0 40 Y Y 1 F N
+F0 "CON" -400 250 60 H V C CNN
+F1 "XCOAX" 500 -250 60 H V C CNN
+ALIAS U.FL-R-SMT-1
+DRAW
+C 0 0 28 0 1 0 F
+P 3 0 1 10 0 0 200 0 200 0 N
+C 0 0 206 0 1 5 N
+P 4 0 1 10 50 0 150 0 150 0 150 0 N
+X ~ 2 0 400 200 D 50 50 1 1 P
+T 900 0 681 60 0 1 0 Passive Normal 0
+X ~ 1 400 0 200 L 50 50 1 1 P
+T 0 681 0 60 0 1 0 Passive Normal 0
+X ~ 3 0 -400 200 U 50 50 1 1 P
+T 900 0 -681 60 0 1 0 Passive Normal 0
+ENDDRAW
+ENDDEF
+#
+#
# EXC24CB102U
#
DEF XEXC24CB102U B 0 40 Y N 1 F N
Modified: trunk/gta02-core/components/gta02-core.lib
===================================================================
--- trunk/gta02-core/components/gta02-core.lib 2009-06-08 14:09:59 UTC (rev
5107)
+++ trunk/gta02-core/components/gta02-core.lib 2009-06-08 14:16:03 UTC (rev
5108)
@@ -808,6 +808,131 @@
ENDDEF
#
#
+# ATR0635
+#
+DEF ATR0635 U 0 40 Y Y 1 F N
+F0 "U" 0 100 60 H V C C
+F1 "ATR0635" 0 -100 60 H V C C
+DRAW
+S -1800 1900 1800 -1900 0 1 0 N
+X VDD_18 E5 -1050 2200 300 D 50 50 1 1 W
+X VDD_18 B9 -950 2200 300 D 50 50 1 1 W
+X VDD_18 F12 -850 2200 300 D 50 50 1 1 W
+X VDD_18 G11 -750 2200 300 D 50 50 1 1 W
+X VDD_18 H9 -650 2200 300 D 50 50 1 1 W
+X VCC2 C4 -450 2200 300 D 50 50 1 1 W
+X VCC1 C2 -350 2200 300 D 50 50 1 1 W
+X VBAT D12 -150 2200 300 D 50 50 1 1 W
+X VBAT_18 C12 -50 2200 300 D 50 50 1 1 W
+X VBP G2 150 2200 300 D 50 50 1 1 W
+X VBP G3 250 2200 300 D 50 50 1 1 W
+X VBP H2 350 2200 300 D 50 50 1 1 W
+X VBP H3 450 2200 300 D 50 50 1 1 W
+X VDDIO B5 650 2200 300 D 50 50 1 1 W
+X VDDIO H5 750 2200 300 D 50 50 1 1 W
+X VDIG A5 850 2200 300 D 50 50 1 1 W
+X VDD_USB A10 1050 2200 300 D 50 50 1 1 W
+X NTRST H11 2100 -1750 300 L 50 50 1 1 I I
+X TMS G10 2100 -1650 300 L 50 50 1 1 I
+X TDO F9 2100 -1550 300 L 50 50 1 1 O
+X TDI H10 2100 -1450 300 L 50 50 1 1 I
+X TCK G9 2100 -1350 300 L 50 50 1 1 I
+X DBG_EN E8 2100 -1250 300 L 50 50 1 1 I
+X CLK23 A8 2100 -1050 300 L 50 50 1 1 O
+X SIGLO0 B7 2100 -950 300 L 50 50 1 1 O
+X SIGHI0 B8 2100 -850 300 L 50 50 1 1 O
+X TEST D3 2100 -750 300 L 50 50 1 1 I
+X MO C3 2100 -650 300 L 50 50 1 1 O
+X P20/SCK2 G7 2100 -450 300 L 50 50 1 1 B
+X P21/TXD2 E6 2100 -350 300 L 50 50 1 1 B
+X P22/RXD2 D10 2100 -250 300 L 50 50 1 1 B
+X P31/RXD1 C10 2100 -150 300 L 50 50 1 1 B
+X P18/TXD1 C7 2100 -50 300 L 50 50 1 1 B
+X SDI C4 2100 150 300 L 50 50 1 1 I
+X P30/AGCOUT0 G12 2100 250 300 L 50 50 1 1 B
+X EGC D4 2100 350 300 L 50 50 1 1 I
+X AGCO A4 2100 450 300 L 50 50 1 1 B
+X P15/ANTON F11 2100 650 300 L 50 50 1 1 B
+X P14/NAADET1 G6 2100 750 300 L 50 50 1 1 B I
+X P25/NAADET0 G5 2100 850 300 L 50 50 1 1 B I
+X P0/NANTSHORT C8 2100 950 300 L 50 50 1 1 B I
+X RF D1 2100 1150 300 L 50 50 1 1 I
+X NRF C1 2100 1250 300 L 50 50 1 1 I I
+X P8/STATUSLED D7 2100 1400 300 L 50 50 1 1 B
+X LDO_OUT E12 2100 1550 300 L 50 50 1 1 w
+X LDO_IN E11 2100 1650 300 L 50 50 1 1 W
+X LDOBAT_IN D11 2100 1750 300 L 50 50 1 1 W
+X P28 E7 -2100 -1750 300 R 50 50 1 1 B
+X P16/NEEPROM G8 -2100 -1650 300 R 50 50 1 1 B I
+X P9/EXTINT0 A11 -2100 -1550 300 R 50 50 1 1 B
+X UDB_D+ C9 -2100 -1350 300 R 50 50 1 1 B
+X USB_D- D9 -2100 -1250 300 R 50 50 1 1 B
+X P29/GPSMODE12 D5 -2100 -1050 300 R 50 50 1 1 B
+X P27/GPSMODE11 F7 -2100 -950 300 R 50 50 1 1 B
+X P26/GPSMODE10 B6 -2100 -850 300 R 50 50 1 1 B
+X P24/GPSMODE8 H7 -2100 -750 300 R 50 50 1 1 B
+X P23/GPSMODE7 F8 -2100 -650 300 R 50 50 1 1 B
+X P19/GPSMODE6 F6 -2100 -550 300 R 50 50 1 1 B
+X P17/GPSMODE5 H6 -2100 -450 300 R 50 50 1 1 B
+X P13/GPSMODE3 B10 -2100 -350 300 R 50 50 1 1 B
+X P12/GPSMODE2 D6 -2100 -250 300 R 50 50 1 1 B
+X P1/GPSMODE0 D8 -2100 -150 300 R 50 50 1 1 B
+X XT_OUT B12 -2100 50 300 R 50 50 1 1 O
+X XT_IN A12 -2100 150 300 R 50 50 1 1 I
+X NXTO B3 -2100 350 300 R 50 50 1 1 I I
+X XTO A1 -2100 450 300 R 50 50 1 1 I
+X NX B2 -2100 550 300 R 50 50 1 1 O I
+X X A2 -2100 650 300 R 50 50 1 1 O
+X RF_ON F10 -2100 850 300 R 50 50 1 1 O
+X PURF H4 -2100 950 300 R 50 50 1 1 I
+X PURF G4 -2100 1050 300 R 50 50 1 1 I
+X PUXTO F4 -2100 1150 300 R 50 50 1 1 I
+X NSLEEP E10 -2100 1250 300 R 50 50 1 1 O I
+X LDO_EN C11 -2100 1350 300 R 50 50 1 1 I
+X NSHDN E9 -2100 1450 300 R 50 50 1 1 O I
+X P2/BOOT_MODE C6 -2100 1650 300 R 50 50 1 1 B
+X NRESET A7 -2100 1750 300 R 50 50 1 1 B I
+X GND A6 -1000 -2200 300 U 50 50 1 1 W
+X GND A9 -900 -2200 300 U 50 50 1 1 W
+X GND B11 -800 -2200 300 U 50 50 1 1 W
+X GND F5 -700 -2200 300 U 50 50 1 1 W
+X GND H8 -600 -2200 300 U 50 50 1 1 W
+X GND H12 -500 -2200 300 U 50 50 1 1 W
+X GDIG C5 -300 -2200 300 U 50 50 1 1 W
+X GNDA A3 -100 -2200 300 U 50 50 1 1 W
+X GNDA B1 0 -2200 300 U 50 50 1 1 W
+X GNDA B4 100 -2200 300 U 50 50 1 1 W
+X GNDA D2 200 -2200 300 U 50 50 1 1 W
+X GNDA E1 300 -2200 300 U 50 50 1 1 W
+X GNDA E2 400 -2200 300 U 50 50 1 1 W
+X GNDA E3 500 -2200 300 U 50 50 1 1 W
+X GNDA F1 600 -2200 300 U 50 50 1 1 W
+X GNDA F2 700 -2200 300 U 50 50 1 1 W
+X GNDA F3 800 -2200 300 U 50 50 1 1 W
+X GNDA G1 900 -2200 300 U 50 50 1 1 W
+X GNDA H1 1000 -2200 300 U 50 50 1 1 W
+ENDDRAW
+ENDDEF
+#
+#
+# COAX
+#
+DEF COAX CON 0 40 Y Y 1 F N
+F0 "CON" -400 250 60 H V C CNN
+F1 "COAX" 500 -250 60 H V C CNN
+ALIAS U.FL-R-SMT-1
+DRAW
+C 0 0 28 0 1 0 F
+P 3 0 1 10 0 0 200 0 200 0 N
+C 0 0 206 0 1 5 N
+P 4 0 1 10 50 0 150 0 150 0 150 0 N
+X ~ 2 0 400 200 D 50 50 1 1 P
+X ~ 1 400 0 200 L 50 50 1 1 P
+X ~ 3 0 -400 200 U 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+#
# EXC24CB102U
#
DEF EXC24CB102U B 0 40 Y N 1 F N
Modified: trunk/gta02-core/components/mkloe
===================================================================
--- trunk/gta02-core/components/mkloe 2009-06-08 14:09:59 UTC (rev 5107)
+++ trunk/gta02-core/components/mkloe 2009-06-08 14:16:03 UTC (rev 5108)
@@ -2,7 +2,7 @@
# Make a Library of Everything
COMPS="aat1275irn k4m51323pe lis302dl pcf50633-04-n3 sc32442 wm8753lgefl"
-COMPS="$COMPS ms2v-t1s si1040x tas4025a"
+COMPS="$COMPS ms2v-t1s si1040x tas4025a atr0635 coax"
COMPS="$COMPS exc24cb102u dtc123 fa2012 rt9013_b rt9702 rt9711_bd_5 varistor"
COMPS="$COMPS 74x1g00_5 74x1g125 74x2g126 vibrator mini_usb_b smsn16"
COMPS="$COMPS sw_push_4 emh4 ht210 r3113d b7840 atr0610 it3205be"
Modified: trunk/gta02-core/expanded/gps.sch
===================================================================
--- trunk/gta02-core/expanded/gps.sch 2009-06-08 14:09:59 UTC (rev 5107)
+++ trunk/gta02-core/expanded/gps.sch 2009-06-08 14:16:03 UTC (rev 5108)
@@ -1,5 +1,5 @@
-EESchema Schematic File Version 2 date Fri May 29 19:34:32 2009
-LIBS:power,device,conn,gta02-core-expanded,gta02-core-expanded-cache
+EESchema Schematic File Version 2
+LIBS:power,device,conn,../components/gta02-core-expanded
EELAYER 24 0
EELAYER END
$Descr A4 11700 8267
@@ -14,48 +14,57 @@
Comment4 ""
$EndDescr
$Comp
+L XATR0635 U?
+U 1 1 4A2D1372
+P 4100 3900
+F 0 "U?" H 4100 4000 60 0000 C C
+F 1 "XATR0635" H 4100 3800 60 0000 C C
+ 1 4100 3900
+ 1 0 0 -1
+$EndComp
+$Comp
L XIT3205BE X?
U 1 1 4A2062F7
-P 7050 3300
-F 0 "X?" H 7050 3750 60 0000 C CNN
-F 1 "XIT3205BE" H 7050 3650 60 0000 C CNN
- 1 7050 3300
+P 9150 1050
+F 0 "X?" H 9150 1500 60 0000 C C
+F 1 "XIT3205BE" H 9150 1400 60 0000 C C
+ 1 9150 1050
1 0 0 -1
$EndComp
$Comp
L XATR0610 U?
U 1 1 4A205AA9
-P 4500 5400
-F 0 "U?" H 4500 5900 60 0000 C CNN
-F 1 "XATR0610" H 4500 5800 60 0000 C CNN
- 1 4500 5400
+P 9300 6600
+F 0 "U?" H 9300 7100 60 0000 C C
+F 1 "XATR0610" H 9300 7000 60 0000 C C
+ 1 9300 6600
1 0 0 -1
$EndComp
$Comp
L XB7840 U?
U 1 1 4A2056FE
-P 6600 4700
-F 0 "U?" H 6600 5100 60 0000 C CNN
-F 1 "XB7840" H 6600 5000 60 0000 C CNN
- 1 6600 4700
+P 9300 3350
+F 0 "U?" H 9300 3750 60 0000 C C
+F 1 "XB7840" H 9300 3650 60 0000 C C
+ 1 9300 3350
1 0 0 -1
$EndComp
$Comp
L XR3113D U?
U 1 1 4A205092
-P 5650 1350
-F 0 "U?" H 5650 1750 60 0000 C CNN
-F 1 "XR3113D" H 5650 1650 60 0000 C CNN
- 1 5650 1350
+P 9300 2050
+F 0 "U?" H 9300 2450 60 0000 C C
+F 1 "XR3113D" H 9300 2350 60 0000 C C
+ 1 9300 2050
1 0 0 -1
$EndComp
$Comp
L XSI1040X U?
U 1 1 4A181987
-P 4200 3400
-F 0 "U?" H 3750 3950 60 0000 C CNN
-F 1 "XSI1040X" H 3850 2850 60 0000 C CNN
- 1 4200 3400
+P 9300 4750
+F 0 "U?" H 8850 5300 60 0000 C C
+F 1 "XSI1040X" H 8950 4200 60 0000 C C
+ 1 9300 4750
1 0 0 -1
$EndComp
$EndSCHEMATC
Modified: trunk/gta02-core/gta02-core.pro
===================================================================
--- trunk/gta02-core/gta02-core.pro 2009-06-08 14:09:59 UTC (rev 5107)
+++ trunk/gta02-core/gta02-core.pro 2009-06-08 14:16:03 UTC (rev 5108)
@@ -1,4 +1,4 @@
-update=Sat May 23 12:20:01 2009
+update=8/6/2009-13:11:28
version=1
last_client=eeschema
[pcbnew]
@@ -106,37 +106,38 @@
LabSize=60
[eeschema/libraries]
LibName1=power
-LibName2=device
-LibName3=conn
-LibName4=./components/aat1275irn
-LibName5=./components/k4m51323pe
-LibName6=./components/lis302dl
-LibName7=./components/pcf50633-04-n3
-LibName8=./components/wm8753lgefl
-LibName9=./components/sc32442
-LibName10=./components/ms2v-t1s
-LibName11=./components/tas4025a
-LibName12=./components/rt9702
-LibName13=./components/rt9013_b
-LibName14=./components/exc24cb102u
-LibName15=./components/varistor
-LibName16=./components/fa2012
-LibName17=./components/rt9711_bd_5
-LibName18=./components/dtc123
-LibName19=./components/vibrator
-LibName20=./components/mini_usb_b
-LibName21=./components/smsn16.lib
-LibName22=./components/74x1g00_5.lib
-LibName23=./components/74x1g125.lib
-LibName24=./components/74x2g126.lib
-LibName25=./components/emh4.lib
-LibName26=./components/ht210.lib
-LibName27=./components/sw_push_4.lib
-LibName28=./components/r3113d.lib
-LibName29=./components/b7840.lib
-LibName30=./components/atr0610.lib
-LibName31=./components/it3205be.lib
-LibName32=./components/dfbm-cs320.lib
-LibName33=./components/gta02_wlan_s.lib
-LibName34=./components/gta02_wlan_h.lib
-LibName35=./components/td028ttec1.lib
+LibName2=./components/atr0635
+LibName3=device
+LibName4=conn
+LibName5=./components/aat1275irn
+LibName6=./components/k4m51323pe
+LibName7=./components/lis302dl
+LibName8=./components/pcf50633-04-n3
+LibName9=./components/wm8753lgefl
+LibName10=./components/sc32442
+LibName11=./components/ms2v-t1s
+LibName12=./components/tas4025a
+LibName13=./components/rt9702
+LibName14=./components/rt9013_b
+LibName15=./components/exc24cb102u
+LibName16=./components/varistor
+LibName17=./components/fa2012
+LibName18=./components/rt9711_bd_5
+LibName19=./components/dtc123
+LibName20=./components/vibrator
+LibName21=./components/mini_usb_b
+LibName22=./components/smsn16.lib
+LibName23=./components/74x1g00_5.lib
+LibName24=./components/74x1g125.lib
+LibName25=./components/74x2g126.lib
+LibName26=./components/emh4.lib
+LibName27=./components/ht210.lib
+LibName28=./components/sw_push_4.lib
+LibName29=./components/r3113d.lib
+LibName30=./components/b7840.lib
+LibName31=./components/atr0610.lib
+LibName32=./components/it3205be.lib
+LibName33=./components/dfbm-cs320.lib
+LibName34=./components/gta02_wlan_s.lib
+LibName35=./components/gta02_wlan_h.lib
+LibName36=./components/td028ttec1.lib
--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog