mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cpu/lpc23xx: rename Doxygen group
This commit is contained in:
parent
18bc6492fd
commit
46a053e674
@ -12,5 +12,5 @@
|
||||
*
|
||||
* This module contains all CPU specific source files. In case of multiple CPUs
|
||||
* sharing the same architecture, the implementation is split into several CPU
|
||||
* specific parts and an architecture part (e.g. arm7_common and lpc2387).
|
||||
* specific parts and an architecture part (e.g. arm7_common and lpc23xx).
|
||||
*/
|
||||
|
@ -7,10 +7,10 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @{
|
||||
* @file
|
||||
* @brief LPC2387 clock initialization
|
||||
* @brief LPC23XX family clock initialization
|
||||
*
|
||||
* @author Heiko Will
|
||||
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @defgroup lpc2387_intro LPC2387 Introduction
|
||||
* @ingroup cpu_lpc2387
|
||||
* @defgroup lpc23xx_intro LPC23XX Introduction
|
||||
* @ingroup cpu_lpc23xx
|
||||
|
||||
<h2>First steps</h2>
|
||||
\li See the manual for toolchain and ide setup
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
<h2>Components</h2>
|
||||
\li \ref cpu_arm7_common
|
||||
\li \ref lpc2387_rtc
|
||||
\li \ref lpc23xx_rtc
|
||||
|
||||
<h2>Memory layout</h2>
|
||||
The following table gives a rough overview of the memory usage. For detailed values please
|
||||
|
@ -10,9 +10,9 @@
|
||||
#define CPU_H
|
||||
|
||||
/**
|
||||
* @defgroup cpu_lpc2387 NXP LPC2387
|
||||
* @defgroup cpu_lpc23xx NXP LPC23XX
|
||||
* @ingroup cpu
|
||||
* @brief NXP LPC2387 specific code
|
||||
* @brief NXP LPC23XX family specific code
|
||||
* @{
|
||||
*/
|
||||
|
||||
@ -39,17 +39,17 @@ void cpu_init_pll(void);
|
||||
void cpu_init_mam(void);
|
||||
|
||||
/**
|
||||
* @brief Scale lpc2387 cpu speed
|
||||
* @brief Scale lpc23xx cpu speed
|
||||
*/
|
||||
void lpc23xx_pclk_scale(uint32_t source, uint32_t target, uint32_t *pclksel, uint32_t *prescale);
|
||||
|
||||
/**
|
||||
* @brief Initialize lpc2387 cpu clocks
|
||||
* @brief Initialize lpc23xx cpu clocks
|
||||
*/
|
||||
void cpu_init_clks(void);
|
||||
|
||||
/**
|
||||
* @brief install lpc2387 irq
|
||||
* @brief install lpc23xx irq
|
||||
*/
|
||||
bool install_irq(int IntNumber, void (*HandlerAddr)(void), int Priority);
|
||||
|
||||
|
@ -14,14 +14,14 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief LPC2387 CPUconfiguration
|
||||
* @brief LPC23XX CPU configuration
|
||||
*
|
||||
* @author baar
|
||||
* @version $Revision$
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
@ -6,7 +6,7 @@
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/* specify the LPC2387 memory areas (see LPC2387 datasheet page 15) */
|
||||
/* specify the LPC23XX memory areas (see LPC2387 datasheet page 15) */
|
||||
MEMORY
|
||||
{
|
||||
rom (rx) : ORIGIN = 0, LENGTH = 504K /* FLASH ROM 512kByte without ISP bootloader*/
|
||||
|
@ -7,13 +7,13 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief lpc2387 in-application programming driver (for flashrom)
|
||||
* @brief lpc23xx in-application programming driver (for flashrom)
|
||||
*
|
||||
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
||||
*
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
@ -7,12 +7,12 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @ingroup drivers_periph_gpio
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief CPU specific low-level GPIO driver implementation for the LPC2387
|
||||
* @brief CPU specific low-level GPIO driver implementation for the LPC23XX family
|
||||
*
|
||||
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||
*
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @ingroup drivers_periph_i2c
|
||||
* @{
|
||||
*
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @ingroup drivers_periph_pm
|
||||
* @{
|
||||
*
|
||||
|
@ -7,12 +7,12 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @ingroup drivers_periph_pwm
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief CPU specific low-level PWM driver implementation for the LPC2387
|
||||
* @brief CPU specific low-level PWM driver implementation for the LPC23XX family
|
||||
*
|
||||
* The current implementation is somewhat limited: it supports only a single
|
||||
* hardware PWM device (fixed to PWM1) and it is fixed on supporting 3 channels.
|
||||
|
@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @ingroup drivers_periph_rtc
|
||||
* @{
|
||||
*
|
||||
|
@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @ingroup drivers_periph_spi
|
||||
* @{
|
||||
*
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @ingroup drivers_periph_timer
|
||||
* @{
|
||||
*
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_lpc2387
|
||||
* @ingroup cpu_lpc23xx
|
||||
* @ingroup drivers_periph_uart
|
||||
* @{
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user