00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00056 #ifndef ADC_MODEL_H_INCLUDED
00057 #define ADC_MODEL_H_INCLUDED
00058
00059 typedef struct {
00060 void(*init)();
00061
00062 uint16_t (*read)(int, uint8_t, long long);
00063 } adc_model;
00064
00065 char* external_adc_host = NULL;
00066
00067 adc_model* create_random_adc_model();
00068 adc_model* create_generic_adc_model();
00069 adc_model* create_external_adc_model();
00070 void set_adc_value(int moteID, uint8_t port, uint16_t value);
00071
00072 #endif // ADC_MODEL_H_INCLUDED