From e3d641dc7f4e4e634267d39cae8dcc597f13bb3a Mon Sep 17 00:00:00 2001 From: Andrey Nakin <andrey.nakin@gmail.com> Date: 周五, 17 4月 2015 03:58:15 +0800 Subject: [PATCH] Merge branch 'master' of https://github.com/j123b567/scpi-parser --- examples/common/scpi-def.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/examples/common/scpi-def.c b/examples/common/scpi-def.c index 3a863c9..9e3cc5d 100644 --- a/examples/common/scpi-def.c +++ b/examples/common/scpi-def.c @@ -154,6 +154,13 @@ return SCPI_RES_OK; } +scpi_result_t TEST_Numbers(scpi_t * context) { + + fprintf(stderr, "RAW CMD %.*s\r\n", (int)context->paramlist.cmd_raw.length, context->paramlist.cmd_raw.data); + + return SCPI_RES_OK; +} + static const scpi_command_t scpi_commands[] = { /* IEEE Mandated Commands (SCPI std V1999.0 4.1.1) */ { .pattern = "*CLS", .callback = SCPI_CoreCls,}, @@ -204,6 +211,7 @@ {.pattern = "TEST:BOOL", .callback = TEST_Bool,}, {.pattern = "TEST:CHOice?", .callback = TEST_ChoiceQ,}, + {.pattern = "TEST#:NUMbers#", .callback = TEST_Numbers,}, SCPI_CMD_LIST_END }; -- Gitblit v1.9.1