Skip to content
Snippets Groups Projects
Commit 229ad287 authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #7112 from rfuentess/doxygen_fixes

Doxygen:  Minor series of fixes for the documentation
parents fd7f8a52 1c0653f3
No related branches found
No related tags found
No related merge requests found
...@@ -63,10 +63,13 @@ ...@@ -63,10 +63,13 @@
* Usage * Usage
* ----- * -----
* ~~~~~~~~~~~~~~~~~~~~~~~~ {.c} * ~~~~~~~~~~~~~~~~~~~~~~~~ {.c}
* #include "thread.h"
*
* char rcv_thread_stack[THREAD_STACKSIZE_MAIN]; * char rcv_thread_stack[THREAD_STACKSIZE_MAIN];
* *
* void *rcv_thread(void *arg) * void *rcv_thread(void *arg)
* { * {
* (void) arg;
* msg_t m; * msg_t m;
* *
* while (1) { * while (1) {
......
...@@ -21,7 +21,7 @@ A module's Makefile just needs to include `Makefile.base` in the RIOT ...@@ -21,7 +21,7 @@ A module's Makefile just needs to include `Makefile.base` in the RIOT
repository: repository:
~~~~~~~~~~~~~~~~~~~ {.mk} ~~~~~~~~~~~~~~~~~~~ {.mk}
include $(RIOTBASE)/Makefile include $(RIOTBASE)/Makefile.base
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
If your module's name differs from the name of the directory it resides in you If your module's name differs from the name of the directory it resides in you
......
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
* implementation (e.g. `gnrc_ipv6_default` for @ref net_gnrc GNRC) and at least * implementation (e.g. `gnrc_ipv6_default` for @ref net_gnrc GNRC) and at least
* one network device. * one network device.
* *
* After including the header file for @ref net_sock_udp "UDP sock", we create some * After including the header file for @ref net_sock_udp "UDP sock", we create some
* buffer space `buf` to store the data received by the server: * buffer space `buf` to store the data received by the server:
* *
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ {.c} * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ {.c}
...@@ -313,7 +313,7 @@ typedef struct sock_udp sock_udp_t; ...@@ -313,7 +313,7 @@ typedef struct sock_udp sock_udp_t;
* @ref SOCK_ADDR_ANY_NETIF or equal to sock_udp_ep_t::netif * @ref SOCK_ADDR_ANY_NETIF or equal to sock_udp_ep_t::netif
* of @p local if `local != NULL`. * of @p local if `local != NULL`.
* @param[in] flags Flags for the sock object. See also * @param[in] flags Flags for the sock object. See also
* [sock flags](net_sock_flags). * [sock flags](@ref net_sock_flags).
* May be 0. * May be 0.
* *
* @return 0 on success. * @return 0 on success.
......
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