Merge pull request #3 from spectaclelabs/bugfix-unfiltered-analog-in

Fix NXP unfiltered analog in compile error.
pull/4/head
Emilio Monti 2013-04-24 05:48:54 -07:00
commit 865ffcb623
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ static inline uint32_t adc_read_u32(analogin_t *obj) {
order(&v1, &v2);
value = v2;
#else
value = adc_read(adc);
value = adc_read(obj);
#endif
return value;
}