/** \file
 *
 *  Specifies the interface details for the CTD_SeabirdLCM component in the
 *  SensorModule.
 *
 *  CTD_SeabirdLCM.h should only be included by CTD_SeabirdLCM.cpp
 *  Other classes should include CTD_SeabirdLCMIF.h
 *
 *  Copyright (c) 2014 MBARI
 *  MBARI Proprietary Information.  All Rights Reserved
 */

#ifndef CTD_SEABIRDLCMIF_H
#define CTD_SEABIRDLCMIF_H

#include "data/ElementURI.h"

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

// 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"

static const ConfigURI VERBOSITY_CFG( NAME, "verbosity", Units::COUNT );
static const ConfigURI LCM_APP_NAME_CFG( NAME, "lcmApplication", Units::NONE, STRVALUE );

static const ConfigURI MAX_PRESS_BOUND( NAME, "maxPressBound", Units::PASCAL );
static const ConfigURI MIN_PRESS_BOUND( NAME, "minPressBound", Units::PASCAL );
static const ConfigURI MAX_SALINITY_BOUND( NAME, "maxSalinityBound", Units::PRACTICAL_SALINITY_UNIT );
static const ConfigURI MIN_SALINITY_BOUND( NAME, "minSalinityBound", Units::PRACTICAL_SALINITY_UNIT );

static const DataURI BIN_MEDIAN_SEA_WATER_ELECTRICAL_CONDUCTIVITY( NAME, "bin_median_sea_water_electrical_conductivity", Units::MILLIMHO_PER_CENTIMETER );
static const DataURI BIN_MEDIAN_SEA_WATER_TEMPERATURE( NAME, "bin_median_sea_water_temperature", Units::CELSIUS );
static const DataURI BIN_MEDIAN_SEA_WATER_SALINITY( NAME, "bin_median_sea_water_salinity", Units::PRACTICAL_SALINITY_UNIT );

static const DataURI OXYGEN_FREQUENCY( NAME, "oxygen_frequency", Units::HERTZ );

}
#endif /*CTD_SEABIRDLCMIF_H*/
