summaryrefslogtreecommitdiff
path: root/code/esp32/components/eos/include/at_urc.h
blob: 9a4c641c3b3db42ab45f6d673d5bf5c76eef40ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <sys/types.h>
#include <stdint.h>
#include <regex.h>

#define AT_SIZE_NMATCH      4
#define AT_SIZE_PATTERN     64

#define AT_SIZE_URC_LIST    16

#define AT_URC_OK           0
#define AT_URC_MORE         1

typedef int (*at_urc_cb_t) (char *, regmatch_t[]);

int at_urc_process(char *urc);
int at_urc_insert(char *pattern, at_urc_cb_t cb, int flags);
int at_urc_delete(char *pattern);