大家好:
请教大家一个问题,
SDK:simplelink_cc13x2_26x2_sdk_4_40_00_44
CCS:10.2
zed_sampleapp例程中 SAMPLEAPP_KEY_EVT 事件 与 zclsampleApp_ui_event_loop()中的 SAMPLEAPP_KEY_EVT_UI 都是处理按键的,这二者不是重复吗?另外SAMPLEAPP_KEY_EVT 没有任何地方set,也就是一直没有使用。这是故意这样写的还是怎么?
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.
Hi Susan:
您可能误解了我的意思,我意思是
if(appServiceTaskEvents & SAMPLEAPP_KEY_EVT)
{
// Process Key Presses
sampleApp_processKey(keys);
keys = NULL;
appServiceTaskEvents &= ~SAMPLEAPP_KEY_EVT;
}
这段从意思上看是处理按键的,但实际这个事件永远不执行,我没找到 appServiceTaskEvents |= SAMPLEAPP_UI_INPUT_EVT; 这个的地方,处理LP上 button left 和button right的事件都在 zclsampleApp_ui_event_loop()中,
请问这个SAMPLEAPP_KEY_EVT 只是一个示例吗?