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. r5440 - in trunk/eda/fped: . icons (wer...@docs.openmoko.org)
   2. r5441 - trunk/gta02-core/docs (wer...@docs.openmoko.org)
   3. r5442 - trunk/gta02-core/docs (wer...@docs.openmoko.org)
   4. r5443 - trunk/gta02-core/docs (wer...@docs.openmoko.org)
   5. r5444 - trunk/gta02-core/docs (wer...@docs.openmoko.org)
--- Begin Message ---
Author: werner
Date: 2009-08-14 12:18:40 +0200 (Fri, 14 Aug 2009)
New Revision: 5440

Added:
   trunk/eda/fped/icons/rpad.fig
Modified:
   trunk/eda/fped/Makefile
   trunk/eda/fped/README
   trunk/eda/fped/TODO
   trunk/eda/fped/dump.c
   trunk/eda/fped/fbga.fpd
   trunk/eda/fped/fpd.l
   trunk/eda/fped/fpd.y
   trunk/eda/fped/gui_frame.c
   trunk/eda/fped/gui_inst.c
   trunk/eda/fped/gui_inst.h
   trunk/eda/fped/gui_tool.c
   trunk/eda/fped/gui_tool.h
   trunk/eda/fped/inst.c
   trunk/eda/fped/kicad.c
   trunk/eda/fped/obj.h
   trunk/eda/fped/postscript.c
Log:
- added rounded pads 
- initialize item_widget to NULL if not showing items or bad things happen



Modified: trunk/eda/fped/Makefile
===================================================================
--- trunk/eda/fped/Makefile     2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/Makefile     2009-08-14 10:18:40 UTC (rev 5440)
@@ -16,9 +16,11 @@
        gui.o gui_util.o gui_style.o gui_inst.o gui_status.o gui_canvas.o \
        gui_tool.o gui_over.o gui_meas.o gui_frame.o
 
-XPMS = point.xpm delete.xpm vec.xpm frame.xpm frame_locked.xpm frame_ready.xpm 
\
-       line.xpm rect.xpm pad.xpm circ.xpm meas.xpm meas_x.xpm meas_y.xpm \
-       stuff.xpm stuff_off.xpm meas_off.xpm delete_off.xpm
+XPMS = point.xpm delete.xpm delete_off.xpm \
+       vec.xpm frame.xpm frame_locked.xpm frame_ready.xpm \
+       line.xpm rect.xpm pad.xpm rpad.xpm circ.xpm \
+       meas.xpm meas_x.xpm meas_y.xpm \
+       stuff.xpm stuff_off.xpm meas_off.xpm
 
 CFLAGS_GTK = `pkg-config --cflags gtk+-2.0`
 LIBS_GTK = `pkg-config --libs gtk+-2.0`

Modified: trunk/eda/fped/README
===================================================================
--- trunk/eda/fped/README       2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/README       2009-08-14 10:18:40 UTC (rev 5440)
@@ -199,6 +199,16 @@
 pad "1" @ .
 
 
+Rounded pads
+- - - - - -
+
+Rounded pads are like rectangular pads except that they end with a
+semi-circle at each of the smaller sides of the enclosing rectangle.
+If enclosed in a square, rounded pads form a circle.
+
+rpad "<name>" <point-a> <point-b>
+
+
 Measurements
 - - - - - -
 

Modified: trunk/eda/fped/TODO
===================================================================
--- trunk/eda/fped/TODO 2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/TODO 2009-08-14 10:18:40 UTC (rev 5440)
@@ -28,9 +28,6 @@
 - default silk width has no business being hard-coded in obj.c
 - undelete only works if not much has changed since the deletion
 - focus should return to canvas if nobody else wants it
-- when in uninstantiated mode, objects can be changed and then manipulated
-  through the unchanged instance. Tricky to fix without an alternate means to
-  access the object list. (Getting there.)
 
 Code cleanup:
 - merge edit_unique with edit_name

