/****************************************************************************/
/* Copyright 2004-2016 MBARI												*/
/* MBARI Proprietary Information. All rights reserved.						*/
/****************************************************************************/
#include <time.h>

#ifndef INCoptrodeh
#define INCoptrodeh 1

/****************************************/
/* Type Definitions						*/
/****************************************/
typedef struct
{
	void	*driver;
	int		model;
	int		serial;
	time_t	time_stamp;
	double	oxygen;
	double	saturation;
	double	temp;
} O2Sample;

/****************************************/
/* Function Declarations				*/
/****************************************/

CmdRtn	lastOptrodeSample(Driver *dp);
void	optrode_drv(Driver *dp);

#endif /* INCoptrodeh */
