1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

Merge pull request #2635 from OlegHahm/more_doc_cleanups

More documentation cleanups
This commit is contained in:
Oleg Hahm 2015-03-18 18:59:00 +01:00
commit 942df88b0c
5 changed files with 20 additions and 7 deletions

View File

@ -187,7 +187,7 @@ int msg_try_receive(msg_t *m);
* @param[in] m Pointer to preallocated ``msg_t`` structure with
* the message to send, must not be NULL.
* @param[out] reply Pointer to preallocated msg. Reply will be written
* here, must not be NULL.
* here, must not be NULL. Can be identical to @p m.
* @param[in] target_pid The PID of the target process
*
* @return 1, if successful.

View File

@ -11,6 +11,12 @@
* @defgroup sys_chardevthread Chardev Thread
* @ingroup sys
* @brief Chardev thread
* @{
*
* @file
* @brief Handles I/O from a char devices
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*/
#ifndef __CHARDEV_THREAD_H
@ -30,3 +36,4 @@ void *chardev_thread_entry(void *rb_);
#endif
#endif /* __CHARDEV_THREAD_H */
/** @} */

View File

@ -28,12 +28,6 @@
*/
/**
* @defgroup sys_sha256 SHA264
* @ingroup sys
* @brief SHA264 hash generator
*/
/**
* @ingroup sys_crypto
* @{

View File

@ -11,6 +11,12 @@
* @defgroup sys_ps PS
* @ingroup sys
* @brief Show list with all threads
* @{
*
* @file
* @brief List information about all active threads
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*/
#ifndef __PS_H
@ -28,3 +34,4 @@ void _ps_handler(int argc, char **argv);
#endif
#endif /* __PS_H */
/** @} */

View File

@ -11,6 +11,10 @@
* @defgroup sys_random Random
* @ingroup sys
* @brief Random number generator
* @{
*
* @file
* @brief Mersenne Twister - a very fast random number generator
*/
#ifndef RANDOM_H
@ -85,3 +89,4 @@ double genrand_res53(void);
#endif
#endif /* RANDOM_H */
/** @} */