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_ISR_ 10 #define ZEPHYR_MODEM_BACKEND_UART_ISR_ 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 void modem_backend_uart_isr_init(struct modem_backend_uart *backend, 17 const struct modem_backend_uart_config *config); 18 19 #ifdef __cplusplus 20 } 21 #endif 22 23 #endif /* ZEPHYR_MODEM_BACKEND_UART_ISR_ */ 24