扩展程序中的GPIO配置
我将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