- Added sinfo to SICS - Added driver for TCP/IP Astrium velocity selector - Added driver for TCP/IP Astrium chopper controller SKIPPED: psi/amor2t.c psi/amorstat.c psi/dornier2.c psi/ecb.c psi/el734hp.c psi/fowrite.c psi/libpsi.a psi/make_gen psi/nextrics.c psi/pardef.c psi/pimotor.c psi/pipiezo.c psi/polterwrite.c psi/psi.c psi/scontroller.c psi/serial.c psi/tasinit.c psi/tasscan.c psi/tcpdocho.c psi/tcpdornier.c psi/tricssupport.c psi/velodornier.c
26 lines
778 B
C
26 lines
778 B
C
/* ------------------------------------------------------------------------
|
|
The OutCode's for SICS have to be translated from text at several
|
|
places in SICS. Wherever necessary sich code should include this file.
|
|
This restricts changes to Scommon.h and this file
|
|
|
|
Mark Koennecke, November 1996
|
|
----------------------------------------------------------------------------*/
|
|
#ifndef POUTCODE
|
|
#define POUTCODE
|
|
|
|
static char *pCode[] = {
|
|
"internal",
|
|
"command",
|
|
"hwerror",
|
|
"inerror",
|
|
"status",
|
|
"value",
|
|
"start",
|
|
"finish",
|
|
"event",
|
|
"warning",
|
|
"error",
|
|
NULL };
|
|
static int iNoCodes = 10;
|
|
#endif
|