小学生
最后登录1970-1-1
在线时间 小时
注册时间2018-2-26
|
想请教下大家,接口操作函数集是怎么用的。
例如一个rs232的函数,定义的是一个函数操作集
t_intf_operations comm_uart_ops = {
comm_uart_init,
comm_uart_uninit,
NULL,
NULL,
comm_uart_recv,
comm_uart_send
};
其中comm_uart_recv表示接收的子函数,comm_uart_send是发送的子函数。
那么如果我现在有个数组要主动发送的话,要怎么写呢?
|
|