/* this file contains all of the common stuff that the
project requires */


#include <p18cxxx.h>

#define PI 3.141592653


/* configuration area */
typedef struct _config {
	unsigned char laser;
	unsigned char display;
	unsigned char battery :1;
	unsigned char temperature :1;
	unsigned char leg :1;
} config;

extern rom config conf_backup;
extern ram config conf;

