建立通信处理队列


int que_create(int un);
//un:串口号 0或者1,
//返回 1:允许启动新队列 0:busy有队列正在执行,执行失败

示例

if (que_create(1)){
    que_go(1,100); //从100步开始执行
}

注意