mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-22 08:38:26 +02:00
- added solder mask pad type (patch by Rene Harder)
git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5627 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
parent
5c37256c09
commit
76c3c1c1d0
1
README
1
README
@ -227,6 +227,7 @@ Type Layers
|
||||
(default) copper, solder mask, and solder paste
|
||||
bare copper and solder mask
|
||||
paste solder paste
|
||||
mask solder mask
|
||||
|
||||
|
||||
Rounded pads
|
||||
|
3
dump.c
3
dump.c
@ -328,6 +328,9 @@ char *print_obj(const struct obj *obj, const struct vec *prev)
|
||||
case pt_paste:
|
||||
s2 = " paste";
|
||||
break;
|
||||
case pt_mask:
|
||||
s2 = " mask";
|
||||
break;
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
|
2
fpd.y
2
fpd.y
@ -521,6 +521,8 @@ pad_type:
|
||||
$$ = pt_bare;
|
||||
else if (!strcmp($1, "paste"))
|
||||
$$ = pt_paste;
|
||||
else if (!strcmp($1, "mask"))
|
||||
$$ = pt_mask;
|
||||
else {
|
||||
yyerrorf("unknown pad type \"%s\"", $1);
|
||||
YYABORT;
|
||||
|
26
gui_inst.c
26
gui_inst.c
@ -263,8 +263,17 @@ void gui_draw_pad(struct inst *self)
|
||||
struct coord max = translate(self->u.pad.other);
|
||||
GdkGC *gc;
|
||||
|
||||
gc = self->obj->u.pad.type == pt_bare ?
|
||||
gc_pad_bare[get_mode(self)] : gc_pad[get_mode(self)];
|
||||
switch (self->obj->u.pad.type) {
|
||||
case pt_bare:
|
||||
gc = gc_pad_bare[get_mode(self)];
|
||||
break;
|
||||
case pt_mask:
|
||||
gc = gc_pad_mask[get_mode(self)];
|
||||
break;
|
||||
default:
|
||||
gc = gc_pad[get_mode(self)];
|
||||
break;
|
||||
}
|
||||
sort_coord(&min, &max);
|
||||
gdk_draw_rectangle(DA, gc, TRUE,
|
||||
min.x, min.y, max.x-min.x, max.y-min.y);
|
||||
@ -280,8 +289,17 @@ void gui_draw_rpad(struct inst *self)
|
||||
GdkGC *gc;
|
||||
unit_type h, w, r;
|
||||
|
||||
gc = self->obj->u.pad.type == pt_bare ?
|
||||
gc_pad_bare[get_mode(self)] : gc_pad[get_mode(self)];
|
||||
switch (self->obj->u.pad.type) {
|
||||
case pt_bare:
|
||||
gc = gc_pad_bare[get_mode(self)];
|
||||
break;
|
||||
case pt_mask:
|
||||
gc = gc_pad_mask[get_mode(self)];
|
||||
break;
|
||||
default:
|
||||
gc = gc_pad[get_mode(self)];
|
||||
break;
|
||||
}
|
||||
sort_coord(&min, &max);
|
||||
h = max.y-min.y;
|
||||
w = max.x-min.x;
|
||||
|
@ -26,6 +26,7 @@ GdkGC *gc_vec[mode_n];
|
||||
GdkGC *gc_obj[mode_n];
|
||||
GdkGC *gc_pad[mode_n];
|
||||
GdkGC *gc_pad_bare[mode_n];
|
||||
GdkGC *gc_pad_mask[mode_n];
|
||||
GdkGC *gc_ptext[mode_n];
|
||||
GdkGC *gc_meas[mode_n];
|
||||
GdkGC *gc_frame[mode_n];
|
||||
@ -65,6 +66,7 @@ void gui_setup_style(GdkDrawable *drawable)
|
||||
style(gc_obj, "#006060", "#00ffff", "#ffff80");
|
||||
style(gc_pad, "#400000", "#ff0000", "#ffff80");
|
||||
style(gc_pad_bare, "#402000", "#ff6000", "#ffff80");
|
||||
style(gc_pad_mask, "#000040", "#0000ff", "#ffff80");
|
||||
style(gc_ptext, "#404040", "#ffffff", "#ffffff");
|
||||
style(gc_meas, "#280040", "#ff00ff", "#ffff80");
|
||||
style(gc_frame, "#005000", "#009000", "#ffff80");
|
||||
|
@ -110,6 +110,7 @@ extern GdkGC *gc_vec[mode_n];
|
||||
extern GdkGC *gc_obj[mode_n];
|
||||
extern GdkGC *gc_pad[mode_n];
|
||||
extern GdkGC *gc_pad_bare[mode_n];
|
||||
extern GdkGC *gc_pad_mask[mode_n];
|
||||
extern GdkGC *gc_ptext[mode_n];
|
||||
extern GdkGC *gc_meas[mode_n];
|
||||
extern GdkGC *gc_frame[mode_n];
|
||||
|
3
kicad.c
3
kicad.c
@ -98,6 +98,9 @@ static void kicad_pad(FILE *file, const struct inst *inst)
|
||||
case pt_paste:
|
||||
layers = 1 << layer_paste_top;
|
||||
break;
|
||||
case pt_mask:
|
||||
layers = 1 << layer_mask_top;
|
||||
break;
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
|
1
obj.h
1
obj.h
@ -143,6 +143,7 @@ enum pad_type {
|
||||
pt_normal, /* copper and solder mask */
|
||||
pt_bare, /* only copper (and finish) */
|
||||
pt_paste, /* only solder paste */
|
||||
pt_mask, /* only solder mask */
|
||||
};
|
||||
|
||||
struct frame_ref {
|
||||
|
@ -198,6 +198,8 @@ static const char *hatch(enum pad_type type)
|
||||
return "hatchpath";
|
||||
case pt_paste:
|
||||
return "backhatchpath";
|
||||
case pt_mask:
|
||||
return "dotpath";
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user