Modified: trunk/eda/fped/dump.c
===================================================================
--- trunk/eda/fped/dump.c       2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/dump.c       2009-08-14 10:18:40 UTC (rev 5440)
@@ -317,8 +317,8 @@
                break;
        case ot_pad:
                s1 = obj_base_name(obj->u.pad.other, prev);
-               s = stralloc_printf("pad \"%s\" %s %s",
-                   obj->u.pad.name, base, s1);
+               s = stralloc_printf("%spad \"%s\" %s %s",
+                   obj->u.pad.rounded ? "r" : "", obj->u.pad.name, base, s1);
                free(s1);
                break;
        case ot_arc:

Modified: trunk/eda/fped/fbga.fpd
===================================================================
--- trunk/eda/fped/fbga.fpd     2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/fbga.fpd     2009-08-14 10:18:40 UTC (rev 5440)
@@ -12,7 +12,7 @@
        __0: vec @(col*e-Px/2, row*-e-Py/2)
        __1: vec .(0mm, Py)
        __2: vec __0(Px, 0mm)
-       pad "$rname$cname" __1 .
+       rpad "$rname$cname" __1 .
 }
 
 frame inner {

Modified: trunk/eda/fped/fpd.l
===================================================================
--- trunk/eda/fped/fpd.l        2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/fpd.l        2009-08-14 10:18:40 UTC (rev 5440)
@@ -85,6 +85,8 @@
                                  return TOK_VEC; }
 <INITIAL>"pad"                 { BEGIN(NOKEYWORD);
                                  return TOK_PAD; }
+<INITIAL>"rpad"                        { BEGIN(NOKEYWORD);
+                                 return TOK_RPAD; }
 <INITIAL>"rect"                        { BEGIN(NOKEYWORD);
                                  return TOK_RECT; }
 <INITIAL>"line"                        { BEGIN(NOKEYWORD);

Modified: trunk/eda/fped/fpd.y
===================================================================
--- trunk/eda/fped/fpd.y        2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/fpd.y        2009-08-14 10:18:40 UTC (rev 5440)
@@ -151,7 +151,7 @@
 
 %token         START_FPD START_EXPR
 %token         TOK_SET TOK_LOOP TOK_PART TOK_FRAME TOK_TABLE TOK_VEC
-%token         TOK_PAD TOK_RECT TOK_LINE TOK_CIRC TOK_ARC
+%token         TOK_PAD TOK_RPAD TOK_RECT TOK_LINE TOK_CIRC TOK_ARC
 %token         TOK_MEAS TOK_MEASX TOK_MEASY
 %token         TOK_NEXT TOK_NEXT_INVERTED TOK_MAX TOK_MAX_INVERTED
 
@@ -419,7 +419,16 @@
                        $$->base = $3;
                        $$->u.pad.name = $2;
                        $$->u.pad.other = $4;
+                       $$->u.pad.rounded = 0;
                }
+       | TOK_RPAD STRING base base
+               {
+                       $$ = new_obj(ot_pad);
+                       $$->base = $3;
+                       $$->u.pad.name = $2;
+                       $$->u.pad.other = $4;
+                       $$->u.pad.rounded = 1;
+               }
        | TOK_RECT base base opt_expr
                {
                        $$ = new_obj(ot_rect);

Modified: trunk/eda/fped/gui_frame.c
===================================================================
--- trunk/eda/fped/gui_frame.c  2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/gui_frame.c  2009-08-14 10:18:40 UTC (rev 5440)
@@ -938,7 +938,8 @@
                label = inst->vec->list_widget;
        else
                label = inst->obj->list_widget;
-       label_in_box_bg(box_of_label(label), color);
+       if (label)
+               label_in_box_bg(box_of_label(label), color);
 }
 
 
@@ -1100,6 +1101,18 @@
 }
 
 
