Added the boards folder to the doxygen tree
- added boards to riot.doxyfile - fixed group definitions for all boardsdev/timer
parent
edcabf7cb6
commit
c629229e8d
@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Freie Universität Berlin
|
||||
*
|
||||
* This file subject to the terms and conditions of the GNU Lesser General
|
||||
* Public License. See the file LICENSE in the top level directory for more
|
||||
* details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup boards Boards
|
||||
* @brief Board specific definitions and implementations
|
||||
*
|
||||
* The boards module contains all definitions and implementations, that are specific to a certain board. Boards
|
||||
* generally consist of a fixed configuration of a controller and some external devices as sensors or radios. All
|
||||
* aspects concerning pin-configurion, mcu clock and driver configuration should go into this module.
|
||||
*/
|
@ -1,4 +1,30 @@
|
||||
/*
|
||||
* Copyright (C) 2013 Freie Universität Berlin
|
||||
*
|
||||
* This file subject to the terms and conditions of the GNU Lesser General
|
||||
* Public License. See the file LICENSE in the top level directory for more
|
||||
* details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup boards_olimex_lpc2148 Olimex LPC2148
|
||||
* @ingroup boards
|
||||
* @brief Support for the Olimex LPC2148 board
|
||||
* @{
|
||||
*
|
||||
* @file board.h
|
||||
* @brief Basic definitions for the Olimex LPC2148 board
|
||||
*
|
||||
* @author unknown
|
||||
*/
|
||||
|
||||
#ifndef __OLIMEX_LPC2148_H
|
||||
#define __OLIMEX_LPC2148_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "lpc2148.h"
|
||||
|
||||
typedef uint8_t radio_packet_length_t;
|
||||
|
||||
/** @} */
|
||||
#endif /* __OLIMEX_LPC2148_H */
|
||||
|
Loading…
Reference in New Issue