Skip to content
Snippets Groups Projects
Commit c94076f6 authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Added missing ADC start command, fixed return value / error behavior of ADC init

parent 309980cd
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
#
ms5611 start
adc start
if mpu6000 start
then
......
......@@ -640,8 +640,8 @@ Sensors::adc_init()
_fd_adc = open("/dev/adc0", O_RDONLY | O_NONBLOCK);
if (_fd_adc < 0) {
warn("/dev/adc0");
errx(1, "FATAL: no ADC found");
warnx("/dev/adc0");
warnx(1, "FATAL: no ADC found");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment