/** \file
 *
 *  Specifies the interface details for the ISUS component in the
 *  ScienceModule.
 *
 *  ISUS.h should only be included by ISUS.cpp
 *  Other classes should include ISUS.h
 *
 *  Copyright (c) 2007,2008,2009 MBARI
 *  MBARI Proprietary Information.  All Rights Reserved
 */

#ifndef ISUSIF_H
#define ISUSIF_H

#include "data/ElementURI.h"

/**
 *  Specifies the interface details for the ISUS component in the
 *  SensorModule.
 *
 *  \ingroup modules_sensor
 */
namespace ISUSIF
{
/// Static const for component name
/// (Can be used by other components)
static const Str NAME( "ISUS" );

// Include common ConfigURIs -- must be in namespace and follow definition of NAME
#include "component/HasLoadAtStartupIF.h"
#include "component/HasHardwareIF.h"
#include "component/HasLoadControlIF.h"
#include "component/HasPowerIF.h"
#include "component/HasUartIF.h"

static const RestartConfigURI NITRATE_ACCURACY( NAME, "nitrateAccuracy", Units::MICROMOLE_PER_CUBIC_METER );

static const DataURI DATESTRING( NAME, "dateDataString", Units::SECOND );

}

#endif /*ISUSIF_H*/
