X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fcfg_xmodem.h;h=eb8897f4ef10fdc10af8ee24075de6ae1f3f1143;hb=709301ecf3a2e804b403dc8da16f427440df61e8;hp=bedde7629eaf362ff86d14749ab2f1abc7938049;hpb=54c0cbfcd383f860eb4d69c91eb7dee9e3615a1f;p=bertos.git diff --git a/bertos/cfg/cfg_xmodem.h b/bertos/cfg/cfg_xmodem.h index bedde762..eb8897f4 100644 --- a/bertos/cfg/cfg_xmodem.h +++ b/bertos/cfg/cfg_xmodem.h @@ -40,19 +40,27 @@ #ifndef CFG_XMODEM_H #define CFG_XMODEM_H -/// Enable Rx. $WIZARD = { "type" : "boolean" } +/// Enable Rx. $WIZ$ type = "boolean" #define CONFIG_XMODEM_RECV 1 -/// Enable TX. $WIZARD = { "type" : "boolean" } +/// Enable TX. $WIZ$ type = "boolean" #define CONFIG_XMODEM_SEND 1 -/// Allow a Rx/Tx of 1Kbyte block. $WIZARD = { "type" : "boolean" } +/// Allow a Rx/Tx of 1Kbyte block. $WIZ$ type = "boolean" #define CONFIG_XMODEM_1KCRC 1 -/// Max retries before giving up. $WIZARD = { "type" : "int", "min" : "0" } +/** + * Max retries before giving up. + * $WIZ$ type = "int" + * $WIZ$ min = 1 + */ #define CONFIG_XMODEM_MAXRETRIES 15 -/// Max retries before switching to BCC. $WIZARD = { "type" : "int", "min" : "0" } +/** + * Max retries before switching to BCC. + * $WIZ$ type = "int" + * $WIZ$ min = 1 + */ #define CONFIG_XMODEM_MAXCRCRETRIES 7 #endif /* CFG_XMODEM_H */