···11-22-/****************************************************************************33- ******* *******44- ******* R T A H A R D W A R E55- ******* *******66- ****************************************************************************77-88- Author : Ian Nandhra99- Date :1010-1111- *1212- * (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.1313- *1414- * This program is free software; you can redistribute it and/or modify1515- * it under the terms of the GNU General Public License as published by1616- * the Free Software Foundation; either version 2 of the License, or1717- * (at your option) any later version.1818- *1919- * This program is distributed in the hope that it will be useful,2020- * but WITHOUT ANY WARRANTY; without even the implied warranty of2121- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the2222- * GNU General Public License for more details.2323- *2424- * You should have received a copy of the GNU General Public License2525- * along with this program; if not, write to the Free Software2626- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.2727-2828- Version : 0.012929-3030-3131- Mods3232- ----------------------------------------------------------------------------3333- Date By Description3434- ----------------------------------------------------------------------------3535-3636- ***************************************************************************/3737-3838-#ifndef lint3939-#ifdef SCCS_LABELS4040-static char *_rio_rtahw_h_sccs = "@(#)rtahw.h 1.5";4141-#endif4242-#endif4343-4444-#define WATCHDOG_ADDR ((unsigned short *)0x7a00)4545-#define RTA_LED_ADDR ((unsigned short *)0x7c00)4646-#define SERIALNUM_ADDR ((unsigned char *)0x7809)4747-#define LATCH_ADDR ((unsigned char *)0x7800)4848-4949-/*5050-** Here we define where the cd1400 chips are in memory.5151-*/5252-#define CD1400_ONE_ADDR (0x7300)5353-#define CD1400_TWO_ADDR (0x7200)5454-#define CD1400_THREE_ADDR (0x7100)5555-#define CD1400_FOUR_ADDR (0x7000)5656-5757-/*5858-** Define the different types of modules we can have5959-*/6060-enum module {6161- MOD_BLANK = 0x0f, /* Blank plate attached */6262- MOD_RS232DB25 = 0x00, /* RS232 DB25 connector */6363- MOD_RS232RJ45 = 0x01, /* RS232 RJ45 connector */6464- MOD_RS422DB25 = 0x02, /* RS422 DB25 connector */6565- MOD_RS485DB25 = 0x03, /* RS485 DB25 connector */6666- MOD_PARALLEL = 0x04 /* Centronics parallel */6767-};6868-6969-#define TYPE_HOST 07070-#define TYPE_RTA8 17171-#define TYPE_RTA16 27272-7373-#define WATCH_DOG WATCHDOG_ADDR7474-7575-/*********** end of file ***********/