/****************************************************************************/
/* Copyright 2004 MBARI.                                                    */
/* Monterey Bay Aquarium Research Institute Proprietary Information.        */
/* All rights reserved.                                                     */
/****************************************************************************/
#ifndef PH_PROBE_H
#define PH_PROBE_H

#define VS_VERSION  "0.1"
#define DEBUG 0


/*
    The ticks per second is based on an 8-bit counter over flowing that
    is driven by a 4 Mhz ocsillator prescaled by 4 and postscaled by 64.

    TICKS_PER_SEC = (OSC_CLK) / (PRESCALE) / (POSTSCALE) / (8_BIT_OVERFLOW)
                  = 4000000   /     4      /      64     /      256
                  = 61.0351
*/
#define TICKS_PER_SEC   61



#define HI  1
#define LO  0

#define ON  1
#define OFF 0


#endif
