Minor fixes to the documentation.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@853 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
07e6ae3a59
commit
e4534bc973
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue