nRF Connect SDK API 3.3.99
Loading...
Searching...
No Matches
at_shell.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2026 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7#ifndef AT_SHELL_H__
8#define AT_SHELL_H__
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14struct shell;
15struct k_work_q;
16
39 struct k_work_q *at_cmd_mode_work_q;
40};
41
50int at_shell_init(const struct at_shell_config *cfg);
51
54#ifdef __cplusplus
55}
56#endif
57
58#endif /* AT_SHELL_H__ */
int at_shell_init(const struct at_shell_config *cfg)
Optional initialization for the AT shell library.
struct k_work_q * at_cmd_mode_work_q
Definition at_shell.h:39
Configuration for the AT shell library.
Definition at_shell.h:29