small doxygen fixes

ugfx_release_2.6
Joel Bodenmann 2013-01-11 19:39:36 +01:00
parent 7a66e63849
commit dae721900b
6 changed files with 21 additions and 23 deletions

View File

@ -18,12 +18,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
/**
* The following stuff is optional in your gfxconf.h:
*
* #define GDISP_NEED_SCROLL TRUE (optional but recommended if your GDISP driver supports it)
*/
#include "ch.h" #include "ch.h"
#include "hal.h" #include "hal.h"
#include "chprintf.h" #include "chprintf.h"

View File

@ -19,7 +19,7 @@
*/ */
/** /**
* @file drivers/gdisp/ILI9320/gdisp_lld_board_olimex_stm32_lcd.h * @file drivers/gdisp/ILI9320/gdisp_lld_board_example.h
* @brief GDISP Graphic Driver subsystem board interface for the ILI9320 display. * @brief GDISP Graphic Driver subsystem board interface for the ILI9320 display.
* *
* @addtogroup GDISP * @addtogroup GDISP

View File

@ -19,8 +19,8 @@
*/ */
/** /**
* @file drivers/gdisp/SSD1289/gdisp_lld_board_example.h * @file drivers/gdisp/S6D1121/gdisp_lld_board_example.h
* @brief GDISP Graphic Driver subsystem board interface for the SSD1289 display. * @brief GDISP Graphic Driver subsystem board interface for the S6D1121 display.
* *
* @addtogroup GDISP * @addtogroup GDISP
* @{ * @{

View File

@ -20,7 +20,7 @@
/** /**
* @file drivers/gdisp/S6D1121/gdisp_lld_board_olimex_e407.h * @file drivers/gdisp/S6D1121/gdisp_lld_board_olimex_e407.h
* @brief GDISP Graphic Driver subsystem board interface for the SSD1289 display. * @brief GDISP Graphic Driver subsystem board interface for the S6D1121 display
* *
* @addtogroup GDISP * @addtogroup GDISP
* @{ * @{

View File

@ -19,8 +19,8 @@
*/ */
/** /**
* @file drivers/ginput/touch/ADS7843/ginput_lld_mouse_board_example.h * @file drivers/ginput/touch/ADS7843/ginput_lld_mouse_board_firebull_stm32f103.h
* @brief GINPUT Touch low level driver source for the ADS7843 on the example board. * @brief GINPUT ouch low level driver source for the ADS7843 on the FireBull STM32F103-FB board.
* *
* @defgroup Mouse Mouse * @defgroup Mouse Mouse
* @ingroup GINPUT * @ingroup GINPUT

View File

@ -18,20 +18,23 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
/* /**
Emulation routines included into gdisp_lld.c * @file include/gdisp/lld/emulation.c
*/ * @brief GDISP emulation routines for stuff the driver dosen't support
*
/* * @addtogroup GDISP
Even though this is a software emulation of a low level driver *
most validation doesn't need to happen here as eventually * @details Even though this is a software emulation of a low level driver
we call a real low level driver routine and if validation is * most validation doesn't need to happen here as eventually
required - it will do it. * we call a real low level driver routine and if validation is
*/ * required - it will do it.
*
* @{
*/
#ifndef GDISP_EMULATION_C #ifndef GDISP_EMULATION_C
#define GDISP_EMULATION_C #define GDISP_EMULATION_C
#if GFX_USE_GDISP || defined(__DOXYGEN__) #if GFX_USE_GDISP /*|| defined(__DOXYGEN__) */
#ifndef GDISP_LLD_NO_STRUCT #ifndef GDISP_LLD_NO_STRUCT
static struct GDISPDriver { static struct GDISPDriver {
@ -765,4 +768,5 @@ void *GDISP_LLD(query)(unsigned what) {
#endif /* GFX_USE_GDISP */ #endif /* GFX_USE_GDISP */
#endif /* GDISP_EMULATION_C */ #endif /* GDISP_EMULATION_C */
/** @} */