找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

新手求助!!求帮忙分析一下arm程序

[复制链接]
admin 发表于 2012-9-2 09:33:52 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
#define? ? ? ? GPFCON? ? ? ? ? ? ? ? (*(volatile unsigned long *)0x56000050)
#define? ? ? ? GPFDAT? ? ? ? ? ? ? ? (*(volatile unsigned long *)0x56000054)

#define? ? ? ? GPF4_out? ? ? ? (1<<(4*2))
#define? ? ? ? GPF5_out? ? ? ? (1<<(5*2))
#define? ? ? ? GPF6_out? ? ? ? (1<<(6*2))
#define? ? ? ? GPF7_out? ? ? ? (1<<(7*2))

void??wait(volatile unsigned long dly)
{
? ? ? ? for(; dly > 0; dly--);
}

int main(void)
{
? ? ? ? unsigned long i = 0;

? ? ? ? GPFCON = GPF4_out|GPF5_out|GPF6_out;? ? ? ? ? ? ? ? // 将LED1-3对应的GPF4/5/6三个引脚设为输出

? ? ? ? while(1){
? ? ? ? ? ? ? ? wait(30000);
? ? ? ? ? ? ? ? GPFDAT = (~(i<<4));? ? ? ???? ? ? ? // 根据i的值,点亮LED1-3
? ? ? ? ? ? ? ? if(++i == 8)
? ? ? ? ? ? ? ? ? ? ? ? i = 0;
? ? ? ? }

? ? ? ? return 0;
}

请问GPFDAT = (~(i<<4));? ? ? ???? ? ? ? // 根据i的值,点亮LED1-3
? ? ? ? ? ? ? ? if(++i == 8)
? ? ? ? ? ? ? ? ? ? ? ? i = 0;
这几句是什么样意思????
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-11-24 14:05 , Processed in 0.054530 second(s), 10 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表