Skip to content

Commit

Permalink
[module] add agl_dist module
Browse files Browse the repository at this point in the history
  • Loading branch information
gautierhattenberger committed Oct 17, 2014
1 parent b5fd2e8 commit 2049726
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 0 deletions.
25 changes: 25 additions & 0 deletions conf/modules/agl_dist.xml
@@ -0,0 +1,25 @@
<!DOCTYPE module SYSTEM "module.dtd">

<module name="agl_dist" dir="sonar">
<doc>
<description>
Get sonar values from ABI and store last and filtered values

Output values are stored in global variables that can be used in flight plans
</description>
<section name="AGL" prefix="AGL_DIST_SONAR_">
<define name="ID" value="ABI_BROADCAST" description="Sonar ABI ID"/>
<define name="MAX_RANGE" value="5." description="Max detection range in meters"/>
<define name="MIN_RANGE" value="0.001" description="Min detection range in meters"/>
<define name="FILTER" value="5" description="First order filter constante"/>
</section>
</doc>
<header>
<file name="agl_dist.h"/>
</header>
<init fun="agl_dist_init()"/>
<makefile>
<file name="agl_dist.c"/>
</makefile>
</module>

75 changes: 75 additions & 0 deletions sw/airborne/modules/sonar/agl_dist.c
@@ -0,0 +1,75 @@
/*
* Copyright (C) 2014 Gautier Hattenberger <gautier.hattenberger@enac.fr>
*
* This file is part of paparazzi
* paparazzi is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* paparazzi is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with paparazzi; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/

/**
* @file modules/sonar/agl_dist.h
*
* Bind to sonar ABI message and provide a filtered value to be used in flight plans
*
*/

#include "modules/sonar/agl_dist.h"
#include "subsystems/abi.h"
#include "generated/airframe.h"

float agl_dist_valid;
float agl_dist_value;
float agl_dist_value_filtered;

/** default sonar */
#ifndef AGL_DIST_SONAR_ID
#define AGL_DIST_SONAR_ID ABI_BROADCAST
#endif
#ifndef AGL_DIST_SONAR_MAX_RANGE
#define AGL_DIST_SONAR_MAX_RANGE 5.0
#endif
#ifndef AGL_DIST_SONAR_MIN_RANGE
#define AGL_DIST_SONAR_MIN_RANGE 0.001
#endif
#ifndef AGL_DIST_SONAR_FILTER
#define AGL_DIST_SONAR_FILTER 5
#endif

abi_event sonar_ev;

static void sonar_cb(uint8_t sender_id, const float *distance);

void agl_dist_init(void) {
agl_dist_valid = FALSE;
agl_dist_value = 0.;
agl_dist_value_filtered = 0.;

// Bind to AGL message
AbiBindMsgAGL(AGL_DIST_SONAR_ID, &sonar_ev, sonar_cb);
}


static void sonar_cb(uint8_t __attribute__((unused)) sender_id, const float *distance) {
if (*distance < AGL_DIST_SONAR_MAX_RANGE && *distance > AGL_DIST_SONAR_MIN_RANGE) {
agl_dist_value = *distance;
agl_dist_valid = TRUE;
agl_dist_value_filtered = (AGL_DIST_SONAR_FILTER * agl_dist_value_filtered + agl_dist_value) / (AGL_DIST_SONAR_FILTER + 1);
}
else {
agl_dist_valid = FALSE;
}
}

39 changes: 39 additions & 0 deletions sw/airborne/modules/sonar/agl_dist.h
@@ -0,0 +1,39 @@
/*
* Copyright (C) 2014 Gautier Hattenberger <gautier.hattenberger@enac.fr>
*
* This file is part of paparazzi
* paparazzi is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* paparazzi is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with paparazzi; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/

/**
* @file modules/sonar/agl_dist.h
*
* Bind to sonar ABI message and provide a filtered value to be used in flight plans
*
*/

#ifndef AGL_DIST_H
#define AGL_DIST_H

extern void agl_dist_init(void);

extern float agl_dist_valid;
extern float agl_dist_value;
extern float agl_dist_value_filtered;

#endif

0 comments on commit 2049726

Please sign in to comment.