Minor fixes to the documentation.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@853 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2009-03-18 20:05:08 +00:00
parent 07e6ae3a59
commit e4534bc973
1 changed files with 3 additions and 2 deletions

View File

@ -129,12 +129,13 @@ typedef struct {
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#if CH_DBG_ENABLE_TRACE #if !defined(__DOXYGEN__) && CH_DBG_ENABLE_TRACE
extern TraceBuffer trace_buffer; extern TraceBuffer trace_buffer;
void trace_init(void); void trace_init(void);
void chDbgTrace(Thread *otp, Thread *ntp); void chDbgTrace(Thread *otp, Thread *ntp);
#endif #endif
#if CH_DBG_ENABLE_ASSERTS || CH_DBG_ENABLE_CHECKS || CH_DBG_ENABLE_STACK_CHECK #if !defined(__DOXYGEN__) && \
(CH_DBG_ENABLE_ASSERTS || CH_DBG_ENABLE_CHECKS || CH_DBG_ENABLE_STACK_CHECK)
extern char *panic_msg; extern char *panic_msg;
void chDbgPanic(char *msg); void chDbgPanic(char *msg);
#endif #endif