From f7759618132fca8a34d8a02dc6d0acf0474e6ca1 Mon Sep 17 00:00:00 2001 From: bernie Date: Wed, 19 Jul 2006 12:54:12 +0000 Subject: [PATCH] Documentation fixes. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@670 38d2e660-2303-0410-9eaa-f027e97ec537 --- cfg/cpu.h | 9 ++++++--- os/hptime.c | 5 ++++- os/hptime.h | 7 +++++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/cfg/cpu.h b/cfg/cpu.h index 9b9d3143..94928215 100755 --- a/cfg/cpu.h +++ b/cfg/cpu.h @@ -17,6 +17,9 @@ /*#* *#* $Log$ + *#* Revision 1.14 2006/07/19 12:54:12 bernie + *#* Documentation fixes. + *#* *#* Revision 1.13 2006/03/27 04:49:23 bernie *#* CPU_IDLE(): Fix for new emulator. *#* @@ -81,7 +84,7 @@ #include /* ARCH_EMUL */ -/*! +/** * \name Macros for determining CPU endianness. * \{ */ @@ -89,10 +92,10 @@ #define CPU_LITTLE_ENDIAN 0x3412 /* Look twice, pal. This is not a bug. */ /*\}*/ -/*! Macro to include cpu-specific versions of the headers. */ +/** Macro to include cpu-specific versions of the headers. */ #define CPU_HEADER(module) PP_STRINGIZE(PP_CAT3(module, _, CPU_ID).h) -/*! Macro to include cpu-specific versions of implementation files. */ +/** Macro to include cpu-specific versions of implementation files. */ #define CPU_CSOURCE(module) PP_STRINGIZE(PP_CAT3(module, _, CPU_ID).c) diff --git a/os/hptime.c b/os/hptime.c index 57ccf34d..995c8d9e 100755 --- a/os/hptime.c +++ b/os/hptime.c @@ -13,6 +13,9 @@ /*#* *#* $Log$ + *#* Revision 1.7 2006/07/19 12:53:58 bernie + *#* Documentation fixes. + *#* *#* Revision 1.6 2006/02/20 01:46:46 bernie *#* Port to MacOSX. *#* @@ -56,7 +59,7 @@ hptime_t hptime_get(void) return (((hptime_t)ft.dwHighDateTime) << 32) + (hptime_t)ft.dwLowDateTime; } -#elif defined(__unix__) || defined(__APPLE__) && defined(__MACH__) +#elif defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) #include diff --git a/os/hptime.h b/os/hptime.h index 20994e81..4eb91a6d 100755 --- a/os/hptime.h +++ b/os/hptime.h @@ -1,4 +1,4 @@ -/*! +/** * \file *