+static void dont_build_items(struct frame *frame)
+{
+       struct vec *vec;
+       struct obj *obj;
+
+       for (vec = frame->vecs; vec; vec = vec->next)
+               vec->list_widget = NULL;
+       for (obj = frame->objs; obj; obj = obj->next)
+               obj->list_widget = NULL;
+}
+
+
 /* ----- part name --------------------------------------------------------- */
 
 
@@ -1323,6 +1336,7 @@
                        vars = build_vars(frame);
                        gtk_table_attach_defaults(GTK_TABLE(tab), vars,
                            1, 2, n*2+2, n*2+3);
+                       dont_build_items(frame);
                } else {
                        items = build_items(frame);
                        gtk_table_attach_defaults(GTK_TABLE(tab), items,

Modified: trunk/eda/fped/gui_inst.c
===================================================================
--- trunk/eda/fped/gui_inst.c   2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/gui_inst.c   2009-08-14 10:18:40 UTC (rev 5440)
@@ -235,7 +235,7 @@
 }
 
 
-void gui_draw_pad(struct inst *self)
+static void gui_draw_pad_text(struct inst *self)
 {
        struct coord min = translate(self->base);
        struct coord max = translate(self->u.pad.other);
@@ -243,12 +243,8 @@
        struct coord c;
        unit_type h, w;
 
-       gc = gc_pad[get_mode(self)];
+       gc = gc_ptext[get_mode(self)];
        sort_coord(&min, &max);
-       gdk_draw_rectangle(DA, gc, TRUE,
-           min.x, min.y, max.x-min.x, max.y-min.y);
-
-       gc = gc_ptext[get_mode(self)];
        c = add_vec(min, max);
        h = max.y-min.y;
        w = max.x-min.x;
@@ -258,6 +254,48 @@
 }
 
 
+void gui_draw_pad(struct inst *self)
+{
+       struct coord min = translate(self->base);
+       struct coord max = translate(self->u.pad.other);
+       GdkGC *gc;
+
+       gc = gc_pad[get_mode(self)];
+       sort_coord(&min, &max);
+       gdk_draw_rectangle(DA, gc, TRUE,
+           min.x, min.y, max.x-min.x, max.y-min.y);
+
+       gui_draw_pad_text(self);
+}
+
+
+void gui_draw_rpad(struct inst *self)
+{
+       struct coord min = translate(self->base);
+       struct coord max = translate(self->u.pad.other);
+       GdkGC *gc;
+       unit_type h, w, r;
+
+       gc = gc_pad[get_mode(self)];
+       sort_coord(&min, &max);
+       h = max.y-min.y;
+       w = max.x-min.x;
+       if (h > w) {
+               r = w/2;
+               draw_arc(DA, gc, TRUE, min.x+r, max.y-r, r, 180, 0);
+               gdk_draw_rectangle(DA, gc, TRUE, min.x, min.y+r, w, h-2*r);
+               draw_arc(DA, gc, TRUE, min.x+r, min.y+r, r, 0, 180);
+       } else {
+               r = h/2;
+               draw_arc(DA, gc, TRUE, min.x+r, min.y+r, r, 90, 270);
+               gdk_draw_rectangle(DA, gc, TRUE, min.x+r, min.y, w-2*r, h);
+               draw_arc(DA, gc, TRUE, max.x-r, min.y+r, r, 270, 90);
+       }
+
+       gui_draw_pad_text(self);
+}
+
+
 /* ----- arc --------------------------------------------------------------- */
 
 

Modified: trunk/eda/fped/gui_inst.h
===================================================================
--- trunk/eda/fped/gui_inst.h   2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/gui_inst.h   2009-08-14 10:18:40 UTC (rev 5440)
@@ -39,6 +39,7 @@
 void gui_draw_line(struct inst *self);
 void gui_draw_rect(struct inst *self);
 void gui_draw_pad(struct inst *self);
+void gui_draw_rpad(struct inst *self);
 void gui_draw_arc(struct inst *self);
 void gui_draw_meas(struct inst *self);
 void gui_draw_frame(struct inst *self);

Modified: trunk/eda/fped/gui_tool.c
===================================================================
--- trunk/eda/fped/gui_tool.c   2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/gui_tool.c   2009-08-14 10:18:40 UTC (rev 5440)
@@ -39,6 +39,7 @@
 #include "icons/meas_x.xpm"
 #include "icons/meas_y.xpm"
 #include "icons/pad.xpm"
+#include "icons/rpad.xpm"
 #include "icons/point.xpm"
 #include "icons/delete.xpm"
 #include "icons/delete_off.xpm"
@@ -377,6 +378,7 @@
        obj = new_obj(ot_pad, from);
        obj->u.pad.other = inst_get_vec(to);
        obj->u.pad.name = stralloc("?");
+       obj->u.pad.rounded = 0;
        return 1;
 }
 
