信号量的阻塞等待Semaphore_pend(sem, timeout);第二个参数怎么写
时间:10-02
整理:3721RD
点击:
Semaphore_pend(sem, timeout);我要做阻塞等待,第二个参数该怎么写,谢谢!
// Wait for an ALERT callback
Semaphore_pend(Semaphore_handle(&semScTaskAlert), BIOS_WAIT_FOREVER);
建议您看一下Sensor Controller Studio里面的Analog Light Sensor的gudie,这个例程里面有例子
Sensor Controller Studio里面 有个Guide文档建议看一下
追问个问题,不同文件之间,是否能a文件post(sem),b文件pend(sem)。我测试的是不行,操作系统会进入死机状态,是不是需要注意哪些情况?谢谢