- Added strlcpy and strlcat to SICS - Added a driver for the POLDI power supplies SKIPPED: psi/A1931.c psi/autowin.c psi/bruker.c psi/docho.c psi/dornier2.c psi/dspcode.c psi/ease.c psi/ecb.c psi/ecbcounter.c psi/ecbdriv.c psi/el734dc.c psi/el734driv.c psi/el734hp.c psi/el737driv.c psi/el737hpdriv.c psi/el737hpdrivsps.c psi/el737hpv2driv.c psi/el755driv.c psi/eurodriv.c psi/haakedriv.c psi/itc4driv.c psi/julcho.c psi/linadriv.c psi/lmd200.c psi/lscsupport.c psi/ltc11.c psi/make_gen psi/oicom.c psi/oxinst.c psi/pimotor.c psi/pipiezo.c psi/polterwrite.c psi/psi.c psi/sanscook.c psi/sanslirebin.c psi/sanswave.c psi/sinqhmdriv.c psi/sinqhttp.c psi/slsecho.c psi/slsmagnet.c psi/slsvme.c psi/sps.c psi/swmotor.c psi/swmotor2.c psi/tabledrive.c psi/tasscan.c psi/tdchm.c psi/velodorn.c psi/velodornier.c
47 lines
1001 B
C
47 lines
1001 B
C
/*--------------------------------------------------------------------------
|
|
S I C S
|
|
|
|
A common header file which includes the SICS kernel header files
|
|
in the right order.
|
|
|
|
Mark Koennecke, October 1997
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
#ifndef SICSSICS
|
|
#define SICSSICS
|
|
|
|
typedef enum {
|
|
eTimer,
|
|
ePreset
|
|
} CounterMode;
|
|
|
|
/* the following line suppresses const declarations in tcl.h.
|
|
WARNING: including sics.h must always be done before tcl.h
|
|
-> makes the compiler happy M.Z. */
|
|
#define NO_CONST
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#include <strlutil.h>
|
|
|
|
#include "Scommon.h"
|
|
#include "event.h"
|
|
#include "obdes.h"
|
|
#include "interrupt.h"
|
|
#include "task.h"
|
|
#include "conman.h"
|
|
#include "interface.h"
|
|
#include "devexec.h"
|
|
#include "emon.h"
|
|
#include "nserver.h"
|
|
#include "servlog.h"
|
|
#include "sicsutil.h"
|
|
|
|
|
|
extern pServer pServ;
|
|
|
|
|
|
#endif
|