X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fcfg_xmodem.h;h=2922d0574bfdaf9650eef9da2ffbc17cf6c16a05;hb=ba2ba183c492049aface3e3d4e1d5f945b43f3d6;hp=bedde7629eaf362ff86d14749ab2f1abc7938049;hpb=54c0cbfcd383f860eb4d69c91eb7dee9e3615a1f;p=bertos.git diff --git a/bertos/cfg/cfg_xmodem.h b/bertos/cfg/cfg_xmodem.h index bedde762..2922d057 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 = "0" + */ #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 = "0" + */ #define CONFIG_XMODEM_MAXCRCRETRIES 7 #endif /* CFG_XMODEM_H */