Fix doxygen warnings.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 19 Sep 2007 16:23:27 +0000 (16:23 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 19 Sep 2007 16:23:27 +0000 (16:23 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@811 38d2e660-2303-0410-9eaa-f027e97ec537

algos/tea.c
gui/menu.h
mware/prog.c
mware/prog_avr.c

index b355c1168d2b487815cab84ab41fcff66ab96dc2..a9a3a6f579bc3711530ae3e4abf1606f0d961382 100755 (executable)
@@ -41,6 +41,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2007/09/19 16:23:27  batt
+ *#* Fix doxygen warnings.
+ *#*
  *#* Revision 1.1  2007/06/07 09:13:40  batt
  *#* Add TEA enc/decryption algorithm.
  *#*
@@ -61,8 +64,8 @@ static uint32_t tea_func(uint32_t *in, uint32_t *sum, uint32_t *k)
  * \brief TEA encryption function.
  * This function encrypts <EM>v</EM> with <EM>k</EM> and returns the
  * encrypted data in <EM>v</EM>.
- * \param v Array of two long values containing the data block.
- * \param k Array of four long values containing the key.
+ * \param _v Array of two long values containing the data block.
+ * \param _k Array of four long values containing the key.
  */
 void tea_enc(void *_v, void *_k)
 {
@@ -90,8 +93,8 @@ void tea_enc(void *_v, void *_k)
  * \brief TEA decryption function.
  * This function decrypts <EM>v</EM> with <EM>k</EM> and returns the
  * decrypted data in <EM>v</EM>.
- * \param v Array of two long values containing the data block.
- *\param k Array of four long values containing the key.
+ * \param _v Array of two long values containing the data block.
+ * \param _k Array of four long values containing the key.
  */
 void tea_dec(void *_v, void *_k)
 {
index 30ec2c123350dceced9c9f3fc3aff611ed379467..e4a6753c172dfda0a13bc6cbbaa613060f5b1295 100755 (executable)
@@ -16,6 +16,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.5  2007/09/19 16:23:27  batt
+ *#* Fix doxygen warnings.
+ *#*
  *#* Revision 1.4  2006/09/13 13:58:33  bernie
  *#* Add RenderHook support.
  *#*
@@ -125,7 +128,7 @@ typedef struct Menu
        const_iptr_t     title;    /**< Menu title (ID or ptr to string, 0 to disable) */
        int              flags;    /**< See MF_#? definitions below */
        struct Bitmap   *bitmap;   /**< Bitmap where the menu is rendered */
-       int              selected; /**< Initial selection (written to if #MF_SAVESEL is set). */
+       int              selected; /**< Initial selection (written to if MF_SAVESEL is set). */
 } Menu;
 
 /**
index bd76ac955e7c02161ec5a3785d07732681936410..a600659c691b394dff9ec04335ebd5c3e7d588c3 100755 (executable)
@@ -42,7 +42,7 @@ uint8_t save_buf[TEST_SIZE];
 
 /**
  * Program memory read/write subtest.
- * Try to write/read in the same file location \param _size bytes.
+ * Try to write/read in the same \param f file location \param _size bytes.
  * \return true if all is ok, false otherwise
  * \note Restore file position at exit (if no error)
  * \note Test buffer \param buf must be filled with
index 39b6806a4cda8f26cd20221cb83aa43053b1f025..dc9ac9e7702bbc89bf131f34fe7f3b9e2f6d20ef 100755 (executable)
@@ -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 \param size bytes from buffer \param _buf to file \param *fd
  * \note Write operations are buffered.
  */
 size_t prog_write(struct _KFile *fd, const void *_buf, size_t size)
@@ -146,7 +146,7 @@ size_t prog_write(struct _KFile *fd, const void *_buf, size_t size)
 }
 
 /**
- * Open flash file \param *fd.
+ * Open flash file \param *fd
  * \param name and \param mode are unused, cause flash memory is
  * threated like one file.
  */