From: bernie Date: Wed, 8 Dec 2004 08:04:13 +0000 (+0000) Subject: Doxygen fixes. X-Git-Tag: 1.0.0~948 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=43268c92c3e0cd4fe8997aabcfc908715f258631;hp=fde50a18a7aa9d24f121882346f00585df589deb;p=bertos.git Doxygen fixes. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@293 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/cpu.h b/cpu.h index 4d3a5efb..33106f30 100755 --- a/cpu.h +++ b/cpu.h @@ -17,6 +17,9 @@ /*#* *#* $Log$ + *#* Revision 1.24 2004/12/08 08:04:13 bernie + *#* Doxygen fixes. + *#* *#* Revision 1.23 2004/11/16 22:41:58 bernie *#* Support 64bit CPUs. *#* @@ -293,11 +296,7 @@ /*! - * \name Default type sizes - * - * \def SIZEOF_CHAR SIZEOF_SHORT SIZEOF_INT SIZEOF_LONG SIZEOF_PTR - * \def CPU_BITS_PER_CHAR CPU_BITS_PER_SHORT CPU_BITS_PER_INT - * \def CPU_BITS_PER_LONG CPU_BITS_PER_PTR + * \name Default type sizes. * * These defaults are reasonable for most 16/32bit machines. * Some of these macros may be overridden by CPU-specific code above. diff --git a/debug.h b/debug.h index 273b6f08..86d6820c 100755 --- a/debug.h +++ b/debug.h @@ -5,11 +5,11 @@ * This file is part of DevLib - See devlib/README for information. * --> * - * \brief Simple debug facilities for hosted and embedded C/C++ applications + * \brief Simple debug facilities for hosted and embedded C/C++ applications. * - * Debug output goes to stderr in hosted applications. Freestanding (AKA embedded) - * applications use drv/kdebug.c to output diagnostic messages to a serial terminal - * or a JTAG debugger. + * Debug output goes to stderr in hosted applications. + * Freestanding (AKA embedded) applications use \c drv/kdebug.c to output + * diagnostic messages to a serial terminal or a JTAG debugger. * * \version $Id$ * \author Bernardo Innocenti @@ -17,6 +17,9 @@ /*#* *#* $Log$ + *#* Revision 1.5 2004/12/08 08:04:13 bernie + *#* Doxygen fixes. + *#* *#* Revision 1.4 2004/12/08 07:29:27 bernie *#* Fix Doxygen tags. *#* @@ -235,7 +238,7 @@ * These macros help track some kinds of leaks in C++ programs. * Usage is as follows: * - * \example + * \code * class Foo * { * DECLARE_INSTANCE_TRACKING(Foo) @@ -264,8 +267,8 @@ * delete foo; * ASSERT_ZERO_INSTANCES(Foo); // OK * } - * - * \end example + * \endcode + * \{ */ #define NEW_INSTANCE(CLASS) do { ++CLASS::__instances } while (0) #define DELETE_INSTANCE(CLASS) do { --CLASS::__instances } while (0) @@ -273,6 +276,7 @@ #define GET_INSTANCE_COUNT(CLASS) (CLASS::__instances) #define DECLARE_INSTANCE_TRACKING(CLASS) static int __instances #define IMPLEMENT_INSTANCE_TRACKING(CLASS) int CLASS::__instances = 0 + /*\}*/ #else /* !_DEBUG */ diff --git a/drv/ser_avr.c b/drv/ser_avr.c index 78a3058d..8a31159e 100755 --- a/drv/ser_avr.c +++ b/drv/ser_avr.c @@ -38,6 +38,9 @@ /*#* *#* $Log$ + *#* Revision 1.18 2004/12/08 08:03:48 bernie + *#* Doxygen fixes. + *#* *#* Revision 1.17 2004/10/19 07:52:35 bernie *#* Reset parity bits before overwriting them (Fixed by batt in project_ks). *#* @@ -191,6 +194,9 @@ * * The default is no action. */ + #ifdef __doxygen__ + #define SER_UART0_BUS_TXOFF + #endif #endif #ifndef SER_UART1_BUS_TXINIT @@ -223,6 +229,9 @@ * * \see SER_UART0_BUS_TXOFF */ + #ifdef __doxygen__ + #define SER_UART1_BUS_TXOFF + #endif #endif /*\}*/