Summer Qin | 153f3df | 2022-11-17 15:51:02 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2023, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef __ERPC_SERVER_START_H__ |
| 9 | #define __ERPC_SERVER_START_H__ |
| 10 | |
| 11 | #include "erpc_transport_setup.h" |
| 12 | |
| 13 | #ifdef __cplusplus |
| 14 | extern "C" { |
| 15 | #endif |
| 16 | |
| 17 | /** |
| 18 | * \brief eRPC Server initialization. |
| 19 | * |
| 20 | * \param[in] transport Transport to use. |
| 21 | */ |
| 22 | void erpc_server_start(erpc_transport_t transport); |
| 23 | |
| 24 | #ifdef __cplusplus |
| 25 | } |
| 26 | #endif |
| 27 | |
| 28 | #endif /* __ERPC_SERVER_START_H__ */ |