| | |
| | | fprintf(stderr, "meas:volt:dc\r\n"); // debug command name |
| | | |
| | | // read first parameter if present |
| | | if (!SCPI_ParamNumber(context, scpi_special_numbers_def, ¶m1, false)) { |
| | | if (!SCPI_ParamNumber(context, scpi_special_numbers_def, ¶m1, FALSE)) { |
| | | // do something, if parameter not present |
| | | } |
| | | |
| | | // read second paraeter if present |
| | | if (!SCPI_ParamNumber(context, scpi_special_numbers_def, ¶m2, false)) { |
| | | if (!SCPI_ParamNumber(context, scpi_special_numbers_def, ¶m2, FALSE)) { |
| | | // do something, if parameter not present |
| | | } |
| | | |
| | |
| | | fprintf(stderr, "meas:volt:ac\r\n"); // debug command name |
| | | |
| | | // read first parameter if present |
| | | if (!SCPI_ParamNumber(context, scpi_special_numbers_def, ¶m1, false)) { |
| | | if (!SCPI_ParamNumber(context, scpi_special_numbers_def, ¶m1, FALSE)) { |
| | | // do something, if parameter not present |
| | | } |
| | | |
| | | // read second paraeter if present |
| | | if (!SCPI_ParamNumber(context, scpi_special_numbers_def, ¶m2, false)) { |
| | | if (!SCPI_ParamNumber(context, scpi_special_numbers_def, ¶m2, FALSE)) { |
| | | // do something, if parameter not present |
| | | } |
| | | |
| | |
| | | fprintf(stderr, "conf:volt:dc\r\n"); // debug command name |
| | | |
| | | // read first parameter if present |
| | | if (!SCPI_ParamDouble(context, ¶m1, true)) { |
| | | if (!SCPI_ParamDouble(context, ¶m1, TRUE)) { |
| | | return SCPI_RES_ERR; |
| | | } |
| | | |
| | | // read second paraeter if present |
| | | if (!SCPI_ParamDouble(context, ¶m2, false)) { |
| | | if (!SCPI_ParamDouble(context, ¶m2, FALSE)) { |
| | | // do something, if parameter not present |
| | | } |
| | | |
| | |
| | | fprintf(stderr, "TEST:BOOL\r\n"); // debug command name |
| | | |
| | | // read first parameter if present |
| | | if (!SCPI_ParamBool(context, ¶m1, true)) { |
| | | if (!SCPI_ParamBool(context, ¶m1, TRUE)) { |
| | | return SCPI_RES_ERR; |
| | | } |
| | | |
| | |
| | | int32_t param; |
| | | const char * name; |
| | | |
| | | if (!SCPI_ParamChoice(context, trigger_source, ¶m, true)) { |
| | | if (!SCPI_ParamChoice(context, trigger_source, ¶m, TRUE)) { |
| | | return SCPI_RES_ERR; |
| | | } |
| | | |
| | |
| | | size_t copy_len; |
| | | |
| | | buffer[0] = 0; |
| | | SCPI_ParamCopyText(context, buffer, 100, ©_len, false); |
| | | SCPI_ParamCopyText(context, buffer, 100, ©_len, FALSE); |
| | | |
| | | fprintf(stderr, "TEXT: ***%s***\r\n", buffer); |
| | | |
| | |
| | | const char * data; |
| | | size_t len; |
| | | |
| | | SCPI_ParamArbitraryBlock(context, &data, &len, false); |
| | | SCPI_ParamArbitraryBlock(context, &data, &len, FALSE); |
| | | |
| | | SCPI_ResultArbitraryBlock(context, data, len); |
| | | |