@@ -393,6 +395,35 @@
 };
 
 
+/* ----- rounded pad ------------------------------------------------------- */
+
+
+static int end_new_rpad(struct inst *from, struct inst *to)
+{
+       struct obj *obj;
+
+       if (from == to)
+               return 0;
+       obj = new_obj(ot_pad, from);
+       obj->u.pad.other = inst_get_vec(to);
+       obj->u.pad.name = stralloc("?");
+       obj->u.pad.rounded = 1;
+       return 1;
+}
+
+
+struct pix_buf *draw_move_rpad(struct inst *inst, struct coord pos, int i)
+{
+       return draw_move_rect_common(inst, inst->u.pad.other, pos, i);
+}
+
+
+static struct tool_ops rpad_ops = {
+       .drag_new       = drag_new_rect,
+       .end_new        = end_new_rpad,
+};
+
+
 /* ----- circ -------------------------------------------------------------- */
 
 
@@ -989,6 +1020,8 @@
            tool_button_press_event, &frame_ops);
        tool_button(bar, drawable, xpm_pad,
            tool_button_press_event, &pad_ops);
+       tool_button(bar, drawable, xpm_rpad,
+           tool_button_press_event, &rpad_ops);
        tool_button(bar, drawable, xpm_line,
            tool_button_press_event, &line_ops);
        tool_button(bar, drawable, xpm_rect,

Modified: trunk/eda/fped/gui_tool.h
===================================================================
--- trunk/eda/fped/gui_tool.h   2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/gui_tool.h   2009-08-14 10:18:40 UTC (rev 5440)
@@ -35,6 +35,7 @@
 struct pix_buf *draw_move_line(struct inst *inst, struct coord pos, int i);
 struct pix_buf *draw_move_rect(struct inst *inst, struct coord pos, int i);
 struct pix_buf *draw_move_pad(struct inst *inst, struct coord pos, int i);
+struct pix_buf *draw_move_rpad(struct inst *inst, struct coord pos, int i);
 struct pix_buf *draw_move_arc(struct inst *inst, struct coord pos, int i);
 struct pix_buf *draw_move_meas(struct inst *inst, struct coord pos, int i);
 struct pix_buf *draw_move_frame(struct inst *inst, struct coord pos, int i);

Added: trunk/eda/fped/icons/rpad.fig
===================================================================
--- trunk/eda/fped/icons/rpad.fig                               (rev 0)
+++ trunk/eda/fped/icons/rpad.fig       2009-08-14 10:18:40 UTC (rev 5440)
@@ -0,0 +1,17 @@
+#FIG 3.2  Produced by xfig version 3.2.5a
+Landscape
+Center
+Inches
+A4      
+100.00
+Single
+-2
+1200 2
+5 1 0 0 0 4 50 -1 20 0.000 0 1 0 0 4800.000 3825.000 4125 3825 4800 4500 5475 
3825
+5 1 0 0 0 4 50 -1 20 0.000 0 0 0 0 4800.000 3375.000 4125 3375 4800 2700 5475 
3375
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        3600 2400 6000 2400 6000 4800 3600 4800 3600 2400
+2 1 0 15 7 7 45 -1 -1 0.000 1 1 -1 0 0 3
+        4875 4050 4875 3150 4650 3375
+2 2 0 0 0 4 50 -1 20 0.000 0 0 -1 0 0 5
+        4125 3375 5475 3375 5475 3825 4125 3825 4125 3375

Modified: trunk/eda/fped/inst.c
===================================================================
--- trunk/eda/fped/inst.c       2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/inst.c       2009-08-14 10:18:40 UTC (rev 5440)
@@ -619,7 +619,7 @@
 }
 
 
