Skip to content
Snippets Groups Projects
Commit 7d013eb2 authored by Alexandre Abadie's avatar Alexandre Abadie
Browse files

sys: fix doxygen grouping

parent bd2845ad
No related branches found
No related tags found
No related merge requests found
Showing
with 39 additions and 21 deletions
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment