Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
orange_avoider_guided.h
Go to the documentation of this file.
1/*
2 * Copyright (C) Kirk Scheper <kirkscheper@gmail.com>
3 *
4 * This file is part of paparazzi
5 *
6 */
28#ifndef ORANGE_AVOIDER_GUIDED_H
29#define ORANGE_AVOIDER_GUIDED_H
30
31// settings
32extern float oag_color_count_frac; // obstacle detection threshold as a fraction of total of image
33extern float oag_floor_count_frac; // floor detection threshold as a fraction of total of image
34extern float oag_max_speed; // max flight speed [m/s]
35extern float oag_heading_rate; // heading rate setpoint [rad/s]
36
37extern void orange_avoider_guided_init(void);
38extern void orange_avoider_guided_periodic(void);
39
40#endif
41
void orange_avoider_guided_periodic(void)
float oag_floor_count_frac
float oag_color_count_frac
float oag_max_speed
float oag_heading_rate
void orange_avoider_guided_init(void)