From: asterix Date: Wed, 20 Feb 2008 09:06:33 +0000 (+0000) Subject: Fix doxygen warning. X-Git-Tag: 1.0.0~107 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=fff51d0f659a22f994cd8cb1d2a58a46ae981e2d;p=bertos.git Fix doxygen warning. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1145 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/drv/flash25.c b/drv/flash25.c index bd4d8715..2f90d52f 100644 --- a/drv/flash25.c +++ b/drv/flash25.c @@ -295,7 +295,7 @@ static size_t flash25_write(struct KFile *fd, const void *_buf, size_t size) * * Erase a select \p sector of serial flash memory. * - * \Note A sector size is FLASH25_SECTOR_SIZE. + * \note A sector size is FLASH25_SECTOR_SIZE. * This operation could take a while. */ void flash25_sectorErase(Flash25Sector sector) @@ -343,7 +343,7 @@ void flash25_sectorErase(Flash25Sector sector) * * Erase all sector of serial flash memory. * - * \Note This operation could take a while. + * \note This operation could take a while. */ void flash25_chipErase(void) { diff --git a/drv/ser.c b/drv/ser.c index d920d9de..fb13b705 100644 --- a/drv/ser.c +++ b/drv/ser.c @@ -364,6 +364,7 @@ static int ser_flush(struct KFile *fd) /** * Initialize a serial port. * + * \param fd KFile Serial struct interface. * \param unit Serial unit to open. Possible values are architecture dependant. */ static struct Serial *ser_open(struct KFileSerial *fd, unsigned int unit) diff --git a/kern/monitor.h b/kern/monitor.h index b6f4151e..95bbb6db 100644 --- a/kern/monitor.h +++ b/kern/monitor.h @@ -64,7 +64,7 @@ void monitor_start(size_t stacksize, cpustack_t *stack); * the interrupt supervisor stack). * * \note For this function to work, the stack must have been filled at startup with - * #CONFIG_KERN_STACKFILLCODE. + * CONFIG_KERN_STACKFILLCODE. */ size_t monitor_checkStack(cpustack_t *stack_base, size_t stack_size);