gpio extend_sleep.

扩展程序中的GPIO配置

星期一,2015-10-19 17:37-威斯利

我将p3.2设置为hight。我使用ke_timer_set()函数来生成10ms计时器。在定时器中断功能中,我将p3.2设置为低。该动作每100毫秒生成一次。

Alert_State.Port = 3.
Alert_state.pin = 2

void a_function()
{
gpio_setactive(Alert_state.port,Alert_State.pin);
ke_timer_set(app_pxp_timer,task_app,1);
}
每100ms调用a_function

订阅RSS  -  GPIO Extend_Sleep