Jan Breuer
2015-08-06 e016a3c9689c1ffef268def51ab134aea05041f4
Use uppercase TRUE and FALSE everywhere
2个文件已修改
22 ■■■■ 已修改文件
examples/common/scpi-def.c 20 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
libscpi/src/parser.c 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
examples/common/scpi-def.c
@@ -46,12 +46,12 @@
    fprintf(stderr, "meas:volt:dc\r\n"); // debug command name   
    // read first parameter if present
    if (!SCPI_ParamNumber(context, scpi_special_numbers_def, &param1, false)) {
    if (!SCPI_ParamNumber(context, scpi_special_numbers_def, &param1, FALSE)) {
        // do something, if parameter not present
    }
    // read second paraeter if present
    if (!SCPI_ParamNumber(context, scpi_special_numbers_def, &param2, false)) {
    if (!SCPI_ParamNumber(context, scpi_special_numbers_def, &param2, FALSE)) {
        // do something, if parameter not present
    }
@@ -75,12 +75,12 @@
    fprintf(stderr, "meas:volt:ac\r\n"); // debug command name   
    // read first parameter if present
    if (!SCPI_ParamNumber(context, scpi_special_numbers_def, &param1, false)) {
    if (!SCPI_ParamNumber(context, scpi_special_numbers_def, &param1, FALSE)) {
        // do something, if parameter not present
    }
    // read second paraeter if present
    if (!SCPI_ParamNumber(context, scpi_special_numbers_def, &param2, false)) {
    if (!SCPI_ParamNumber(context, scpi_special_numbers_def, &param2, FALSE)) {
        // do something, if parameter not present
    }
@@ -102,12 +102,12 @@
    fprintf(stderr, "conf:volt:dc\r\n"); // debug command name   
    // read first parameter if present
    if (!SCPI_ParamDouble(context, &param1, true)) {
    if (!SCPI_ParamDouble(context, &param1, TRUE)) {
        return SCPI_RES_ERR;
    }
    // read second paraeter if present
    if (!SCPI_ParamDouble(context, &param2, false)) {
    if (!SCPI_ParamDouble(context, &param2, FALSE)) {
        // do something, if parameter not present
    }
@@ -122,7 +122,7 @@
    fprintf(stderr, "TEST:BOOL\r\n"); // debug command name   
    // read first parameter if present
    if (!SCPI_ParamBool(context, &param1, true)) {
    if (!SCPI_ParamBool(context, &param1, TRUE)) {
        return SCPI_RES_ERR;
    }
@@ -144,7 +144,7 @@
    int32_t param;
    const char * name;
    
    if (!SCPI_ParamChoice(context, trigger_source, &param, true)) {
    if (!SCPI_ParamChoice(context, trigger_source, &param, TRUE)) {
        return SCPI_RES_ERR;
    }
    
@@ -171,7 +171,7 @@
    size_t copy_len;
    buffer[0] = 0;
    SCPI_ParamCopyText(context, buffer, 100, &copy_len, false);
    SCPI_ParamCopyText(context, buffer, 100, &copy_len, FALSE);
    fprintf(stderr, "TEXT: ***%s***\r\n", buffer);
@@ -182,7 +182,7 @@
    const char * data;
    size_t len;
    SCPI_ParamArbitraryBlock(context, &data, &len, false);
    SCPI_ParamArbitraryBlock(context, &data, &len, FALSE);
    SCPI_ResultArbitraryBlock(context, data, len);
libscpi/src/parser.c
@@ -785,7 +785,7 @@
 * @param options specifications of choices numbers (patterns)
 * @param tag numerical representatio of choice
 * @param text result text
 * @return TRUE if succesfule, else false
 * @return TRUE if succesfule, else FALSE
 */
scpi_bool_t SCPI_ChoiceToName(const scpi_choice_def_t * options, int32_t tag, const char ** text) {
    int i;