We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009114a commit 3198ffaCopy full SHA for 3198ffa
include/zephyr/modem/chat.h
@@ -82,6 +82,10 @@ struct modem_chat_match {
82
#define MODEM_CHAT_MATCH_DEFINE(_sym, _match, _separators, _callback) \
83
const static struct modem_chat_match _sym = MODEM_CHAT_MATCH(_match, _separators, _callback)
84
85
+#define MODEM_CHAT_MATCH_WILDCARD_DEFINE(_sym, _match, _separators, _callback) \
86
+ const static struct modem_chat_match _sym = \
87
+ MODEM_CHAT_MATCH_WILDCARD(_match, _separators, _callback)
88
+
89
/* Helper struct to match any response without callback. */
90
extern const struct modem_chat_match modem_chat_any_match;
91
0 commit comments