Add wizard info.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 6 Feb 2009 18:11:54 +0000 (18:11 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 6 Feb 2009 18:11:54 +0000 (18:11 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2322 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/algo/crc.h
bertos/algo/md2.h
bertos/algo/rle.h
bertos/algo/rotating_hash.h
bertos/algo/tea.h
bertos/cfg/cfg_md2.h

index bc442b7e19d942356c665c139eb4dce1df257bdf..51ce4dd0f8c23ba6932194e69b7e3546983f08e3 100644 (file)
@@ -31,7 +31,7 @@
  *
  * -->
  *
- * \brief XModem-CRC16 algorithm (interface)
+ * \brief Cyclic Redundancy Check 16 (CRC).
  *
  * \note This algorithm is incompatible with the CCITT-CRC16.
  *
  *
  * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "crc16",
+ * "depends" : [],
+ * "configuration" : ""
+ * }
  */
 
 #ifndef ALGO_CRC_H
index 51be84889e509d8d560389d0b841d12bb35d2169..bce2947c5c59348c8bb3dc2d5a7a423c795c31b9 100644 (file)
  *
  * \version $Id$
  * \author Daniele Basile <asterix@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "md2",
+ * "depends" : [],
+ * "configuration" : "bertos/cfg/cfg_md2.h"
+ * }
  */
 
 #ifndef ALGO_MD2_H
@@ -49,7 +55,7 @@
 #include "cfg/cfg_md2.h"
 #include <cfg/compiler.h>
 
-#define NUM_COMPUTE_ROUNDS 18                        ///< Number of compute rounds.
+#define NUM_COMPUTE_ROUNDS 18                           ///< Number of compute rounds.
 #define COMPUTE_ARRAY_LEN  CONFIG_MD2_BLOCK_LEN * 3     ///< Lenght of compute array.
 #define MD2_DIGEST_LEN CONFIG_MD2_BLOCK_LEN
 /**
index 6e056d22b76b2340cc1bfdcc94a25b447f94a604..382f9079682e38f7c126e3e6da193b7790251bdd 100644 (file)
  *
  * -->
  *
+ * \brief General-purpose run-length {en,de}coding algorithm.
+ *
  * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
- * \brief General-purpose run-length {en,de}coding algorithm (interface)
+ * $WIZARD_MODULE = {
+ * "name" : "rle",
+ * "depends" : [],
+ * "configuration" : ""
+ * }
  */
 #ifndef RLE_H
 #define RLE_H
index c154af1d33a8b3f28d57acb7ca28d7b1d934e610..c0d3d9b548cbb576e2a5394b06ff8b32848792db 100644 (file)
  * \version $Id$
  *
  * \author Francesco Sacchi <batt@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "rotating_hash",
+ * "depends" : [],
+ * "configuration" : ""
+ * }
  */
 
 
index 9731801233389a7b302c0fae3ed85dea6c4b0005..72ea01f0769e9600a06e01d16960048a3bb1f836 100644 (file)
  *
  * -->
  *
- * \brief TEA Tiny Encription Algorith functions (interface).
+ * \brief TEA Tiny Encription Algorith functions.
+ *
+ * Documentation for TEA is available at
+ * http://www.cl.cam.ac.uk/ftp/users/djw3/tea.ps.
  *
  * \version $Id$
  * \author Francesco Sacchi <batt@develer.com>
  *
- * Documentation for TEA is available at
- * http://www.cl.cam.ac.uk/ftp/users/djw3/tea.ps.
+ * $WIZARD_MODULE = {
+ * "name" : "tea",
+ * "depends" : [],
+ * "configuration" : ""
+ * }
  */
 
 #ifndef ALGO_TEA_H
index be427ec73f5dfbb46fce60fe77f5ea25770ec8b2..3f8916173c4a612c18fe7cae30ec76e899097740 100644 (file)
 #ifndef CFG_MD2_H
 #define CFG_MD2_H
 
-/// Size of block for MD2 algorithm.
+/// Size of block for MD2 algorithm. $WIZARD = { "type" : "int", "min" : "0" }
 #define CONFIG_MD2_BLOCK_LEN    16
 
-/// Use standard permutation in MD2 algorithm.
+/// Use standard permutation in MD2 algorithm. $WIZARD = { "type" : "boolean" }
 #define CONFIG_MD2_STD_PERM     0
 
 #endif /* CFG_MD2_H */