/*-----------------------------------------------------------------------*
  PROGRAM: PSA-916 wrapper

  DESCRIPTION: Main file for psa-916 driver binary

  AUTHOR: John Rieffel

  $Id: gps.cc,v 1.1 2000/01/07 20:21:52 jrieffel Exp $
  *-----------------------------------------------------------------------*/

#include "GPS.h"
#include "Syslog.h"

int main( int argc, char **argv )
{

  SerialDevice *device = new SerialDevice( "/dev/ser8" );
  GPS *gps;
  try {
  
    gps = new GPS(device);

    gps->run();
  }
  catch (...) {
    Syslog::write("gps - Exception caught\n");
  }

  // delete device;
  //delete psa916;

  return 0;

}
