Change the comment style for the modules and the list, and use the newParser to parse...
[bertos.git] / bertos / cfg / cfg_xmodem.h
index 71ced64a6022344b401088401b1648ba8b519897..bedde7629eaf362ff86d14749ab2f1abc7938049 100644 (file)
 #ifndef CFG_XMODEM_H
 #define CFG_XMODEM_H
 
-/// Enable Rx 
+/// Enable Rx. $WIZARD = { "type" : "boolean" }
 #define CONFIG_XMODEM_RECV   1
 
-/// Enable TX
+/// Enable TX. $WIZARD = { "type" : "boolean" }
 #define CONFIG_XMODEM_SEND   1
 
-/// Allow a Rx/Tx of 1Kbyte block
+/// Allow a Rx/Tx of 1Kbyte block. $WIZARD = { "type" : "boolean" }
 #define CONFIG_XMODEM_1KCRC  1
 
+/// Max retries before giving up. $WIZARD = { "type" : "int", "min" : "0" }
+#define CONFIG_XMODEM_MAXRETRIES     15
+
+/// Max retries before switching to BCC.  $WIZARD = { "type" : "int", "min" : "0" }
+#define CONFIG_XMODEM_MAXCRCRETRIES   7
+
 #endif /* CFG_XMODEM_H */