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

#ifndef DEPTHKELLER33XIF_H_
#define DEPTH_KELLER33XIF_H_

#include "data/ElementURI.h"

/**
 *  Specifies the interface details for the Depth_MSI_US300 component in the
 *  SensorModule.
 *
 *  DepthKeller33X.h should only be included by DepthKeller33X.cpp
 *  Other classes should include DepthKeller33XIF.h
 *
 *  \ingroup modules_sensor
 */
namespace DepthKeller33XIF
{
/// Static const for component name
/// (Can be used by other components)
static const Str NAME( "DepthKeller33X" );

// 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 ConfigURI OFFSET_CFG( NAME, "offset", Units::DECIBAR );
static const ConfigURI SCALE_CFG( NAME, "scale", Units::MICROPASCAL );   // per count of A/D"
static const ConfigURI MAX_PRESS_BOUND_CFG( NAME, "maxPressBound", Units::DECIBAR );
static const ConfigURI MIN_PRESS_BOUND_CFG( NAME, "minPressBound", Units::DECIBAR );

}

#endif /*DEPTHKELLER33XIF_H_*/
