blob: 3ab870ec0d89f9cd5f795b398a2fee65cee462c0 [file] [log] [blame]
Summer Qin153f3df2022-11-17 15:51:02 +08001/*
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
14extern "C" {
15#endif
16
17/**
18 * \brief eRPC Server initialization.
19 *
20 * \param[in] transport Transport to use.
21 */
22void erpc_server_start(erpc_transport_t transport);
23
24#ifdef __cplusplus
25}
26#endif
27
28#endif /* __ERPC_SERVER_START_H__ */