sys: fix doxygen grouping
This commit is contained in:
parent
bd2845adf6
commit
7d013eb2b6
@ -7,7 +7,7 @@
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*
|
||||
* @ingroup auto_init
|
||||
* @ingroup sys_autoinit
|
||||
* @{
|
||||
* @file
|
||||
* @brief initializes any used module that has a trivial init function
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup auto_init
|
||||
* @ingroup sys_autoinit
|
||||
* @{
|
||||
* @file
|
||||
* @brief initializes can device init function
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup auto_init
|
||||
* @ingroup sys_autoinit
|
||||
* @{
|
||||
* @file
|
||||
* @brief initializes native can device
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup base64
|
||||
* @ingroup sys_base64
|
||||
* @{
|
||||
* @file
|
||||
* @brief Functions to encode and decode base64
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_crypto_modes
|
||||
* @ingroup sys_crypto
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_crypto_modes
|
||||
* @ingroup sys_crypto
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_crypto_modes
|
||||
* @ingroup sys_crypto
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_crypto_modes
|
||||
* @ingroup sys_crypto
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*
|
||||
* @ingroup sys_util
|
||||
* @ingroup sys_div
|
||||
* @{
|
||||
* @file
|
||||
* @brief Integer division function implementations
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup auto_init_fs
|
||||
* @ingroup sys_autoinit
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -70,3 +70,4 @@ int cipher_decrypt_cbc(cipher_t *cipher, uint8_t iv[16], const uint8_t *input,
|
||||
#endif
|
||||
|
||||
#endif /* CRYPTO_MODES_CBC_H */
|
||||
/** @} */
|
||||
|
||||
@ -26,11 +26,16 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define CCM_ERR_INVALID_NONCE_LENGTH -2
|
||||
#define CCM_ERR_INVALID_CBC_MAC -3
|
||||
#define CCM_ERR_INVALID_DATA_LENGTH -3
|
||||
#define CCM_ERR_INVALID_LENGTH_ENCODING -4
|
||||
#define CCM_ERR_INVALID_MAC_LENGTH -5
|
||||
/**
|
||||
* @name CCM error codes
|
||||
* @{
|
||||
*/
|
||||
#define CCM_ERR_INVALID_NONCE_LENGTH (-2)
|
||||
#define CCM_ERR_INVALID_CBC_MAC (-3)
|
||||
#define CCM_ERR_INVALID_DATA_LENGTH (-3)
|
||||
#define CCM_ERR_INVALID_LENGTH_ENCODING (-4)
|
||||
#define CCM_ERR_INVALID_MAC_LENGTH (-5)
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @brief Encrypt and authenticate data of arbitrary length in ccm mode.
|
||||
@ -86,3 +91,4 @@ int cipher_decrypt_ccm(cipher_t* cipher, uint8_t* auth_data,
|
||||
#endif
|
||||
|
||||
#endif /* CRYPTO_MODES_CCM_H */
|
||||
/** @} */
|
||||
|
||||
@ -71,3 +71,4 @@ int cipher_decrypt_ctr(cipher_t* cipher, uint8_t nonce_counter[16],
|
||||
#endif
|
||||
|
||||
#endif /* CRYPTO_MODES_CTR_H */
|
||||
/** @} */
|
||||
|
||||
@ -60,3 +60,4 @@ int cipher_decrypt_ecb(cipher_t* cipher, uint8_t* input, size_t length,
|
||||
#endif
|
||||
|
||||
#endif /* CRYPTO_MODES_ECB_H */
|
||||
/** @} */
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_net_nanocoap
|
||||
* @ingroup net_nanocoap
|
||||
*
|
||||
* @{
|
||||
*
|
||||
|
||||
@ -7,7 +7,8 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_shell_commands
|
||||
* @defgroup sys_shell_commands Shell commands
|
||||
* @ingroup sys
|
||||
*
|
||||
* @{
|
||||
*
|
||||
@ -26,12 +27,20 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Disk manipulation command names
|
||||
* @{
|
||||
*/
|
||||
#define DISK_GET_SECTOR_SIZE "dget_ssize"
|
||||
#define DISK_GET_SECTOR_COUNT "dget_scount"
|
||||
#define DISK_GET_BLOCK_SIZE "dget_bsize"
|
||||
#define DISK_READ_SECTOR_CMD "dread_sec"
|
||||
#define DISK_READ_BYTES_CMD "dread"
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @brief List of shell commands
|
||||
*/
|
||||
extern const shell_command_t _shell_command_list[];
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_net_nanocoap
|
||||
* @ingroup net_nanocoap
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_net_nanocoap
|
||||
* @ingroup net_nanocoap
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_pktdump
|
||||
* @ingroup net_gnrc_pktdump
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
/*
|
||||
* @ingroup gnrc_rpl
|
||||
* @ingroup net_gnrc_rpl
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* @ingroup rpl
|
||||
* @ingroup net_gnrc_rpl
|
||||
* @{
|
||||
* @file
|
||||
* @brief RPL Objective functions manager
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_tcp
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup net_pktdump
|
||||
* @ingroup net_udp
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -8,7 +8,9 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_newlib
|
||||
* @defgroup sys_newlib Newlib system call
|
||||
* @ingroup sys
|
||||
* @brief Newlib system call
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -4,8 +4,11 @@
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_xtimer
|
||||
*
|
||||
* @ingroup xtimer
|
||||
* @{
|
||||
* @file
|
||||
* @brief xtimer posix wrapper
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*
|
||||
* @ingroup ps
|
||||
* @ingroup sys_ps
|
||||
* @{
|
||||
* @file
|
||||
* @brief UNIX like ps command
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_shell_commands.h
|
||||
* @ingroup sys_shell_commands
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
|
||||
@ -8,7 +8,8 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup xtimer
|
||||
* @ingroup sys_xtimer
|
||||
*
|
||||
* @{
|
||||
* @file
|
||||
* @brief xtimer convenience functionality
|
||||
|
||||
@ -5,8 +5,11 @@
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup sys_xtimer
|
||||
*
|
||||
* @ingroup xtimer
|
||||
* @{
|
||||
* @file
|
||||
* @brief xtimer core functionality
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user