From c2fdd9fdabea8688dfe7d841c53b842a1ebe8a35 Mon Sep 17 00:00:00 2001 From: batt Date: Mon, 1 Oct 2007 16:41:17 +0000 Subject: [PATCH] Change doxygen \param tag to \a. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@820 38d2e660-2303-0410-9eaa-f027e97ec537 --- mware/prog_avr.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mware/prog_avr.c b/mware/prog_avr.c index 103d5f9d..6e35e755 100755 --- a/mware/prog_avr.c +++ b/mware/prog_avr.c @@ -93,7 +93,7 @@ static void prog_flush(void) /** - * Check current page and if \param page is different, load it in + * Check current page and if \a page is different, load it in * temporary buffer. */ static void prog_loadPage(avr_page_t page) @@ -110,7 +110,7 @@ static void prog_loadPage(avr_page_t page) /** * Write program memory. - * Write \param size bytes from buffer \param _buf to file \param *fd + * Write \a size bytes from buffer \a _buf to file \a *fd * \note Write operations are buffered. */ size_t prog_write(struct _KFile *fd, const void *_buf, size_t size) @@ -146,8 +146,8 @@ size_t prog_write(struct _KFile *fd, const void *_buf, size_t size) } /** - * Open flash file \param *fd - * \param name and \param mode are unused, cause flash memory is + * Open flash file \a *fd + * \a name and \a mode are unused, cause flash memory is * threated like one file. */ bool prog_open(struct _KFile *fd, UNUSED_ARG(const char *, name), UNUSED_ARG(int, mode)) @@ -164,7 +164,7 @@ bool prog_open(struct _KFile *fd, UNUSED_ARG(const char *, name), UNUSED_ARG(int } /** - * Close file \param *fd + * Close file \a *fd */ bool prog_close(UNUSED_ARG(struct _KFile *,fd)) { @@ -174,7 +174,7 @@ bool prog_close(UNUSED_ARG(struct _KFile *,fd)) } /** - * Move \param *fd file seek position of \param offset bytes + * Move \a *fd file seek position of \a offset bytes * from current position. */ bool prog_seek(struct _KFile *fd, int32_t offset) @@ -192,7 +192,7 @@ bool prog_seek(struct _KFile *fd, int32_t offset) } /** - * Read from file \param *fd \param size bytes and put it in buffer \param *buf + * Read from file \a *fd \a size bytes and put it in buffer \a *buf * \return the number of bytes read. */ size_t prog_read(struct _KFile *fd, void *buf, size_t size) -- 2.25.1