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

#ifndef ENV_H
#define ENV_H

/****************************************/
/* Type Definitions						*/
/****************************************/
typedef struct
{
	double volt;
	double temp;
	double pres;
	time_t time_stamp;
} EnvSample;


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

CmdRtn		lastEnvSample(Driver* dp);
void		envDrv(Driver *dp);

#endif
