- New HM driver for Delcam CCD camera

This commit is contained in:
koennecke
2007-03-06 10:07:55 +00:00
parent 791cc9382c
commit bdea1d46a3
8 changed files with 1454 additions and 1 deletions

4
psi.c
View File

@ -271,6 +271,8 @@ static pCounterDriver CreatePsiCounterDriver(SConnection *pCon,
return pNew;
}
/*-------------------------------------------------------------------*/
extern pHistDriver MakeDelcamHM(pStringDict options); /* in delcam.c */
/*--------------------------------------------------------------------*/
static HistDriver *CreatePsiHistMem(char *name, pStringDict pOptions){
HistDriver *pNew = NULL;
@ -280,6 +282,8 @@ static HistDriver *CreatePsiHistMem(char *name, pStringDict pOptions){
pNew = MakeTDCHM(pOptions);
} else if(strcmp(name,"sinqhttp") == 0){
pNew = CreateSinqHttpDriver(pOptions);
} else if(strcmp(name,"delcam") == 0){
pNew = MakeDelcamHM(pOptions);
}
return pNew;
}