Files
player/Project/Src/MyApp/ble_rpc.h

27 lines
269 B
C
Raw Permalink Normal View History

2025-06-27 00:32:57 +08:00
#ifndef ble_rpc_h__
#define ble_rpc_h__
// 获取指定index函数的帮助请保证str的空间大于128
int rpc_get_help(void *obj,char *str,int index);
int rpc_get_fun1(void *obj,int *out,int a,int b);
int rpc_set_fun2(void *obj,int a);
#endif