-/* ----- pad --------------------------------------------------------------- */
+/* ----- pad / rpad -------------------------------------------------------- */
 
 
 static void pad_op_debug(struct inst *self)
@@ -630,6 +630,13 @@
 }
 
 
+static void rpad_op_debug(struct inst *self)
+{
+       printf("r");
+       pad_op_debug(self);
+}
+
+
 static int validate_pad_name(const char *s, void *ctx)
 {
        char *tmp;
@@ -677,11 +684,21 @@
 };
 
 
+static struct inst_ops rpad_ops = {
+       .debug          = rpad_op_debug,
+       .draw           = gui_draw_rpad,
+       .distance       = gui_dist_pad, /* @@@ */
+       .select         = pad_op_select,
+       .anchors        = pad_op_anchors,
+       .draw_move      = draw_move_rpad,
+};
+
+
 int inst_pad(struct obj *obj, const char *name, struct coord a, struct coord b)
 {
        struct inst *inst;
 
-       inst = add_inst(&pad_ops, ip_pad, a);
+       inst = add_inst(obj->u.pad.rounded ? &rpad_ops : &pad_ops, ip_pad, a);
        inst->obj = obj;
        inst->u.pad.name = stralloc(name);
        inst->u.pad.other = b;

Modified: trunk/eda/fped/kicad.c
===================================================================
--- trunk/eda/fped/kicad.c      2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/kicad.c      2009-08-14 10:18:40 UTC (rev 5440)
@@ -78,8 +78,9 @@
        /*
         * name, shape (rectangle), Xsize, Ysize, Xdelta, Ydelta, Orientation
         */
-       fprintf(file, "Sh \"%s\" R %d %d 0 0 0\n",
-           inst->u.pad.name, max.x-min.x, max.y-min.y);
+       fprintf(file, "Sh \"%s\" %c %d %d 0 0 0\n",
+           inst->u.pad.name, inst->obj->u.pad.rounded ? 'O' : 'R',
+           max.x-min.x, max.y-min.y);
 
        /*
         * Attributes: pad type, N, layer mask

Modified: trunk/eda/fped/obj.h
===================================================================
--- trunk/eda/fped/obj.h        2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/obj.h        2009-08-14 10:18:40 UTC (rev 5440)
@@ -104,7 +104,7 @@
        struct sample *samples;
 
        /* for the GUI */
-       GtkWidget *list_widget;
+       GtkWidget *list_widget; /* NULL if items aren't shown */
 };
 
 struct frame {
@@ -148,6 +148,7 @@
 struct pad {
        char *name;
        struct vec *other; /* NULL if frame origin */
+       int rounded;
 };
 
 struct arc {
@@ -175,7 +176,7 @@
        int dumped;
 
        /* for the GUI */
-       GtkWidget *list_widget;
+       GtkWidget *list_widget; /* NULL if items are not shown */
 };
 
 

Modified: trunk/eda/fped/postscript.c
===================================================================
--- trunk/eda/fped/postscript.c 2009-08-14 08:28:01 UTC (rev 5439)
+++ trunk/eda/fped/postscript.c 2009-08-14 10:18:40 UTC (rev 5440)
@@ -48,6 +48,33 @@
 }
 
 
