Found a bug or something ambiguous? Mail us to get it fixed!
00001 #ifndef ADC_H 00002 #define ADC_H 00003 00004 #include <stdint.h> 00005 00018 typedef enum { 00019 PHOTO = 0, 00020 POTI = 1 00021 } ADCDEV; 00022 00031 int16_t sb_adc_read(ADCDEV dev); 00032 00033 #endif 00034