blob: e49be9783e521ac6ce2a15da0e6956b1c281a86f [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/*******************************************************************************
2* 版权所有 (C)2023, 中兴通讯股份有限公司。
3*
4* 文件名称: sc_rpc.h
5* 文件标识: sc_rpc.h
6* 内容摘要: rpc头文件
7* 使用方法: #include <sc_rpc.h>
8*
9* 修改日期 版本号 修改标记 修改人 修改内容
10* ------------------------------------------------------------------------------
11* 2023/03/23 V1.0 Create 周国坡 创建
12*
13*******************************************************************************/
14#ifndef _SC_RPC_H
15#define _SC_RPC_H
16
17enum
18{
19 RPC_MSG_TYPE_REQUEST = 0xAA,
xf.li742dd022023-06-08 01:43:32 -070020 RPC_MSG_TYPE_REPLY = 0xBB,
21 RPC_MSG_TYPE_READY = 0x55
lh9ed821d2023-04-07 01:36:19 -070022};
23
24enum
25{
26 RPC_FUNC_ID_NV = 10
27};
28
29typedef struct
30{
31 unsigned int msg_type;
32 unsigned int func_id;
33 unsigned int data_len;
34 char data[4096];
35} T_sc_rpc_header;
36
37int sc_rpc_open(const char *rpmsg_dev);
38
39int sc_rpc_clear(int fd);
40
41int sc_rpc_send(int fd, T_sc_rpc_header *data, unsigned int flag);
42
xf.libdd93d52023-05-12 07:10:14 -070043int sc_rpc_recv(int fd, T_sc_rpc_header *data, unsigned int timeout);
lh9ed821d2023-04-07 01:36:19 -070044
45int sc_rpc_close(int fd);
46
47#endif