mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-06 05:14:40 +02:00
49a1bbdd05
- layer.h (enum pad_type): added pad type pt_trace - layer.c (pad_type_to_layers, layers_to_pad_type), inst.c (inst_pad): "trace" pad instantition and conversion infrastructure - fpd.y (pad_type), dump.c (print_obj): .fpd file I/O for "trace" pads - postscript.c (prologue): added Postscript function "horpath" to produce horizontal stripes - postscript.c (hatch): show "trace" pads with horizontal stripes - gui_style.h (gc_pad_trace), gui_style.c (gc_pad_trace, gui_setup_style), gui_inst.c (pad_gc): added visualization of "trace" pads - gui_status.c (show_pad_type): added "trace" pad type - README: added description of "trace" pads - README: added usage examples for the various pad types git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5998 99fdad57-331a-0410-800a-d7fa5415bdb3
84 lines
1.8 KiB
C
84 lines
1.8 KiB
C
/*
|
|
* layer.h - PCB layers on a pad
|
|
*
|
|
* Written 2009-2011 by Werner Almesberger
|
|
* Copyright 2009-2011 by Werner Almesberger
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef LAYER_H
|
|
#define LAYER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "overlap.h"
|
|
|
|
|
|
typedef uint32_t layer_type;
|
|
|
|
|
|
enum kicad_layer {
|
|
layer_bottom, /* "copper" */
|
|
layer_l15,
|
|
layer_l14,
|
|
layer_l13,
|
|
layer_l12,
|
|
layer_l11,
|
|
layer_l10,
|
|
layer_l9,
|
|
layer_l8,
|
|
layer_l7,
|
|
layer_l6,
|
|
layer_l5,
|
|
layer_l4,
|
|
layer_l3,
|
|
layer_l2,
|
|
layer_top, /* "component" */
|
|
layer_glue_bottom, /* adhesive, copper side */
|
|
layer_glue_top, /* adhesive, component side */
|
|
layer_paste_bottom, /* solder paste */
|
|
layer_paste_top,
|
|
layer_silk_bottom, /* silk screen */
|
|
layer_silk_top,
|
|
layer_mask_bottom, /* solder mask */
|
|
layer_mask_top,
|
|
layer_draw, /* general drawing */
|
|
layer_comment,
|
|
layer_eco1,
|
|
layer_eco2,
|
|
layer_edge, /* edge */
|
|
};
|
|
|
|
|
|
enum pad_type {
|
|
pt_normal, /* copper and solder mask */
|
|
pt_bare, /* only copper (and finish) */
|
|
pt_trace, /* only copper, without solder mask opening */
|
|
pt_paste, /* only solder paste */
|
|
pt_mask, /* only solder mask */
|
|
pt_n
|
|
};
|
|
|
|
|
|
/*
|
|
* pad_type_to_layers returns the initial set of layers. This set can then be
|
|
* modified by overlaying other pads. For display purposes, we translate back
|
|
* to the effective pad type with layers_to_pad_type.
|
|
*
|
|
* What this basically means is that pt_normal becomes pt_bare if its solder
|
|
* paste mask has been removed.
|
|
*/
|
|
|
|
layer_type pad_type_to_layers(enum pad_type type);
|
|
enum pad_type layers_to_pad_type(layer_type layers);
|
|
|
|
layer_type mech_hole_layers(void);
|
|
|
|
int refine_layers(enum allow_overlap allow);
|
|
|
|
#endif /* !LAYER_H */
|