+static void ps_rpad(FILE *file, const struct inst *inst)
+{
+       struct coord a = inst->base;
+       struct coord b = inst->u.pad.other;
+       unit_type h, w, r;
+
+       sort_coord(&a, &b);
+       h = b.y-a.y;
+       w = b.x-a.x;
+       fprintf(file, "0 setgray %d setlinewidth\n", HATCH_LINE);
+       if (h > w) {
+               r = w/2;
+               fprintf(file, "  %d %d moveto\n", b.x, b.y-r);
+               fprintf(file, "  %d %d %d 0 180 arc\n", a.x+r, b.y-r, r);
+               fprintf(file, "  %d %d lineto\n", a.x, a.y+r);
+               fprintf(file, "  %d %d %d 180 360 arc\n", a.x+r, a.y+r, r);
+       } else {
+               r = h/2;
+               fprintf(file, "  %d %d moveto\n", b.x-r, a.y);
+               fprintf(file, "  %d %d %d -90 90 arc\n", b.x-r, a.y+r, r);
+               fprintf(file, "  %d %d lineto\n", a.x+r, b.y);
+               fprintf(file, "  %d %d %d 90 270 arc\n", a.x+r, a.y+r, r);
+       }
+       fprintf(file, "  closepath gsave hatchpath grestore stroke\n");
+}
+
+
 static void ps_line(FILE *file, const struct inst *inst)
 {
        struct coord a = inst->base;
@@ -131,7 +158,10 @@
 {
        switch (prio) {
        case ip_pad:
-               ps_pad(file, inst);
+               if (inst->obj->u.pad.rounded)
+                       ps_rpad(file, inst);
+               else
+                       ps_pad(file, inst);
                break;
        case ip_vec:
                if (postscript_params.show_stuff)




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-08-14 13:27:00 +0200 (Fri, 14 Aug 2009)
New Revision: 5441

Added:
   trunk/gta02-core/docs/PACKAGES
Log:
A package dictionary.



Added: trunk/gta02-core/docs/PACKAGES
===================================================================
--- trunk/gta02-core/docs/PACKAGES                              (rev 0)
+++ trunk/gta02-core/docs/PACKAGES      2009-08-14 11:27:00 UTC (rev 5441)
@@ -0,0 +1,34 @@
+Leads  Pitch   Size            NXP     Names
+3      0.5 mm  1.6 x 0.8 mm    SOT416  SC-75
+3      0.5 mm  1.6 x 0.85mm    SOT490  SC-89
+3      0.5 mm  1.6 x 1.2 mm    SOT663  SOT3
+3      0.65mm  2.0 x 1.25mm    SOT323  SC-70
+3      0.95mm  2.9 x 1.5 mm    SOT23   TO-236AB
+3      0.95mm  2.9 x 1.5 mm    SOT346  SC-59A, SMT3, MPAK, TO-236
+
+5      0.5 mm  1.6 x 1.2 mm    SOT665  SOT5
+5      0.65mm  2.0 x 1.25mm    SOT353  SC-88A, UMT5
+5      0.65mm  2.05x 1.25mm    SOT353-1 SC-88A, TSSOP5
+5      0.95mm  2.9 x 1.5 mm    SOT753  SC-74A, SO5
+5      0.95mm  2.9 x 1.6 mm    SOT680-1 SO5, MO-178
+
+6      0.5 mm  1.6 x 1.2 mm    SOT666  SS-Mini, SOT-563
+6      0.65mm  2.0 x 1.25mm    SOT363  SC-88, SC-70-6
+6      0.95mm  2.9 x 1.5 mm    SOT457  SC-74
+
+SOT23: http://www.nxp.com/#/page/content=[f=/packages/SOT23.xml]
+SOT323:        http://www.nxp.com/#/page/content=[f=/packages/SOT323.xml]
+SOT346:        http://www.nxp.com/#/page/content=[f=/packages/SOT346.xml]
+SOT353:        http://www.nxp.com/#/page/content=[f=/packages/SOT353.xml]
+SOT353-1: http://www.nxp.com/#/page/content=[f=/packages/SOT353-1.xml]
+SOT363:        http://www.nxp.com/#/page/content=[f=/packages/SOT363.xml]
+SOT416:        http://www.nxp.com/#/page/content=[f=/packages/SOT416.xml]
+SOT457:        http://www.nxp.com/#/page/content=[f=/packages/SOT457.xml]
+SOT490:        http://www.nxp.com/#/page/content=[f=/packages/SOT490.xml]
+SOT663:        http://www.nxp.com/#/page/content=[f=/packages/SOT663.xml]
+SOT665:        http://www.nxp.com/#/page/content=[f=/packages/SOT665.xml]
+SOT666:        http://www.nxp.com/#/page/content=[f=/packages/SOT666.xml]
+SOT680-1: http://www.nxp.com/#/page/content=[f=/packages/SOT680-1.xml]
+SOT753:        http://www.nxp.com/#/page/content=[f=/packages/SOT753.xml]
+
+* SOT23 =? SOT346




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-08-14 13:32:37 +0200 (Fri, 14 Aug 2009)
New Revision: 5442

Modified:
   trunk/gta02-core/docs/PACKAGES
Log:
Added SON1408-3 aka MFPAK.



Modified: trunk/gta02-core/docs/PACKAGES
===================================================================
--- trunk/gta02-core/docs/PACKAGES      2009-08-14 11:27:00 UTC (rev 5441)
+++ trunk/gta02-core/docs/PACKAGES      2009-08-14 11:32:37 UTC (rev 5442)
@@ -1,4 +1,5 @@
 Leads  Pitch   Size            NXP     Names
+3      0.45mm  1.4 x 0.8 mm    -       SON1408-3, MFPAK
 3      0.5 mm  1.6 x 0.8 mm    SOT416  SC-75
 3      0.5 mm  1.6 x 0.85mm    SOT490  SC-89
 3      0.5 mm  1.6 x 1.2 mm    SOT663  SOT3
@@ -16,6 +17,8 @@
 6      0.65mm  2.0 x 1.25mm    SOT363  SC-88, SC-70-6
 6      0.95mm  2.9 x 1.5 mm    SOT457  SC-74
 
+SON1408-3: http://www.ricoh.com/LSI/product_power/pkg/son-1408-3.pdf
+       
http://sg.renesas.com/media/products/common_info/package/pdf/transistor/code/pusf0003za_a.pdf
 SOT23: http://www.nxp.com/#/page/content=[f=/packages/SOT23.xml]
 SOT323:        http://www.nxp.com/#/page/content=[f=/packages/SOT323.xml]
 SOT346:        http://www.nxp.com/#/page/content=[f=/packages/SOT346.xml]




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-08-14 13:52:36 +0200 (Fri, 14 Aug 2009)
New Revision: 5443

Modified:
   trunk/gta02-core/docs/PACKAGES
Log:
Added SC-89-6.



Modified: trunk/gta02-core/docs/PACKAGES
===================================================================
--- trunk/gta02-core/docs/PACKAGES      2009-08-14 11:32:37 UTC (rev 5442)
+++ trunk/gta02-core/docs/PACKAGES      2009-08-14 11:52:36 UTC (rev 5443)
@@ -1,22 +1,26 @@
-Leads  Pitch   Size            NXP     Names
-3      0.45mm  1.4 x 0.8 mm    -       SON1408-3, MFPAK
-3      0.5 mm  1.6 x 0.8 mm    SOT416  SC-75
-3      0.5 mm  1.6 x 0.85mm    SOT490  SC-89
-3      0.5 mm  1.6 x 1.2 mm    SOT663  SOT3
-3      0.65mm  2.0 x 1.25mm    SOT323  SC-70
-3      0.95mm  2.9 x 1.5 mm    SOT23   TO-236AB
-3      0.95mm  2.9 x 1.5 mm    SOT346  SC-59A, SMT3, MPAK, TO-236
+Leads  Pitch   Size            NXP             Names
+3      0.45mm  1.4 x 0.8 mm    -               SON1408-3, MFPAK
+3      0.5 mm  1.6 x 0.8 mm    SOT416          SC-75
+3      0.5 mm  1.6 x 0.85mm    SOT490          SC-89
+3      0.5 mm  1.6 x 1.2 mm    SOT663          SOT3
+3      0.65mm  2.0 x 1.25mm    SOT323          SC-70
+3      0.95mm  2.9 x 1.5 mm    SOT23           TO-236AB
+3      0.95mm  2.9 x 1.5 mm    SOT346          SC-59A, SMT3, MPAK, TO-236
 
-5      0.5 mm  1.6 x 1.2 mm    SOT665  SOT5
-5      0.65mm  2.0 x 1.25mm    SOT353  SC-88A, UMT5
-5      0.65mm  2.05x 1.25mm    SOT353-1 SC-88A, TSSOP5
-5      0.95mm  2.9 x 1.5 mm    SOT753  SC-74A, SO5
-5      0.95mm  2.9 x 1.6 mm    SOT680-1 SO5, MO-178
+5      0.5 mm  1.6 x 1.2 mm    SOT665          SOT5
+5      0.65mm  2.0 x 1.25mm    SOT353          SC-88A, UMT5
+5      0.65mm  2.05x 1.25mm    SOT353-1        SC-88A, TSSOP5
+5      0.95mm  2.9 x 1.5 mm    SOT753          SC-74A, SO5
+5      0.95mm  2.9 x 1.6 mm    SOT680-1        SO5, MO-178
 
-6      0.5 mm  1.6 x 1.2 mm    SOT666  SS-Mini, SOT-563
-6      0.65mm  2.0 x 1.25mm    SOT363  SC-88, SC-70-6
-6      0.95mm  2.9 x 1.5 mm    SOT457  SC-74
+6      0.5 mm  1.6 x 1.2 mm    SOT666          SS-Mini, SOT-563
+6      0.5 mm  1.6 x 1.2 mm    -               SC-89-6, SOT-563F
+6      0.65mm  2.0 x 1.25mm    SOT363          SC-88, SC-70-6
+6      0.95mm  2.9 x 1.5 mm    SOT457          SC-74
 
+SC-89-6: http://www.protekdevices.com/pdfFiles/packageOutlines/sot563_pack.pdf
+       http://www.vishay.com/docs/71612/71612.pdf
+       http://www.vishay.com/docs/72605/72605.pdf
 SON1408-3: http://www.ricoh.com/LSI/product_power/pkg/son-1408-3.pdf
        
http://sg.renesas.com/media/products/common_info/package/pdf/transistor/code/pusf0003za_a.pdf
 SOT23: http://www.nxp.com/#/page/content=[f=/packages/SOT23.xml]




--- End Message ---
--- Begin Message ---
Author: werner
Date: 2009-08-14 16:39:17 +0200 (Fri, 14 Aug 2009)
New Revision: 5444

Modified:
   trunk/gta02-core/docs/kicad-wishlist
Log:
- kicad-wishlist: relative paths work now - removed item
- kicad-wishlist: printing issues may no longer exist (and are less urgent,
  now that plotting has gotten so much better)



Modified: trunk/gta02-core/docs/kicad-wishlist
===================================================================
--- trunk/gta02-core/docs/kicad-wishlist        2009-08-14 11:52:36 UTC (rev 
5443)
+++ trunk/gta02-core/docs/kicad-wishlist        2009-08-14 14:39:17 UTC (rev 
5444)
@@ -45,23 +45,6 @@
   Status: dabbled a bit with it, but don't really have anything to show.
 
 
-- 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,
@@ -105,8 +88,8 @@
 
 - Fix wx plot and print
 
-  [ Add more description. Not sure if any actual coding is needed,
-    or just integration. ]
+  [ Add more description. Not sure if any actual coding is needed, or
+    just integration. Also, need to check if issues still persist. ]
 
   http://tech.groups.yahoo.com/group/kicad-devel/message/2649
   http://tech.groups.yahoo.com/group/kicad-devel/message/2653




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

Reply via email to