blob: 80424a26a169715532dbd7fbc46a1cbeed535f62 [file] [log] [blame]
Bob Beers50ee11f2010-03-04 08:40:46 -05001/*
2 * $Id: comet_tables.h,v 1.5 2006/01/02 22:37:31 rickd PMCC4_3_1B $
3 */
4
5#ifndef _INC_COMET_TBLS_H_
6#define _INC_COMET_TBLS_H_
7
8/*-----------------------------------------------------------------------------
9 * comet_tables.h - Waveform Tables for the PM4351 'COMET'
10 *
11 * Copyright (C) 2005 SBE, Inc.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * For further information, contact via email: support@sbei.com
24 * SBE, Inc. San Ramon, California U.S.A.
25 *-----------------------------------------------------------------------------
26 * RCS info:
27 * RCS revision: $Revision: 1.5 $
28 * Last changed on $Date: 2006/01/02 22:37:31 $
29 * Changed by $Author: rickd $
30 *-----------------------------------------------------------------------------
31 * $Log: comet_tables.h,v $
32 * Revision 1.5 2006/01/02 22:37:31 rickd
33 * Double indexed arrays need sizings to avoid CC errors under
34 * gcc 4.0.0
35 *
36 * Revision 1.4 2005/10/17 23:55:28 rickd
37 * The 75 Ohm transmit waveform is not supported on PMCC4.
38 *
39 * Revision 1.3 2005/09/28 00:10:08 rickd
40 * Add GNU License info. Structures moved to -C- file.
41 *
42 * Revision 1.2 2005/04/28 23:43:04 rickd
43 * Add RCS tracking heading.
44 *
45 *-----------------------------------------------------------------------------
46 */
47
48
49/*****************************************************************************
50*
51* Array names:
52*
53* TWVLongHaul0DB
54* TWVLongHaul7_5DB
55* TWVLongHaul15DB
56* TWVLongHaul22_5DB
57* TWVShortHaul0
58* TWVShortHaul1
59* TWVShortHaul2
60* TWVShortHaul3
61* TWVShortHaul4
62* TWVShortHaul5
63* TWV_E1_120Ohm
64* TWV_E1_75Ohm <not supported>
65* T1_Equalizer
66* E1_Equalizer
67*
68*****************************************************************************/
69
70extern u_int8_t TWVLongHaul0DB[25][5]; /* T1 Long Haul 0 DB */
71extern u_int8_t TWVLongHaul7_5DB[25][5]; /* T1 Long Haul 7.5 DB */
72extern u_int8_t TWVLongHaul15DB[25][5]; /* T1 Long Haul 15 DB */
73extern u_int8_t TWVLongHaul22_5DB[25][5]; /* T1 Long Haul 22.5 DB */
74extern u_int8_t TWVShortHaul0[25][5]; /* T1 Short Haul 0-110 ft */
75extern u_int8_t TWVShortHaul1[25][5]; /* T1 Short Haul 110-220 ft */
76extern u_int8_t TWVShortHaul2[25][5]; /* T1 Short Haul 220-330 ft */
77extern u_int8_t TWVShortHaul3[25][5]; /* T1 Short Haul 330-440 ft */
78extern u_int8_t TWVShortHaul4[25][5]; /* T1 Short Haul 440-550 ft */
79extern u_int8_t TWVShortHaul5[25][5]; /* T1 Short Haul 550-660 ft */
80extern u_int8_t TWV_E1_75Ohm[25][5]; /* E1 75 Ohm */
81extern u_int8_t TWV_E1_120Ohm[25][5]; /* E1 120 Ohm */
82extern u_int32_t T1_Equalizer[256]; /* T1 Receiver Equalizer */
83extern u_int32_t E1_Equalizer[256]; /* E1 Receiver Equalizer */
84
85#endif /* _INC_COMET_TBLS_H_ */