/*
 Analog to digital converter routines.
 P. McGill 8Jun11
 Based on code in the Hitech samples folder
*/

#ifndef _ADC_H_
#define _ADC_H_

void adc_setup(void);
unsigned int adc_read(unsigned char channel);

#endif
