From: duplo Date: Thu, 5 Feb 2009 14:10:24 +0000 (+0000) Subject: Remove the long and the unsigned fields from the int parameter definitions X-Git-Tag: 2.1.0~408 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=3618b288a8cd15ac56f106537e4c8f28f5d8a377;p=bertos.git Remove the long and the unsigned fields from the int parameter definitions git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2274 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/cfg/cfg_adc.h b/bertos/cfg/cfg_adc.h index e8aeaeb8..4ecd672c 100644 --- a/bertos/cfg/cfg_adc.h +++ b/bertos/cfg/cfg_adc.h @@ -55,9 +55,7 @@ * Frequency clock for ADC conversion. * * $WIZARD = { - * "type" : "int", - * "long" : True, - * "unsigned" : True + * "type" : "int" * } */ #define CONFIG_ADC_CLOCK 4800000UL diff --git a/bertos/cfg/cfg_ramp.h b/bertos/cfg/cfg_ramp.h index e4527660..9317d6ff 100644 --- a/bertos/cfg/cfg_ramp.h +++ b/bertos/cfg/cfg_ramp.h @@ -79,7 +79,7 @@ /* * Default ramp */ -#define RAMP_DEF_TIME 6000000UL ///< microsecs. $WIZARD = { "type" : "int", "long" : True, "unsigned" : True } +#define RAMP_DEF_TIME 6000000UL ///< microsecs. $WIZARD = { "type" : "int" } #define RAMP_DEF_MAXFREQ 5000 ///< Hz. $WIZARD = { "type" : "int", "min" : "0" } #define RAMP_DEF_MINFREQ 200 ///< Hz. $WIZARD = { "type" : "int", "min" : "0" } #define RAMP_DEF_POWERRUN 10 ///< 10 deciampere (1 ampere). $WIZARD = { "type" : "int", "min" : "0" }