This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

ble_dispatch_liteProcess和bleDispatch_ProcessEvent的区别



在BLE Stack源码中,const pTaskEventHandlerFn tasksArr[]函数指针数组,

数组中的函数的作用是不是 处理来时APP层对协议栈各层的API调用?通过icall_directAPI统一的把各层的API函数指针和函数参数通过消息队列的方式传递到协议栈,然后在const pTaskEventHandlerFn tasksArr[]函数指针数组中,根据不同的接口调用,获取到当前优先级最高的任务,执行相应的处理

osalInitTasks得作用是不是创建0--9十个不同的task线程?

在pTaskEventHandlerFn tasksArr[]函数指针数组中0-9对应的函数指针,是不是就是在osalInitTasks中创建的task?