diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-11-07 01:47:53 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-11-07 01:47:53 +0100 |
commit | 17857d6e97429a34fc157270d5425528bab6a031 (patch) | |
tree | eb296a147b498dcde2cb04cc7c3708af60748f0a /templates | |
parent | 1fd69f3144d253106e2dc7017b448f2cf417a67b (diff) | |
download | uGFX-17857d6e97429a34fc157270d5425528bab6a031.tar.gz uGFX-17857d6e97429a34fc157270d5425528bab6a031.tar.bz2 uGFX-17857d6e97429a34fc157270d5425528bab6a031.zip |
big doxygen update - now it works as it should
Diffstat (limited to 'templates')
-rw-r--r-- | templates/gdispXXX/gdisp_lld.c | 2 | ||||
-rw-r--r-- | templates/gdispXXX/gdisp_lld_config.h | 2 | ||||
-rw-r--r-- | templates/touchpadXXX/touchpad_lld.c | 8 | ||||
-rw-r--r-- | templates/touchpadXXX/touchpad_lld_config.h | 2 |
4 files changed, 6 insertions, 8 deletions
diff --git a/templates/gdispXXX/gdisp_lld.c b/templates/gdispXXX/gdisp_lld.c index a845fdf9..1b88a338 100644 --- a/templates/gdispXXX/gdisp_lld.c +++ b/templates/gdispXXX/gdisp_lld.c @@ -30,7 +30,7 @@ #include "hal.h"
#include "gdisp.h"
-#if GFX_USE_GDISP || defined(__DOXYGEN__)
+#if GFX_USE_GDISP /*|| defined(__DOXYGEN__)*/
/* Include the emulation code for things we don't support */
#include "gdisp_emulation.c"
diff --git a/templates/gdispXXX/gdisp_lld_config.h b/templates/gdispXXX/gdisp_lld_config.h index b1c71729..cde3581d 100644 --- a/templates/gdispXXX/gdisp_lld_config.h +++ b/templates/gdispXXX/gdisp_lld_config.h @@ -29,7 +29,7 @@ #ifndef _GDISP_LLD_CONFIG_H
#define _GDISP_LLD_CONFIG_H
-#if GFX_USE_GDISP || defined(__DOXYGEN__)
+#if GFX_USE_GDISP /*|| defined(__DOXYGEN__)*/
/*===========================================================================*/
/* Driver hardware support. */
diff --git a/templates/touchpadXXX/touchpad_lld.c b/templates/touchpadXXX/touchpad_lld.c index 8a832d8c..c2d898f4 100644 --- a/templates/touchpadXXX/touchpad_lld.c +++ b/templates/touchpadXXX/touchpad_lld.c @@ -30,7 +30,7 @@ #include "hal.h"
#include "touchpad.h"
-#if GFX_USE_TOUCHPAD || defined(__DOXYGEN__)
+#if GFX_USE_TOUCHPAD /*|| defined(__DOXYGEN__)*/
/*===========================================================================*/
/* Driver local definitions. */
@@ -46,9 +46,7 @@ /* Driver exported variables. */
/*===========================================================================*/
-#if !defined(__DOXYGEN__)
TOUCHPADDriver Touchpad;
-#endif
/*===========================================================================*/
/* Driver local variables. */
@@ -118,8 +116,8 @@ uint16_t tp_lld_read_y(void) { }
/* ---- Optional Routines ---- */
-#if TOUCHPAD_HAS_IRQ || defined(__DOXYGEN__)
- /*
+#if TOCHPAD_HAS_IRQ || defined(__DOXYGEN)
+ /*
* @brief for checking if touchpad is pressed or not.
*
* @return 1 if pressed / 0 if not pressed
diff --git a/templates/touchpadXXX/touchpad_lld_config.h b/templates/touchpadXXX/touchpad_lld_config.h index e7d046da..eb5ccd80 100644 --- a/templates/touchpadXXX/touchpad_lld_config.h +++ b/templates/touchpadXXX/touchpad_lld_config.h @@ -29,7 +29,7 @@ #ifndef _TOUCHPAD_LLD_CONFIG_H
#define _TOUCHPAD_LLD_CONFIG_H
-#if GFX_USE_TOUCHPAD || defined(__DOXYGEN__)
+#if GFX_USE_TOUCHPAD /*|| defined(__DOXYGEN__)*/
/*===========================================================================*/
/* Driver hardware support. */
|