Fix warnings caused by unescaped special doxygen chars

This commit is contained in:
George Oikonomou 2015-02-15 17:08:00 +01:00
parent fb22e15844
commit 0b382a933a
4 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@
/** /**
* \file Shell command for downloading files from a remote node. * \file Shell command for downloading files from a remote node.
* Example usage: * Example usage:
* 'download <node addr> <filename> | write <local_filename'. * 'download \<node addr\> \<filename\> | write \<local_filename\>'.
* *
* \author Luca Mottola <luca@sics.se>, Fredrik Osterlind <fros@sics.se> * \author Luca Mottola <luca@sics.se>, Fredrik Osterlind <fros@sics.se>
*/ */

View file

@ -319,7 +319,7 @@ extern unsigned char ctk_draw_windowborder_width,
/** /**
* The character used for the Return/Enter key. * The character used for the Return/Enter key.
* *
* \define #define CH_ENTER '\n' * \#define CH_ENTER '\n'
*/ */
/** /**

View file

@ -234,7 +234,7 @@ struct sicslowpan_addr_context {
* \brief check whether we can compress the IID in * \brief check whether we can compress the IID in
* address 'a' to 16 bits. * address 'a' to 16 bits.
* This is used for unicast addresses only, and is true * This is used for unicast addresses only, and is true
* if the address is on the format <PREFIX>::0000:00ff:fe00:XXXX * if the address is on the format \<PREFIX\>::0000:00ff:fe00:XXXX
* NOTE: we currently assume 64-bits prefixes * NOTE: we currently assume 64-bits prefixes
*/ */
#define sicslowpan_is_iid_16_bit_compressable(a) \ #define sicslowpan_is_iid_16_bit_compressable(a) \

View file

@ -133,7 +133,7 @@
* strings. * strings.
* *
* We need use two macros (CC_CONCAT and CC_CONCAT2) in order to allow * We need use two macros (CC_CONCAT and CC_CONCAT2) in order to allow
* concatenation of two #defined macros. * concatenation of two \#defined macros.
*/ */
#define CC_CONCAT(s1, s2) CC_CONCAT2(s1, s2) #define CC_CONCAT(s1, s2) CC_CONCAT2(s1, s2)