comparison uptools/atcmd/resp_parse.h @ 352:02d6c8469535

fcup-smdump implemented, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 05 Feb 2018 08:47:45 +0000
parents
children
comparison
equal deleted inserted replaced
351:f0e9bb28b4d6 352:02d6c8469535
1 /*
2 * Data structures for parsing structured responses to AT commands
3 */
4
5 struct resp_field {
6 int type;
7 unsigned num;
8 char *str;
9 };
10
11 #define RESP_FIELD_EMPTY 0
12 #define RESP_FIELD_NUMBER 1
13 #define RESP_FIELD_STRING 2