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

#include "data/ElementURI.h"

#ifndef THRUSTERHEIF_H_
#define THRUSTERHEIF_H_

/**
 *  Specifies the interface details for the ThrusterHE component in the
 *  ServoModule.
 *
 *  ThrusterHE.h should only be included by ThrusterHE.cpp
 *  Other classes should include ThrusterHEIF.h
 *
 *  \ingroup modules_controller
 */
namespace ThrusterHEIF
{
// Component name
static const Str NAME( "ThrusterHE" );

// 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/HasUartIF.h"

// Include parent URIs -- must be in namespace and follow definition of NAME
#include "EZServoAllIF.h"

#include "EZServoAccelOverloadIF.h"

static const ConfigURI RATED_SPEED_CFG( NAME, "ratedSpeed", Units::COUNT );
static const ConfigURI DEVIATION_CFG( NAME, "deviation", Units::COUNT );
static const ConfigURI ALLOWABLE_BAD_VELOCITY_CFG( NAME, "allowableBadVelocity", Units::COUNT ); // Allowable Number of bad velocity reads
}

#endif /*ThrusterHEIF_H_*/
