Add wizard info.
[bertos.git] / bertos / cfg / cfg_xmodem.h
index 129a21184b79c6c98c25075c9d5434269f8660fd..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
+/// Max retries before giving up. $WIZARD = { "type" : "int", "min" : "0" }
 #define CONFIG_XMODEM_MAXRETRIES     15
 
-/// Max retries before switching to BCC
+/// Max retries before switching to BCC.  $WIZARD = { "type" : "int", "min" : "0" }
 #define CONFIG_XMODEM_MAXCRCRETRIES   7
 
 #endif /* CFG_XMODEM_H */