Fixed doxygen inconsistensies in sys
This commit is contained in:
parent
c629229e8d
commit
2df82017a8
@ -9,15 +9,10 @@
|
||||
/**
|
||||
* @ingroup core_util
|
||||
* @{
|
||||
<<<<<<< HEAD
|
||||
*
|
||||
* @file bitarithm.c
|
||||
* @brief Bit arithmetic helper functions implementation
|
||||
*
|
||||
=======
|
||||
* @file bitarithm.c
|
||||
* @brief Bit arithmetic helper functions implementation
|
||||
>>>>>>> 94fedda... Fixed a lot of comments by removing tabs and correcting format.
|
||||
* @author Kaspar Schleiser <kaspar.schleiser@fu-berlin.de>
|
||||
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||
*
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
* This file is 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup core_util
|
||||
|
||||
@ -7,11 +7,9 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup sys_posixio Posix IO
|
||||
* @ingroup sys
|
||||
* @brief Posix compatible IO
|
||||
* @ingroup sys_posix
|
||||
* @{
|
||||
* @file
|
||||
* @file posix_io.h
|
||||
* @brief POSIX-like IO
|
||||
*
|
||||
* @author Freie Universität Berlin
|
||||
@ -37,7 +35,6 @@ int posix_open(int pid, int flags);
|
||||
int posix_close(int pid);
|
||||
int posix_read(int pid, char *buffer, int bufsize);
|
||||
int posix_write(int pid, char *buffer, int bufsize);
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/** @} */
|
||||
#endif /* __READ_H */
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @defgroup sys_vtimer Virtual (Software) Timer library
|
||||
* @addtogroup sys
|
||||
* @ingroup sys
|
||||
* @brief Virtual software timer for general timer functionality in applications
|
||||
* @{
|
||||
*
|
||||
|
||||
@ -1,7 +1,4 @@
|
||||
/**
|
||||
* sixlowpan.h - Wraps all API types, constants and functions
|
||||
* of 6LoWPAN concerning layers under 3.
|
||||
*
|
||||
/*
|
||||
* Copyright (C) 2013 INRIA.
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||
@ -10,11 +7,12 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup sixlowpan 6LoWPAN
|
||||
* @defgroup net_sixlowpan 6LoWPAN
|
||||
* @ingroup net
|
||||
* @brief 6LoWPAN module implements (parts of) the 6LoWPAN adaption layer
|
||||
* for IPv6 over Low Power Wireless Personal Area Networks
|
||||
* (6LoWPANs)
|
||||
*
|
||||
* @see <a href="http://tools.ietf.org/html/rfc4919">
|
||||
* RFC 4919 - IPv6 over Low-Power Wireless Personal Area
|
||||
* Networks (6LoWPANs): Overview, Assumptions, Problem
|
||||
@ -34,8 +32,10 @@
|
||||
* (6LoWPANs)
|
||||
* </a>
|
||||
* @{
|
||||
* @file
|
||||
*
|
||||
* @file sixlowpan.h
|
||||
* @brief 6lowpan link layer and lowpan functions
|
||||
*
|
||||
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||
*/
|
||||
#ifndef SIXLOWPAN_H
|
||||
@ -46,7 +46,5 @@
|
||||
#include "sixlowpan/lowpan.h"
|
||||
#include "sixlowpan/mac.h"
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
/** @} */
|
||||
#endif /* SIXLOWPAN_H */
|
||||
|
||||
@ -1,18 +1,19 @@
|
||||
/**
|
||||
* sixlowpan/error.h - 6LoWPAN error codes
|
||||
*
|
||||
/*
|
||||
* Copyright (C) 2013 INRIA.
|
||||
*
|
||||
* This file is 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.
|
||||
*
|
||||
* @ingroup sixlowpan
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_sixlowpan
|
||||
* @{
|
||||
* @file
|
||||
*
|
||||
* @file sixlowpan/error.h
|
||||
* @brief 6LoWPAN error codes
|
||||
*
|
||||
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifndef SIXLOWPAN_ERROR_H
|
||||
@ -94,7 +95,5 @@
|
||||
*/
|
||||
#define SIXLOWERROR_CSUM (141)
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
/** @} */
|
||||
#endif /* SIXLOWPAN_ERROR_H */
|
||||
|
||||
@ -1,17 +1,18 @@
|
||||
/**
|
||||
* sixlowpan/icmp.h - 6LoWPAN constants, data structs, and prototypes
|
||||
* related to ICMP
|
||||
*
|
||||
/*
|
||||
* Copyright (C) 2013 INRIA.
|
||||
*
|
||||
* This file is 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.
|
||||
*
|
||||
* @ingroup sixlowpan
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_sixlowpan
|
||||
* @{
|
||||
* @file
|
||||
*
|
||||
* @file sixlowpan/icmp.h
|
||||
* @brief 6LoWPAN ICMP related header
|
||||
*
|
||||
* @author Stephan Zeisberg <zeisberg@mi.fu-berlin.de>
|
||||
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @author Eric Engel <eric.engel@fu-berlin.de>
|
||||
@ -231,7 +232,5 @@ void icmpv6_send_neighbor_adv(ipv6_addr_t *src, ipv6_addr_t *dst,
|
||||
ipv6_addr_t *tgt, uint8_t rso,
|
||||
uint8_t sllao, uint8_t aro);
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
/** @} */
|
||||
#endif /* SIXLOWPAN_ICMP_H */
|
||||
|
||||
@ -1,17 +1,18 @@
|
||||
/**
|
||||
* sixlowpan/ip.h - 6LoWPAN constants, data structs, and prototypes
|
||||
* for network layer
|
||||
*
|
||||
/*
|
||||
* Copyright (C) 2013 INRIA.
|
||||
*
|
||||
* This file is 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.
|
||||
*
|
||||
* @ingroup sixlowpan
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_sixlowpan
|
||||
* @{
|
||||
* @file
|
||||
* @brief 6LoWPAN network layer header
|
||||
*
|
||||
* @file sixlowpan/ip.h
|
||||
* @brief 6LoWPAN constants, data structs, and prototypes for network layer
|
||||
*
|
||||
* @author Stephan Zeisberg <zeisberg@mi.fu-berlin.de>
|
||||
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @author Eric Engel <eric.engel@fu-berlin.de>
|
||||
@ -384,7 +385,6 @@ void ipv6_iface_set_routing_provider(ipv6_addr_t *(*next_hop)(ipv6_addr_t* dest)
|
||||
* @return The IPv6 upper-layer checksum.
|
||||
*/
|
||||
uint16_t ipv6_csum(ipv6_hdr_t *ipv6_header, uint8_t *buf, uint16_t len, uint8_t proto);
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/** @} */
|
||||
#endif /* SIXLOWPAN_IP_H */
|
||||
|
||||
@ -1,17 +1,18 @@
|
||||
/**
|
||||
* sixlowpan/lowpan.h - 6LoWPAN constants, data structs, and
|
||||
* prototypes for 6LoWPAN layer
|
||||
*
|
||||
/*
|
||||
* Copyright (C) 2013 INRIA.
|
||||
*
|
||||
* This file is 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.
|
||||
*
|
||||
* @ingroup sixlowpan
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_sixlowpan
|
||||
* @{
|
||||
* @file
|
||||
*
|
||||
* @file sixlowpan/lowpan.h
|
||||
* @brief 6LoWPAN LoWPAN layer header
|
||||
*
|
||||
* @author Stephan Zeisberg <zeisberg@mi.fu-berlin.de>
|
||||
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @author Eric Engel <eric.engel@fu-berlin.de>
|
||||
@ -271,7 +272,5 @@ void sixlowpan_lowpan_print_fifo_buffers(void);
|
||||
void sixlowpan_lowpan_print_reassembly_buffers(void);
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
/** @} */
|
||||
#endif /* SIXLOWPAN_LOWPAN_H */
|
||||
|
||||
@ -1,16 +1,18 @@
|
||||
/**
|
||||
* sixlowpan/mac.h - 6LoWPAN data structs, and prototypes for MAC layer
|
||||
*
|
||||
/*
|
||||
* Copyright (C) 2013 INRIA.
|
||||
*
|
||||
* This file is 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.
|
||||
*
|
||||
* @ingroup sixlowpan
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_sixlowpan
|
||||
* @{
|
||||
* @file
|
||||
* @brief 6LoWPAN MAC layer header
|
||||
*
|
||||
* @file sixlowpan/mac.h
|
||||
* @brief 6LoWPAN data structs, and prototypes for MAC layer
|
||||
*
|
||||
* @author Stephan Zeisberg <zeisberg@mi.fu-berlin.de>
|
||||
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @author Eric Engel <eric.engel@fu-berlin.de>
|
||||
@ -105,7 +107,5 @@ void sixlowpan_mac_init(transceiver_type_t type);
|
||||
*/
|
||||
char *sixlowpan_mac_802154_long_addr_to_str(char *addr_str, const ieee_802154_long_t *laddr);
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
/** @} */
|
||||
#endif /* SIXLOWPAN_MAC_H */
|
||||
|
||||
@ -1,17 +1,18 @@
|
||||
/**
|
||||
* sixlowpan/ndp.h - 6LoWPAN constants, data structs, and prototypes
|
||||
* related to NDP
|
||||
*
|
||||
/*
|
||||
* Copyright (C) 2013 INRIA.
|
||||
*
|
||||
* This file is 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.
|
||||
*
|
||||
* @ingroup sixlowpan
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_sixlowpan
|
||||
* @{
|
||||
* @file
|
||||
* @brief 6LoWPAN NDP related header
|
||||
*
|
||||
* @file sixlowpan/ndp.h
|
||||
* @brief 6LoWPAN constants, data structs, and prototypes related to NDP
|
||||
*
|
||||
* @author Stephan Zeisberg <zeisberg@mi.fu-berlin.de>
|
||||
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @author Eric Engel <eric.engel@fu-berlin.de>
|
||||
@ -123,7 +124,5 @@ uint8_t ndp_prefix_list_search(ipv6_addr_t *addr);
|
||||
ndp_a6br_cache_t *ndp_a6br_cache_get_most_current(void);
|
||||
ndp_a6br_cache_t *ndp_a6br_cache_get_oldest(void);
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
/** @} */
|
||||
#endif /* SIXLOWPAN_NDP_H */
|
||||
|
||||
@ -1,16 +1,18 @@
|
||||
/**
|
||||
* 6LoWPAN data types
|
||||
*
|
||||
/*
|
||||
* Copyright (C) 2013 INRIA.
|
||||
*
|
||||
* This file is 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.
|
||||
*
|
||||
* @ingroup sixlowpan
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_sixlowpan
|
||||
* @{
|
||||
*
|
||||
* @file sixlowpan/types.h
|
||||
* @brief 6LoWPAN data types
|
||||
*
|
||||
* @author Stephan Zeisberg <zeisberg@mi.fu-berlin.de>
|
||||
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||
* @author Eric Engel <eric.engel@fu-berlin.de>
|
||||
@ -394,7 +396,5 @@ typedef enum __attribute__((packed)) {
|
||||
NDP_ADDR_STATE_ANY ///< addresses of this state are always permitted.
|
||||
} ndp_addr_state_t;
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
/** @} */
|
||||
#endif /* SIXLOWPAN_TYPES_H */
|
||||
|
||||
@ -9,10 +9,10 @@
|
||||
/**
|
||||
* @defgroup net_sixlowpan 6LoWPAN
|
||||
* @ingroup net
|
||||
* @brief Riots 6LowPAN implementation
|
||||
* @brief RIOTs 6LowPAN implementation
|
||||
* @{
|
||||
*
|
||||
* @file sixlowpan.h
|
||||
* @file lowpan.h
|
||||
* @brief 6lowpan header
|
||||
*
|
||||
* @author Stephan Zeisberg <zeisberg@mi.fu-berlin.de>
|
||||
|
||||
@ -7,10 +7,10 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup posix POSIX wrapper of RIOT
|
||||
* @defgroup sys_posix POSIX wrapper for RIOT
|
||||
* @brief POSIX header files
|
||||
* @see <a href="http://pubs.opengroup.org/onlinepubs/9699919799/">
|
||||
* The Open Group Specifications Issue 7
|
||||
* </a>
|
||||
* @ingroup posix
|
||||
* @ingroup sys
|
||||
*/
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/*
|
||||
* Copyright (C) 2013 INRIA.
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||
@ -7,11 +7,9 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @addtogroup posix
|
||||
* @ingroup sys_posix
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @file strings.h
|
||||
* @brief string operations
|
||||
*
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
* Public License. See the file LICENSE in the top level directory for more
|
||||
* details.
|
||||
*
|
||||
* @ingroup posix
|
||||
* @ingroup sys_posix
|
||||
* @{
|
||||
* @file posix_io.c
|
||||
* @brief Implementation of basic POSIX IO functionality.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user