Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
Loading...
Searching...
No Matches
sonar_adc.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2010 Gautier Hattenberger
3 *
4 * This file is part of paparazzi.
5 *
6 * paparazzi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * paparazzi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with paparazzi; see the file COPYING. If not, write to
18 * the Free Software Foundation, 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 *
21 */
22
37#ifndef SONAR_ADC_H
38#define SONAR_ADC_H
39
40#include "std.h"
41struct SonarADC {
43 float scale;
44 float distance;
46};
47
48extern struct SonarADC sonar_adc;
49
50extern void sonar_adc_init(void);
51extern void sonar_adc_periodic(void);
52extern void sonar_adc_report(void);
53
54#endif /* SONAR_ADC_H */
float scale
Scaling factor to convert raw value to a distance in SI unit (meters)
Definition sonar_adc.h:43
uint16_t raw
raw measuread non scaled range value from sensor
Definition sonar_adc.h:42
void sonar_adc_init(void)
Definition sonar_adc.c:121
void sonar_adc_report(void)
Debug report Option to send debug informative values over telemetry.
Definition sonar_adc.c:207
struct SonarADC sonar_adc
Definition sonar_adc.c:107
float distance
Distance measured in meters.
Definition sonar_adc.h:44
void sonar_adc_periodic(void)
Reading Read ADC value to update sonar measurement.
Definition sonar_adc.c:145
bool update_agl
Do or don't update AGL ABI message.
Definition sonar_adc.h:45
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.