Files
player/Project/Src/MyApp/ble_rpc.h
2025-06-27 00:32:57 +08:00

27 lines
269 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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