doxygen update
This commit is contained in:
parent
4743790cd4
commit
3a9a2a10b7
5 changed files with 9 additions and 9 deletions
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file include/lld/gdisp/gdisp_lld_msgs.h
|
||||
* @file include/gdisp/lld/gdisp_lld_msgs.h
|
||||
* @brief GDISP Graphic Driver subsystem low level driver message structures.
|
||||
*
|
||||
* @addtogroup GDISP
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file include/gwin_options.h
|
||||
* @file include/gwin/options.h
|
||||
* @brief GWIN sub-system options header file.
|
||||
*
|
||||
* @addtogroup GWIN
|
||||
|
@ -45,9 +45,9 @@
|
|||
* @details Defaults to FALSE
|
||||
* @note To use chprintf() for printing in a console window you need to
|
||||
* include in your application source file...
|
||||
* #include "chprintf.h"
|
||||
* #include "chprintf.h"
|
||||
* Also in your makefile, as part of your list of C source files, include
|
||||
* ${CHIBIOS}/os/various/chprintf.c
|
||||
* ${CHIBIOS}/os/various/chprintf.c
|
||||
*/
|
||||
#ifndef GWIN_NEED_CONSOLE
|
||||
#define GWIN_NEED_CONSOLE FALSE
|
||||
|
|
|
@ -737,7 +737,7 @@ static bool_t matchfont(const char *pattern, const char *name) {
|
|||
* @details The supplied name is matched against the font name. A '*' will replace 0 or more characters.
|
||||
* @return Returns a font or NULL if no matching font could be found.
|
||||
*
|
||||
* @params[in] name The font name to find.
|
||||
* @param[in] name The font name to find.
|
||||
*
|
||||
* @note Wildcard matching will match the shortest possible match.
|
||||
*
|
||||
|
@ -756,7 +756,7 @@ font_t gdispOpenFont(const char *name) {
|
|||
/**
|
||||
* @brief Release a font after use.
|
||||
*
|
||||
* @params[in] font The font to release.
|
||||
* @param[in] font The font to release.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
|
@ -768,7 +768,7 @@ void gdispCloseFont(font_t font) {
|
|||
* @brief Get the name of the specified font.
|
||||
* @returns The name of the font.
|
||||
*
|
||||
* @params[in] font The font to get the name for.
|
||||
* @param[in] font The font to get the name for.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file src/gdisp.c
|
||||
* @file src/gdisp/gdisp.c
|
||||
* @brief GDISP Driver code.
|
||||
*
|
||||
* @addtogroup GDISP
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file src/gevent.c
|
||||
* @file src/gevent/gevent.c
|
||||
* @brief GEVENT Driver code.
|
||||
*
|
||||
* @addtogroup GEVENT
|
||||
|
|
Loading…
Add table
Reference in a new issue