scpi-parser, adopted from github

Dependents:   scpi_parser_test

Committer:
iesensor
Date:
Fri Nov 14 01:07:59 2014 +0000
Revision:
0:d8aca47812e0
tested on K64F

Who changed what in which revision?

UserRevisionLine numberNew contents of line
iesensor 0:d8aca47812e0 1 /*-
iesensor 0:d8aca47812e0 2 * Copyright (c) 2012-2013 Jan Breuer,
iesensor 0:d8aca47812e0 3 *
iesensor 0:d8aca47812e0 4 * All Rights Reserved
iesensor 0:d8aca47812e0 5 *
iesensor 0:d8aca47812e0 6 * Redistribution and use in source and binary forms, with or without
iesensor 0:d8aca47812e0 7 * modification, are permitted provided that the following conditions are
iesensor 0:d8aca47812e0 8 * met:
iesensor 0:d8aca47812e0 9 * 1. Redistributions of source code must retain the above copyright notice,
iesensor 0:d8aca47812e0 10 * this list of conditions and the following disclaimer.
iesensor 0:d8aca47812e0 11 * 2. Redistributions in binary form must reproduce the above copyright
iesensor 0:d8aca47812e0 12 * notice, this list of conditions and the following disclaimer in the
iesensor 0:d8aca47812e0 13 * documentation and/or other materials provided with the distribution.
iesensor 0:d8aca47812e0 14 *
iesensor 0:d8aca47812e0 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
iesensor 0:d8aca47812e0 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
iesensor 0:d8aca47812e0 17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
iesensor 0:d8aca47812e0 18 * DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
iesensor 0:d8aca47812e0 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
iesensor 0:d8aca47812e0 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
iesensor 0:d8aca47812e0 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
iesensor 0:d8aca47812e0 22 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
iesensor 0:d8aca47812e0 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
iesensor 0:d8aca47812e0 24 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
iesensor 0:d8aca47812e0 25 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
iesensor 0:d8aca47812e0 26 */
iesensor 0:d8aca47812e0 27
iesensor 0:d8aca47812e0 28 /**
iesensor 0:d8aca47812e0 29 * @file scpi_parser.h
iesensor 0:d8aca47812e0 30 * @date Thu Nov 15 10:58:45 UTC 2012
iesensor 0:d8aca47812e0 31 *
iesensor 0:d8aca47812e0 32 * @brief SCPI parser implementation
iesensor 0:d8aca47812e0 33 *
iesensor 0:d8aca47812e0 34 *
iesensor 0:d8aca47812e0 35 */
iesensor 0:d8aca47812e0 36
iesensor 0:d8aca47812e0 37 #ifndef SCPI_PARSER_H
iesensor 0:d8aca47812e0 38 #define SCPI_PARSER_H
iesensor 0:d8aca47812e0 39
iesensor 0:d8aca47812e0 40 #include "scpi/types.h"
iesensor 0:d8aca47812e0 41 #include "scpi/debug.h"
iesensor 0:d8aca47812e0 42
iesensor 0:d8aca47812e0 43 #ifdef __cplusplus
iesensor 0:d8aca47812e0 44 extern "C" {
iesensor 0:d8aca47812e0 45 #endif
iesensor 0:d8aca47812e0 46
iesensor 0:d8aca47812e0 47 void SCPI_Init(scpi_t * context);
iesensor 0:d8aca47812e0 48
iesensor 0:d8aca47812e0 49 int SCPI_Input(scpi_t * context, const char * data, size_t len);
iesensor 0:d8aca47812e0 50 int SCPI_Parse(scpi_t * context, char * data, size_t len);
iesensor 0:d8aca47812e0 51
iesensor 0:d8aca47812e0 52
iesensor 0:d8aca47812e0 53 size_t SCPI_ResultString(scpi_t * context, const char * data);
iesensor 0:d8aca47812e0 54 size_t SCPI_ResultInt(scpi_t * context, int32_t val);
iesensor 0:d8aca47812e0 55 size_t SCPI_ResultDouble(scpi_t * context, double val);
iesensor 0:d8aca47812e0 56 size_t SCPI_ResultText(scpi_t * context, const char * data);
iesensor 0:d8aca47812e0 57 size_t SCPI_ResultBool(scpi_t * context, scpi_bool_t val);
iesensor 0:d8aca47812e0 58
iesensor 0:d8aca47812e0 59 scpi_bool_t SCPI_ParamInt(scpi_t * context, int32_t * value, scpi_bool_t mandatory);
iesensor 0:d8aca47812e0 60 scpi_bool_t SCPI_ParamDouble(scpi_t * context, double * value, scpi_bool_t mandatory);
iesensor 0:d8aca47812e0 61 scpi_bool_t SCPI_ParamString(scpi_t * context, const char ** value, size_t * len, scpi_bool_t mandatory);
iesensor 0:d8aca47812e0 62 scpi_bool_t SCPI_ParamText(scpi_t * context, const char ** value, size_t * len, scpi_bool_t mandatory);
iesensor 0:d8aca47812e0 63 scpi_bool_t SCPI_ParamBool(scpi_t * context, scpi_bool_t * value, scpi_bool_t mandatory);
iesensor 0:d8aca47812e0 64 scpi_bool_t SCPI_ParamChoice(scpi_t * context, const char * options[], int32_t * value, scpi_bool_t mandatory);
iesensor 0:d8aca47812e0 65
iesensor 0:d8aca47812e0 66
iesensor 0:d8aca47812e0 67 #ifdef __cplusplus
iesensor 0:d8aca47812e0 68 }
iesensor 0:d8aca47812e0 69 #endif
iesensor 0:d8aca47812e0 70
iesensor 0:d8aca47812e0 71 #endif /* SCPI_PARSER_H */
iesensor 0:d8aca47812e0 72