1 /*
2  * Copyright (c) 2023 Trackunit Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/modem/backend/uart.h>
8 
9 #ifndef ZEPHYR_MODEM_BACKEND_UART_ASYNC_
10 #define ZEPHYR_MODEM_BACKEND_UART_ASYNC_
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 bool modem_backend_uart_async_is_supported(struct modem_backend_uart *backend);
17 
18 void modem_backend_uart_async_init(struct modem_backend_uart *backend,
19 				   const struct modem_backend_uart_config *config);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif /* ZEPHYR_MODEM_BACKEND_UART_ASYNC_ */
26