~ubuntu-branches/ubuntu/precise/pcb/precise

« back to all changes in this revision

Viewing changes to lib/panasonic.inc

  • Committer: Bazaar Package Importer
  • Author(s): Hamish Moffatt
  • Date: 2005-02-20 13:14:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050220131400-pfz66g5vhx0azl8f
Tags: 1.99j+20050127-2
* Improved package description: (closes: #295405)
* Fixed dependency: tk84 -> tk8.4 (closes: #295404)
* Updated README.debian (closes: #269578)
* Applied patch to src/djopt.c to allow compilation with gcc-4.0
  (closes: #294319), thanks to Andreas Jochens for the patch.
* Prevent example files from being compressed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- m4 -*-
 
2
#
 
3
# $Id: panasonic.inc,v 1.4 2004/04/28 21:53:32 danmc Exp $
 
4
#                            COPYRIGHT
 
5
#
 
6
#   PCB, interactive printed circuit board design
 
7
#   Copyright (C) 2003, 2004 Dan McMahill
 
8
#
 
9
#   This program is free software; you can redistribute it and/or modify
 
10
#   it under the terms of the GNU General Public License as published by
 
11
#   the Free Software Foundation; either version 2 of the License, or
 
12
#   (at your option) any later version.
 
13
 
14
#   This program is distributed in the hope that it will be useful,
 
15
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
#   GNU General Public License for more details.
 
18
 
19
#   You should have received a copy of the GNU General Public License
 
20
#   along with this program; if not, write to the Free Software
 
21
#   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
22
 
23
 
24
#
 
25
#  Panasonic Specific Footprints
 
26
 
 
27
 
 
28
# EXTRACT_BEGIN
 
29
 
 
30
#
 
31
##  Panasonic EXB Series Chip Resistor Array
 
32
#
 
33
 
 
34
# COMMON_SMT_DIL_MM
 
35
# $4: number of pins
 
36
# $5: pad width  (1/100 mm)
 
37
# $6: pad length (1/100 mm)
 
38
# $7: pad pitch (1/100 mm)
 
39
# $8: pad seperation for pads on opposite sides of
 
40
#     the package (1/100 mm)
 
41
# $9: define to make the pins get numbered starting with the highest pin
 
42
#     instead of pin 1.  Needed for certain brain damaged packages like
 
43
#     the Mini-Circuits KK81
 
44
 
 
45
define(`PKG_PANASONIC_EXB14V',  `COMMON_SMT_DIL_MM(`$1',`$2',`$3',4,30,30,50,30)')
 
46
define(`PKG_PANASONIC_EXB24V',  `COMMON_SMT_DIL_MM(`$1',`$2',`$3',4,38,48,65,50)')
 
47
define(`PKG_PANASONIC_EXB28V',  `COMMON_SMT_DIL_MM(`$1',`$2',`$3',8,25,50,50,40)')
 
48
define(`PKG_PANASONIC_EXBV4V',  `COMMON_SMT_DIL_MM(`$1',`$2',`$3',4,43,70,80,80)')
 
49
define(`PKG_PANASONIC_EXBV8V',  `COMMON_SMT_DIL_MM(`$1',`$2',`$3',8,43,70,80,80)')
 
50
define(`PKG_PANASONIC_EXB34V',  `COMMON_SMT_DIL_MM(`$1',`$2',`$3',4,45,80,80,80)')
 
51
define(`PKG_PANASONIC_EXB38V',  `COMMON_SMT_DIL_MM(`$1',`$2',`$3',8,45,80,80,80)')
 
52
define(`PKG_PANASONIC_EXBS8V',  `COMMON_SMT_DIL_MM(`$1',`$2',`$3',8,63,120,127,110)')
 
53
define(`PKG_PANASONIC_EXB2HV',  `COMMON_SMT_DIL_MM(`$1',`$2',`$3',16,25,50,50,100)')
 
54
 
 
55
# EXTRACT_END
 
56