11 #ifndef _ERPC_ARBITRATED_CLIENT_SETUP_H_ 12 #define _ERPC_ARBITRATED_CLIENT_SETUP_H_ 14 #include "erpc_common.h" 15 #include "erpc_config_internal.h" 17 #if ERPC_PRE_POST_ACTION 109 void erpc_arbitrated_client_set_server_thread_id(
erpc_client_t client,
void *serverThreadId);
112 #if ERPC_MESSAGE_LOGGING 125 #if ERPC_PRE_POST_ACTION 133 void erpc_arbitrated_client_add_pre_cb_action(
erpc_client_t client, pre_post_action_cb preCB);
142 void erpc_arbitrated_client_add_post_cb_action(
erpc_client_t client, pre_post_action_cb postCB);
162 #endif // _ERPC_ARBITRATED_CLIENT_SETUP_H_ struct ErpcTransport * erpc_transport_t
Opaque transport object type.
Definition: erpc_transport_setup.h:25
void erpc_arbitrated_client_set_error_handler(erpc_client_t client, client_error_handler_t error_handler)
This function sets error handler function.
Definition: erpc_arbitrated_client_setup.cpp:159
struct ErpcMessageBufferFactory * erpc_mbf_t
Opaque MessageBufferFactory object type.
Definition: erpc_mbf_setup.h:26
void erpc_arbitrated_client_set_crc(erpc_client_t client, uint32_t crcStart)
Can be used to set own crcStart number.
Definition: erpc_arbitrated_client_setup.cpp:168
erpc_client_t erpc_arbitrated_client_init(erpc_transport_t transport, erpc_mbf_t message_buffer_factory, erpc_transport_t *arbitrator)
Initializes a client that shares its transport with the server.
Definition: erpc_arbitrated_client_setup.cpp:51
struct ClientType * erpc_client_t
Opaque client object type.
Definition: erpc_client_manager.h:36
void(* client_error_handler_t)(erpc_status_t err, uint32_t functionID)
Definition: erpc_client_manager.h:32
struct ServerType * erpc_server_t
Opaque server object type.
Definition: erpc_server_setup.h:40
void erpc_arbitrated_client_deinit(erpc_client_t client)
This function de-initializes client.
Definition: erpc_arbitrated_client_setup.cpp:228