117 lines
2.8 KiB
C
117 lines
2.8 KiB
C
/* devMbboXVme220.c */
|
||
/* share/src/dev $Id$ */
|
||
|
||
/* devMbboXVme220.c - Device Support Routines */
|
||
/* XYcom 32 bit binary output */
|
||
/*
|
||
* Original Author: Bob Dalesio
|
||
* Current Author: Marty Kraimer
|
||
* Date: 6-1-90
|
||
*
|
||
* Experimental Physics and Industrial Control System (EPICS)
|
||
*
|
||
* Copyright 1991, the Regents of the University of California,
|
||
* and the University of Chicago Board of Governors.
|
||
*
|
||
* This software was produced under U.S. Government contracts:
|
||
* (W-7405-ENG-36) at the Los Alamos National Laboratory,
|
||
* and (W-31-109-ENG-38) at Argonne National Laboratory.
|
||
*
|
||
* Initial development by:
|
||
* The Controls and Automation Group (AT-8)
|
||
* Ground Test Accelerator
|
||
* Accelerator Technology Division
|
||
* Los Alamos National Laboratory
|
||
*
|
||
* Co-developed with
|
||
* The Controls and Computing Group
|
||
* Accelerator Systems Division
|
||
* Advanced Photon Source
|
||
* Argonne National Laboratory
|
||
*
|
||
* Modification Log:
|
||
* -----------------
|
||
* .01 11-11-91 jba Moved set of alarm stat and sevr to macros
|
||
* ...
|
||
*/
|
||
|
||
|
||
#include <vxWorks.h>
|
||
#include <types.h>
|
||
#include <stdioLib.h>
|
||
|
||
#include <alarm.h>
|
||
#include <dbAccess.h>
|
||
#include <dbDefs.h>
|
||
#include <recSup.h>
|
||
#include <devSup.h>
|
||
#include <link.h>
|
||
#include <module_types.h>
|
||
#include <mbboRecord.h>
|
||
|
||
|
||
/* Create the dset for devAiMbboXVme220 */
|
||
long init_record();
|
||
long write_mbbo();
|
||
|
||
struct {
|
||
long number;
|
||
DEVSUPFUN report;
|
||
DEVSUPFUN init;
|
||
DEVSUPFUN init_record;
|
||
DEVSUPFUN get_ioint_info;
|
||
DEVSUPFUN write_mbbo;
|
||
}devMbboXVme220={
|
||
5,
|
||
NULL,
|
||
NULL,
|
||
init_record,
|
||
NULL,
|
||
write_mbbo};
|
||
|
||
static long init_record(pmbbo)
|
||
struct mbboRecord *pmbbo;
|
||
{
|
||
char message[100];
|
||
unsigned long value;
|
||
struct vmeio *pvmeio;
|
||
int status;
|
||
|
||
/* mbbo.out must be an VME_IO */
|
||
switch (pmbbo->out.type) {
|
||
case (VME_IO) :
|
||
pvmeio = &(pmbbo->out.value.vmeio);
|
||
pmbbo->shft = pvmeio->signal;
|
||
pmbbo->mask = pmbbo->shft;
|
||
status = bo_read(pvmeio->card,pmbbo->mask,&value,XY220);
|
||
if(status==0) pmbbo->rbv = pmbbo->rval = value;
|
||
break;
|
||
default :
|
||
strcpy(message,pmbbo->name);
|
||
strcat(message,": devMbboXVme220 (init_record) Illegal OUT field");
|
||
errMessage(S_db_badField,message);
|
||
return(S_db_badField);
|
||
}
|
||
return(0);
|
||
}
|
||
|
||
static long write_mbbo(pmbbo)
|
||
struct mbboRecord *pmbbo;
|
||
{
|
||
struct vmeio *pvmeio;
|
||
int status;
|
||
unsigned long value;
|
||
|
||
|
||
pvmeio = &(pmbbo->out.value.vmeio);
|
||
status = bo_driver(pvmeio->card,pmbbo->rval,pmbbo->mask,XY220);
|
||
if(status==0) {
|
||
status = bo_read(pvmeio->card,pmbbo->mask,&value,XY220);
|
||
if(status==0) pmbbo->rbv = value;
|
||
else recGblSetSevr(pmbbo,READ_ALARM,VALID_ALARM);
|
||
} else {
|
||
recGblSetSevr(pmbbo,WRITE_ALARM,VALID_ALARM);
|
||
}
|
||
return(status);
|
||
}
|