*** empty log message ***

This commit is contained in:
Jeff Hill
1992-08-06 18:28:41 +00:00
parent cfe0f3a37c
commit a20049b73d
2 changed files with 15 additions and 4 deletions

View File

@@ -45,9 +45,10 @@ static char SccsId[] = "@(#)bb902_driver.c $Id$ ";
*/
#include <vxWorks.h>
#include <vme.h>
#include <vme.h>
#include <module_types.h>
#include <drvsubs.h>
#define MAX_BB_BO_CARDS (bo_num_cards[BB902])
/* Burr-Brown 902 binary output memory structure */
struct bo_bb902{

View File

@@ -49,10 +49,20 @@
#include <vxWorks.h>
#include <vme.h>
#include <module_types.h>
#include <bi_driver.h>
#include <drvsubs.h>
static char SccsId[] = "@(#)bb910_driver.c 1.1\t9/22/88";
static char SccsId[] = "$Id$\t$Date$";
#define MAX_BB_BI_CARDS (bi_num_cards[BB910])
/* Burr-Brown 910 binary input memory structure */
/* Note: the high and low order words are switched from the io card */
struct bi_bb910{
unsigned short csr; /* control status register */
unsigned short low_value; /* low order 16 bits value */
unsigned short high_value; /* high order 16 bits value */
char end_pad[0x100-6]; /* pad until next card */
};
/* pointers to the binary input cards */
struct bi_bb910 *pbi_bb910s[MAX_BB_BI_CARDS]; /* Burr-Brown 910s */