Documentation structures added to place the non-STM32 families into the documentation tree.

Actual documentation has not been added. Volunteers?
This commit is contained in:
Ken Sarkies
2013-03-10 23:28:21 +10:30
committed by Felix Ruess
parent 69902568d1
commit 1627cd60c3
54 changed files with 685 additions and 16 deletions

View File

@@ -1,16 +1,16 @@
/** @mainpage libopencm3 LPC13xx
/** @mainpage libopencm3 LPC17xx
@version 1.0.0
@date 14 September 2012
API documentation for NXP Semiconductors LPC13xx Cortex M3 series.
API documentation for NXP Semiconductors LPC17xx Cortex M3 series.
LGPL License Terms @ref lgpl_license
*/
/** @defgroup LPC13xx LPC13xx
Libraries for NXP Semiconductors LPC13xx series.
/** @defgroup LPC17xx LPC17xx
Libraries for NXP Semiconductors LPC17xx series.
@version 1.0.0
@@ -19,9 +19,9 @@ Libraries for NXP Semiconductors LPC13xx series.
LGPL License Terms @ref lgpl_license
*/
/** @defgroup LPC13xx_defines LPC13xx Defines
/** @defgroup LPC17xx_defines LPC17xx Defines
@brief Defined Constants and Types for the LPC13xx series
@brief Defined Constants and Types for the LPC17xx series
@version 1.0.0

View File

@@ -1,3 +1,17 @@
/** @defgroup gpio_defines GPIO Defines
@brief <b>Defined Constants and Types for the LPC17xx General Purpose I/O</b>
@ingroup LPC17xx_defines
@version 1.0.0
@author @htmlonly &copy; @endhtmlonly 2009 Uwe Hermann <uwe@hermann-uwe.de>
@date 10 March 2013
LGPL License Terms @ref lgpl_license
*/
/*
* This file is part of the libopencm3 project.
*
@@ -20,6 +34,8 @@
#ifndef LPC17XX_GPIO_H
#define LPC17XX_GPIO_H
/**@{*/
#include <libopencm3/cm3/common.h>
#include <libopencm3/lpc17xx/memorymap.h>
@@ -139,4 +155,6 @@ void gpio_clear(u32 gpioport, u32 gpios);
END_DECLS
/**@}*/
#endif