#include <vxWorks.h>
#include <taskLib.h>
#include "Sio32Interface.h"
#include "GeoApp.h"


extern int telnetTaskPriority;

extern "C" { 
#include "usrTime.h"
};



STATUS geologyApp(Nat16 serialChan)
{
  logMsg("starting geoApp...\n");

  taskPrioritySet(taskIdSelf(), 250);
  
  logMsg("create Sio32Interface device...\n");  

  Sio32Interface *device = new Sio32Interface("geoMicro", serialChan);

  GeoApp *app = new GeoApp("TIBURON", device);
  app->run();

  return 0;
}







