打印
[Atmel]

用AtmelStudio6.2跑mega16例程(26)花样LED

[复制链接]
797|2
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
这个例程就是用两个数组存放,显示的LED值,然后循环显示。
以下是程序:

/*
* GccApplication10.c
*
* Created: 2014-10-4 17:29:35
*  Author: Administrator
*/

#define F_CPU 8000000UL

#include <avr/io.h>
#include <stdint.h>
#include <util/delay.h>

const int8_t Pattern_P0[] =
{
        0xe7,0xdb,0xbd,0x7e,0xbd,0xdb,0xe7,0xff,0xe7,0xc3,0x81,0x00,0x81,0xc3,0x3e,0xdf
};
const int8_t Pattern_P1[] =
{
        0xe7,0xdb,0xbd,0x7e,0xbd,0xdb,0xe7,0xff,0xe7,0xc3,0x81,0x00,0x81,0xc3,0x3e,0xdf
};


int main(void)
{
    int8_t i;
        DDRC = 0xFF;
        PORTC = 0xFF;
        DDRD = 0xFF;
        PORTD = 0xFF;
       
        while(1)
    {
       for(i=0;i<16;i++)
           {
          PORTC = Pattern_P0[i];
                  PORTD = Pattern_P1[i];
              _delay_ms(80);
           }
}

}



以下是Studio的编译截图:




以下是仿真截图:


相关帖子

沙发
gxl117| | 2014-10-5 08:04 | 只看该作者
Avr版都冷清的长草,楼主为什么不在那多发点帖子呢?

使用特权

评论回复
板凳
ddllxxrr|  楼主 | 2014-10-5 19:39 | 只看该作者
gxl117 发表于 2014-10-5 08:04
Avr版都冷清的长草,楼主为什么不在那多发点帖子呢?

AVR那边有版主吧?我是ATMEL的版主。等有空也去看看哈

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

个人签名:http://shop34182318.taobao.com/ http://shop562064536.taobao.com

2399

主题

6963

帖子

68

粉丝