加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.c 817 Bytes
一键复制 编辑 原始数据 按行查看 历史
tangyiwen 提交于 2022-03-27 22:07 . add workframe and gitignore file
#include "MCIMX6Y2.h"
#include "fsl_iomuxc.h"
#include "pad_config.h"
#include "button.h"
#include "led.h"
/*简单延时函数*/
void delay(uint32_t count)
{
volatile uint32_t i = 0;
for (i = 0; i < count; ++i)
{
__asm("NOP"); /* 调用nop空指令 */
}
}
int main()
{
int i = 0;
/*初始化led灯和按键*/
rgb_led_init();
button2_init();
while(1)
{
/*按键按下*/
if(get_button2_status())
{
/*翻转绿灯状态*/
if(i == 0)
{
green_led_on;
i = 1;
}
else
{
green_led_off;
i = 0;
}
while(get_button2_status());//等待按键松开
}
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化