闪灯程序
static int led_run(lua_State *L)
{
GPIO_ToggleBits(LED3_GPIO_PORT, LED3_PIN);
delay(500);
return 1;
}
int main()
{
int i=0;
lua_State *L;
gpio_init();
sys_tick_init();
uart_init();
while(1)
{
L= luaL_newstate();
lua_pushcfunction(L,led_run);
lua_setglobal(L,"myled");
luaL_dostring(L,"myled();");
lua_close(L);
}
}
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |