eRPC API Reference  Rev. 1.7.2
NXP Semiconductors
erpc_mbf_setup.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016, Freescale Semiconductor, Inc.
3  * Copyright 2016 NXP
4  * All rights reserved.
5  *
6  *
7  * SPDX-License-Identifier: BSD-3-Clause
8  */
9 
10 #ifndef _ERPC_MBF_SETUP_H_
11 #define _ERPC_MBF_SETUP_H_
12 
13 #include "erpc_transport_setup.h"
14 
21 // Types
24 
26 typedef struct ErpcMessageBufferFactory *erpc_mbf_t;
27 
29 // API
31 
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35 
37 
38 
43 
48 
55 
62 
64 
65 #ifdef __cplusplus
66 }
67 #endif
68 
71 #endif // _ERPC_MBF_SETUP_H_
struct ErpcTransport * erpc_transport_t
Opaque transport object type.
Definition: erpc_transport_setup.h:24
struct ErpcMessageBufferFactory * erpc_mbf_t
Opaque MessageBufferFactory object type.
Definition: erpc_mbf_setup.h:26
erpc_mbf_t erpc_mbf_static_init(void)
Create MessageBuffer factory which is using static allocated buffers.
Definition: erpc_setup_mbf_static.cpp:126
erpc_mbf_t erpc_mbf_rpmsg_init(erpc_transport_t transport)
Create MessageBuffer factory which is using RPMSG LITE zero copy buffers.
Definition: erpc_setup_mbf_rpmsg.cpp:103
erpc_mbf_t erpc_mbf_rpmsg_tty_init(erpc_transport_t transport)
Create MessageBuffer factory which is using RPMSG LITE TTY buffers.
Definition: erpc_setup_mbf_rpmsg_tty.cpp:107
erpc_mbf_t erpc_mbf_dynamic_init(void)
Create MessageBuffer factory which is using dynamic allocated buffers.
Definition: erpc_setup_mbf_dynamic.cpp:52