diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-01-11 19:39:36 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-01-11 19:39:36 +0100 |
commit | dae721900b75d7b8e78bc35e79c4288934bba79d (patch) | |
tree | a18506c87a87c60aa73cdb634f72240948fbceff /include | |
parent | 7a66e63849f43aae17fb256afadc475ffc578945 (diff) | |
download | uGFX-dae721900b75d7b8e78bc35e79c4288934bba79d.tar.gz uGFX-dae721900b75d7b8e78bc35e79c4288934bba79d.tar.bz2 uGFX-dae721900b75d7b8e78bc35e79c4288934bba79d.zip |
small doxygen fixes
Diffstat (limited to 'include')
-rw-r--r-- | include/gdisp/lld/emulation.c | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/include/gdisp/lld/emulation.c b/include/gdisp/lld/emulation.c index 04afd630..a514458c 100644 --- a/include/gdisp/lld/emulation.c +++ b/include/gdisp/lld/emulation.c @@ -18,20 +18,23 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- Emulation routines included into gdisp_lld.c
-*/
-
-/*
- Even though this is a software emulation of a low level driver
- most validation doesn't need to happen here as eventually
- we call a real low level driver routine and if validation is
- required - it will do it.
-*/
+/**
+ * @file include/gdisp/lld/emulation.c
+ * @brief GDISP emulation routines for stuff the driver dosen't support
+ *
+ * @addtogroup GDISP
+ *
+ * @details Even though this is a software emulation of a low level driver
+ * most validation doesn't need to happen here as eventually
+ * we call a real low level driver routine and if validation is
+ * required - it will do it.
+ *
+ * @{
+ */
#ifndef GDISP_EMULATION_C
#define GDISP_EMULATION_C
-#if GFX_USE_GDISP || defined(__DOXYGEN__)
+#if GFX_USE_GDISP /*|| defined(__DOXYGEN__) */
#ifndef GDISP_LLD_NO_STRUCT
static struct GDISPDriver {
@@ -765,4 +768,5 @@ void *GDISP_LLD(query)(unsigned what) { #endif /* GFX_USE_GDISP */
#endif /* GDISP_EMULATION_C */
+/** @} */
|