Files
sicspsi/oxinst.h
koennecke eb72d5c486 - Adapted indenation to new agreed upon system
- Fixed bad status in poldi zug driver
2009-02-13 09:01:03 +00:00

26 lines
711 B
C

/*---------------------------------------------------------------------------
oxinst.h
Communication routines for Oxford Instruments equipment
Markus Zolliker, March 2005
----------------------------------------------------------------------------*/
#ifndef OXINST_H
#define OXINST_H
#include "ease.h"
int OxiHandler(void *eab);
double OxiGet(EaseBase * eab, int dig, int *pdig, double old);
void OxiSet(EaseBase * eab, char *cmd, double val, int dig);
/* usage of the syntax field of EaseBase:
syntax <= 0: old syntax, in general without decimal point
syntax > 0: new syntax, in general decimal point given
syntax <= -8: error correction on input (ascii codes >= 96 are corrected)
*/
#endif