PCB-FPW developer documentation based on version: 0.0.11

Functions | Variables

dip.c File Reference

Functions for DIP footprints. More...

Go to the source code of this file.

Functions

int dip_create_element ()
 Create an Element for a DIP package.
int dip_create_packages_list ()
 Create a list of DIP packages with pre-defined values.
int dip_drc ()
 Do some Design Rule Checking for the DIP package type.
int dip_get_default_footprint_values ()
 Look up default values for DIP footprint.
int dip_set_gui_constraints ()
 Set GUI constraints for the DIP package type.
int dip_write_footprint ()
 Write a DIP pin through hole footprint.
 REGISTER_FUNCTIONS (dip_function_list)
 A list containing all DIP related functions.

Variables

static fpw_function_t dip_function_list []
 A list containing all DIP related functions.

Detailed Description

Functions for DIP footprints.

Author:
Copyright (C) 2007, 2008, 2009, 2010, 2011 by Bert Timmerman <bert.timmerman@xs4all.nl> 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.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Definition in file dip.c.


Function Documentation

int dip_create_element (  ) 
int dip_create_packages_list (  ) 

Create a list of DIP packages with pre-defined values.

The data in this list can be used in a combo box to select a pre-defined package.

Returns:
EXIT_SUCCESS when a packages list was created, EXIT_FAILURE when errors were encountered.

Definition at line 325 of file dip.c.

int dip_drc (  ) 

Do some Design Rule Checking for the DIP package type.

  • check for allowed pad shapes.
  • check for zero sized packages.
  • check for a zero sized courtyard.
  • check for minimum clearance between copper (X-direction).
  • check for minimum clearance between copper (Y-direction).
  • If any fiducials exist:
    • check for zero fiducial pad diameter.
    • check for zero width solder mask clearance.
    • check for minimum clearance between copper (between pads and fiducials, if any fiducials exist).
  • check for clearance of the package length with regard to the courtyard dimensions.
  • check for clearance of the package width with regard to the courtyard dimensions.
  • check for any silk lines or texts touching bare copper.
  • check for soldermask clearance (solder mask overlapping copper at the solder fillet area or worse).
  • check for a reasonable silk line width.


Parameters: none.

Returns: EXIT_SUCCESS when no DRC violations were encountered, EXIT_FAILURE when DRC violations were found.

If any fiducials exist:

  • check for zero fiducial pad diameter.
  • check for zero width solder mask clearance.
    Todo:
Todo:
Check for minimum clearance between pad copper and fiducial pad copper (including solder mask clearances).
Todo:
Check for any silk lines or texts touching bare copper.
Todo:
Check for soldermask clearance (solder mask overlapping copper at the solder fillet area or worse).

Definition at line 395 of file dip.c.

References courtyard_clearance_with_package, courtyard_length, courtyard_width, fiducial, fiducial_pad_diameter, fiducial_pad_solder_mask_clearance, footprint_name, footprint_type, MIL, MIL_100, MM, NO_UNITS, package_body_height, package_body_length, package_body_width, pad_clearance, pad_diameter, pad_length, pad_shapes_type, pad_width, pitch_x, pitch_y, silkscreen_line_width, silkscreen_package_outline, units_type, and verbose.

Referenced by write_footprint().

int dip_get_default_footprint_values (  ) 

Look up default values for DIP footprint.

Footprint values can be looked up by placing a question mark "?" in front of the footprint name.
If the footprint name is recognised the values will be loaded and the entries involved in the GUI will be updated accordingly.
Currently the following footprints are supported:

  • DIP04300,
  • DIP06300,
  • DIP08300,
  • DIP08400,
  • DIP10300,
  • DIP14300,
  • DIP14400,
  • DIP16300,
  • DIP16400,
  • DIP18300,
  • DIP18400,
  • DIP20300,
  • DIP20400,
  • DIP22300,
  • DIP22400,
  • DIP24300,
  • DIP24400,
  • DIP24600,
  • DIP28300,
  • DIP28400,
  • DIP28600,
  • DIP32300,
  • DIP32600,
  • DIP36600,
  • DIP38600,
  • DIP40600,
  • DIP42600,
  • DIP48600,
  • DIP50900,
  • DIP52600,
  • DIP64900.

Parameters: *footprint_name a NULL terminated footprint name.

Returns: EXIT_SUCCESS when default values for a footprint were found, EXIT_FAILURE when the footprint name was not found.

Definition at line 725 of file dip.c.

References count_x, count_y, courtyard_line_width, fiducial, fiducial_pad_diameter, fiducial_pad_solder_mask_clearance, footprint_name, footprint_units, number_of_columns, number_of_pins, number_of_rows, package_body_height, package_body_length, package_body_width, package_is_radial, pad_clearance, pad_diameter, pad_shape, pad_shapes_type, pad_solder_mask_clearance, pin_drill_diameter, pitch_x, pitch_y, silkscreen_line_width, thermal, thermal_length, and thermal_width.

Referenced by on_footprint_name_entry_changed().

int dip_set_gui_constraints (  ) 

Set GUI constraints for the DIP package type.

Parameters: *widget is the caller widget.

Returns: none.

Definition at line 1727 of file dip.c.

References gui_constraints_disable_heel_and_toe_goals_tab_widgets(), gui_constraints_disable_thermal_tab_widgets(), UPPER_LEFT, and widget.

Referenced by on_footprint_type_entry_changed().

Here is the call graph for this function:

int dip_write_footprint (  ) 
REGISTER_FUNCTIONS ( dip_function_list   ) 

A list containing all DIP related functions.

Initialise by registering all DIP related functions. Parameters: none.

Returns: none.

Definition at line 2043 of file dip.c.


Variable Documentation

A list containing all DIP related functions.

Definition at line 1997 of file dip.c.