Documentation cleanup in navigator

This commit is contained in:
Lorenz Meier
2014-01-09 08:10:03 +01:00
parent 581d702478
commit 55eaa38c65
+14 -10
View File
@@ -1,9 +1,6 @@
/****************************************************************************
*
* Copyright (c) 2013 PX4 Development Team. All rights reserved.
* Author: @author Lorenz Meier <lm@inf.ethz.ch>
* @author Jean Cyr <jean.m.cyr@gmail.com>
* @author Julian Oes <joes@student.ethz.ch>
* Copyright (c) 2013, 2014 PX4 Development Team. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -34,11 +31,18 @@
*
****************************************************************************/
/**
* @file navigator_main.c
* @file navigator_main.cpp
* Implementation of the main navigation state machine.
*
* Handles missions, geo fencing and failsafe navigation behavior.
* Published the mission item triplet for the position controller.
*
* @author Julian Oes <joes@student.ethz.ch>
* @author Jean Cyr <jean.m.cyr@gmail.com>
* @author Anton Babushkin <anton.babushkin@me.com>
* @author Thomas Gubler <thomasgubler@gmail.com>
* @author Lorenz Meier <lm@inf.ethz.ch>
*
*/
#include <nuttx/config.h>
@@ -349,11 +353,11 @@ private:
namespace navigator
{
/* oddly, ERROR is not defined for c++ */
#ifdef ERROR
# undef ERROR
#endif
static const int ERROR = -1;
// /* oddly, ERROR is not defined for c++ */
// #ifdef ERROR
// # undef ERROR
// #endif
// static const int ERROR = -1;
Navigator *g_navigator;
}