[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [avr-libc-dev] missing html dox example
From: |
Theodore A. Roth |
Subject: |
Re: [avr-libc-dev] missing html dox example |
Date: |
Tue, 13 Aug 2002 16:48:37 -0700 (PDT) |
Here's a way around it:
Index: doc/api/faq.dox
===================================================================
RCS file: /cvsroot/avr-libc/avr-libc/doc/api/faq.dox,v
retrieving revision 1.4
diff -u -r1.4 faq.dox
--- doc/api/faq.dox 10 Aug 2002 21:42:43 -0000 1.4
+++ doc/api/faq.dox 13 Aug 2002 23:43:14 -0000
@@ -112,7 +112,7 @@
this:
\code
-/* xram.S begin */
+;; xram.S begin
#include <io.h>
@@ -121,7 +121,7 @@
ldi r16,_BV(SRE) | _BV(SRW)
out _SFR_IO_ADDR(MCUCR),r16
-/* xram.S end */
+;; xram.S end
\endcode
Assemble it, link the resulting <tt>xram.o</tt> with other files in
The problem is definitely a bug in doxygen. It seems to choke on the C
style comment and not show the statement following it.
Ted Roth
On Wed, 14 Aug 2002, Janne Heikkinen wrote:
:) On Tue, 13 Aug 2002, Theodore A. Roth wrote:
:)
:) > Hi Joerg (et. al.),
:) >
:) > There's a small problem in the faq ("How to modify MCUCR or WDTCR early?")
:) > where the #include doesn't show up in the html output.
:) >
:) > I've noticed a bunch of this crap before and think it is just bugs in the
:) > doxygen parser. I'm going to build 1.2.17 right now (tired of waiting for
:) > debian packages to reach unstable).
:)
:) I just built and installed doxygen 1.2.17 and "#include <io.h>" didn't
:) show up in html when building avr-libc.
:)
:) Janne Heikkinen
:)