mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
Finish adding doxygen comments to files
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@5 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
parent
e07e04d123
commit
c347af177b
@ -1,7 +1,30 @@
|
|||||||
/*
|
|
||||||
Linker script for STM32F103RE
|
/**
|
||||||
Based on scripts from Raisonance
|
* Project: OpenPilot
|
||||||
*/
|
*
|
||||||
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
|
*
|
||||||
|
* @file link_stm32f10x_HD.ld
|
||||||
|
* PiOS linker for the OpenPilot board
|
||||||
|
*
|
||||||
|
* @see The GNU Public License (GPL)
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* This program 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
/* Memory Spaces Definitions */
|
/* Memory Spaces Definitions */
|
||||||
MEMORY
|
MEMORY
|
||||||
|
@ -5,7 +5,8 @@
|
|||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
* @file pios.c
|
* @file pios.c
|
||||||
* PiOS build, sets up main tasks, tickhook and calls hardware setup
|
* PiOS build, sets up main tasks, tickhook, and contains the Main function
|
||||||
|
* It all starts from here
|
||||||
*
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
|
@ -4,6 +4,12 @@
|
|||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
|
* @file pios.h
|
||||||
|
* PiOS header. Central header for the project
|
||||||
|
*
|
||||||
|
* @see The GNU Public License (GPL)
|
||||||
|
|
||||||
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
@ -3,7 +3,10 @@
|
|||||||
* Project: OpenPilot
|
* Project: OpenPilot
|
||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
|
* @file pios_board.h
|
||||||
|
* Defines board hardware for the OpenPilot hardware
|
||||||
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
* Project: OpenPilot
|
* Project: OpenPilot
|
||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
|
*
|
||||||
|
* @file pios_led.c
|
||||||
|
* LED functions, init, toggle, on & off
|
||||||
*
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
|
@ -3,7 +3,10 @@
|
|||||||
* Project: OpenPilot
|
* Project: OpenPilot
|
||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
|
* @file pios_led.h
|
||||||
|
* LED functions header
|
||||||
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
@ -3,7 +3,10 @@
|
|||||||
* Project: OpenPilot
|
* Project: OpenPilot
|
||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
|
* @file pios_settings.c
|
||||||
|
* Gets and sets settings, normally from SDCard
|
||||||
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
@ -3,7 +3,10 @@
|
|||||||
* Project: OpenPilot
|
* Project: OpenPilot
|
||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
|
* @file pios_settings.h
|
||||||
|
* Settings functions header
|
||||||
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
@ -4,6 +4,9 @@
|
|||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
|
* @file pios_sys.c
|
||||||
|
* Sets up basic system hardware, functions are called from the Main function
|
||||||
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
@ -4,6 +4,9 @@
|
|||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
|
* @file pios_sys.h
|
||||||
|
* System and hardware Init functions header
|
||||||
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
|
* @file pios_uart.c
|
||||||
|
* UART commands, Inits UARTS, controls & talks to UARTS
|
||||||
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
@ -3,7 +3,10 @@
|
|||||||
* Project: OpenPilot
|
* Project: OpenPilot
|
||||||
*
|
*
|
||||||
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
* @author The OpenPilot Team, http://www.openpilot.org, Copyright (C) 2009.
|
||||||
*
|
*
|
||||||
|
* @file pios_uart.h
|
||||||
|
* UART functions header
|
||||||
|
*
|
||||||
* @see The GNU Public License (GPL)
|
* @see The GNU Public License (GPL)
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user