From 9c876e8d4c3288b7782e17debd2c1848345ec24b Mon Sep 17 00:00:00 2001 From: marschap Date: Sat, 29 Nov 2008 16:01:31 +0000 Subject: [PATCH] fix Doxygen warnings --- server/drivers/hd44780-bwct-usb.c | 4 ++-- server/drivers/hd44780-lcd2usb.c | 12 ++++++------ server/drivers/hd44780-uss720.c | 2 +- server/drivers/hd44780.c | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/server/drivers/hd44780-bwct-usb.c b/server/drivers/hd44780-bwct-usb.c index dbb114e..c72f6d9 100644 --- a/server/drivers/hd44780-bwct-usb.c +++ b/server/drivers/hd44780-bwct-usb.c @@ -189,7 +189,7 @@ hd_init_bwct_usb(Driver *drvthis) /** * Send data or commands to the display. - * \param p Pointer to driver's data structure. + * \param p Pointer to driver's private data structure. * \param displayID ID of the display (or 0 for all) to send data to. * \param flags Defines whether to end a command or data. * \param ch The value to send. @@ -215,7 +215,7 @@ bwct_usb_HD44780_close(PrivateData *p) /** * Change LCD contrast. - * \param drvthis Pointer to driver structure. + * \param p Pointer to driver's private data structure. * \param value New contrast value (one byte). */ void diff --git a/server/drivers/hd44780-lcd2usb.c b/server/drivers/hd44780-lcd2usb.c index c45ff11..550bd50 100644 --- a/server/drivers/hd44780-lcd2usb.c +++ b/server/drivers/hd44780-lcd2usb.c @@ -104,7 +104,7 @@ hd_init_lcd2usb(Driver *drvthis) /** * Send data or commands to the display. - * \param p Pointer to driver's data structure. + * \param p Pointer to driver's private data structure. * \param displayID ID of the display (or 0 for all) to send data to. * \param flags Defines whether to end a command or data. * \param ch The value to send. @@ -122,7 +122,7 @@ lcd2usb_HD44780_senddata(PrivateData *p, unsigned char displayID, unsigned char /** * Turn the LCD backlight on or off. - * \param p Pointer to driver's data structure. + * \param p Pointer to driver's private data structure. * \param state New backlight status. */ void @@ -139,8 +139,8 @@ lcd2usb_HD44780_backlight(PrivateData *p, unsigned char state) /** * Change LCD contrast. - * \param drvthis Pointer to driver structure. - * \param value New contrast value (one byte). + * \param p Pointer to driver's private data structure. + * \param value New contrast value (one byte). */ void lcd2usb_HD44780_set_contrast(PrivateData *p, unsigned char value) @@ -178,7 +178,7 @@ lcd2usb_set_brightness(Driver *drvthis, int state, int promille) /** * Read keypress. - * \param p Pointer to driver's data structure. + * \param p Pointer to driver's private data structure. * \return Bitmap of the pressed keys. */ unsigned char @@ -202,7 +202,7 @@ lcd2usb_HD44780_scankeypad(PrivateData *p) /** * Close the driver (do necessary clean-up). - * \param p Pointer to driver's data structure. + * \param p Pointer to driver's private data structure. */ void lcd2usb_HD44780_close(PrivateData *p) diff --git a/server/drivers/hd44780-uss720.c b/server/drivers/hd44780-uss720.c index f7bfa39..a8f843b 100644 --- a/server/drivers/hd44780-uss720.c +++ b/server/drivers/hd44780-uss720.c @@ -212,7 +212,7 @@ hd_init_uss720(Driver *drvthis) /** * Send data or commands to the display. - * \param p Pointer to driver's data structure. + * \param p Pointer to driver's private data structure. * \param displayID ID of the display (or 0 for all) to send data to. * \param flags Defines whether to end a command or data. * \param ch The value to send. diff --git a/server/drivers/hd44780.c b/server/drivers/hd44780.c index ae3c2bb..396a913 100644 --- a/server/drivers/hd44780.c +++ b/server/drivers/hd44780.c @@ -720,7 +720,7 @@ HD44780_clear(Driver *drvthis) * \param drvthis Pointer to driver structure. * \param x Horizontal character position (column). * \param y Vertical character position (row). - * \param c Character that gets written. + * \param ch Character that gets written. */ MODULE_EXPORT void HD44780_chr(Driver *drvthis, int x, int y, char ch) @@ -1347,7 +1347,7 @@ unsigned char HD44780_scankeypad(PrivateData *p) /** * Output to the optional output latch(es). * \param drvthis Pointer to driver structure. - * \param state Integer with bits representing LED states. + * \param on Integer with bits representing LED states. */ MODULE_EXPORT void HD44780_output(Driver *drvthis, int on)