Doxygen fixes.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 8 Dec 2004 08:04:13 +0000 (08:04 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 8 Dec 2004 08:04:13 +0000 (08:04 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@293 38d2e660-2303-0410-9eaa-f027e97ec537

cpu.h
debug.h
drv/ser_avr.c

diff --git a/cpu.h b/cpu.h
index 4d3a5efb9d0f84358b6fd319a101d15e70b2469d..33106f30c8c340179a91802792d793a2fc85c4ed 100755 (executable)
--- 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.
  *#*
 
 
 /*!
- * \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 273b6f083505c24704038cb0ad7d6152a462a9d6..86d6820c1eda69f2b1ddfd6e8378ac8f2a695b6c 100755 (executable)
--- 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 <bernie@develer.com>
@@ -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.
  *#*
         * These macros help track some kinds of leaks in C++ programs.
         * Usage is as follows:
         *
-        * \example
+        * \code
         *   class Foo
         *   {
         *       DECLARE_INSTANCE_TRACKING(Foo)
         *        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)
        #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 */
 
index 78a3058d3020e1080cc34c67ad9486b8d64d1644..8a31159ecef085373c1f2f8c6840b8564bb67ef9 100755 (executable)
@@ -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).
  *#*
         *
         * The default is no action.
         */
+       #ifdef __doxygen__
+       #define SER_UART0_BUS_TXOFF
+       #endif
 #endif
 
 #ifndef SER_UART1_BUS_TXINIT
         *
         * \see SER_UART0_BUS_TXOFF
         */
+       #ifdef __doxygen__
+       #define SER_UART1_BUS_TXOFF
+       #endif
 #endif
 /*\}*/