/****************************************************************************/
/* Copyright (c) 2000 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : kvhCompassTest.cc                                             */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 02/07/2000                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
#include <stdio.h>
#include <string.h>

#include "Syslog.h"
#include "Exception.h"
#include "KvhCompassServer.h"

#define DEV_NAME "/dev/ser3"

int main(int argc, char **argv)
{
  try
  {
    KvhCompassServer *kvhCompassServer = new KvhCompassServer();

    kvhCompassServer->run();
  }
  catch (Exception e)
  {
    Syslog::write("KVH Compass Exception %s\n", e.msg);
  }

  return 0;
}


