diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-03-25 15:28:15 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-03-25 15:28:15 +0000 |
commit | dea859c252d1ba02aaead3022b004702679712a6 (patch) | |
tree | 797ad6edd1b85672dcf84d1a476e3312d9bfdf5e /os/hal/platforms/AVR | |
parent | f38a21493342f3bd2f7e3371508e4ff280f76fb3 (diff) | |
download | ChibiOS-dea859c252d1ba02aaead3022b004702679712a6.tar.gz ChibiOS-dea859c252d1ba02aaead3022b004702679712a6.tar.bz2 ChibiOS-dea859c252d1ba02aaead3022b004702679712a6.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1777 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/AVR')
-rw-r--r-- | os/hal/platforms/AVR/serial_lld.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/os/hal/platforms/AVR/serial_lld.h b/os/hal/platforms/AVR/serial_lld.h index cfdb40aa9..b89bd3ef3 100644 --- a/os/hal/platforms/AVR/serial_lld.h +++ b/os/hal/platforms/AVR/serial_lld.h @@ -121,11 +121,10 @@ typedef struct { /* External declarations. */
/*===========================================================================*/
-/** @cond never*/
-#if USE_AVR_USART0
+#if USE_AVR_USART0 && !defined(__DOXYGEN__)
extern SerialDriver SD1;
#endif
-#if USE_AVR_USART1
+#if USE_AVR_USART1 && !defined(__DOXYGEN__)
extern SerialDriver SD2;
#endif
@@ -138,7 +137,6 @@ extern "C" { #ifdef __cplusplus
}
#endif
-/** @endcond*/
#endif /* CH_HAL_USE_SERIAL */
|