原创 AVR学习日志(2)--74HC595串入并出芯片应用

2010-10-27 22:11 2412 3 4 分类: MCU/ 嵌入式

//ICC-AVR application builder : 2010-10-27 21:04:49
// Target : M8
// Crystal: 1.0000Mhz
//功    能:学习使用74HC595串行传输数据


#include <iom8v.h>
#include <macros.h>


#define uchar unsigned char
#define uint  unsigned int
#define ulong unsigned long


#define LED_N  10  //10位显示
//----------------------------------
#define Bit(n) (1<<n)
//定义74HC595时钟、数据、锁存、使能引脚状态
#define CLK_H() PORTB|=BIT(PB6)
#define CLK_L() PORTB&=~BIT(PB6)


#define DAT_H() PORTB|=BIT(PB7)
#define DAT_L() PORTB&=~BIT(PB7)


#define RCK_H() PORTB|=BIT(PB2)
#define RCK_L() PORTB&=~BIT(PB2)


#define ENA_H() PORTB|=BIT(PB1)
#define ENA_L() PORTB&=~BIT(PB1)



        //0,   1,  2,   3,   4,   5 ,  6,    7,   8,   9,   A,   B,   C,   D,   E,   F
const uchar led_array[27]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e,
//-  dark  S    H    Y    E    n ,  P ,  L , ,r25 ,o26
0xbf,0xff,0x92,0x89,0x91,0x86,0xab,0x8c,0xc7,0xaf,0xa3};  //共阳管


uchar Led_Set_buf[LED_N];


void Port_init(void)
{
 DDRB  = 0xff;   //B1口为输出
 PORTB = 0x00;
 
 DDRC  = 0x00;   //C口
 PORTC = 0x00;
 
 DDRD  = 0x00;   //D3口
 PORTD = 0x00;
}


/****************************************************************
//函数名称:delay_1ms(void)
//功    能:延时1ms
//入口参数:无
//出口参数:无
//说明:for(i=1;i<(unsigned int)(xtal*143-2_;i++)xtal为晶振频率,单位为MHz。
*****************************************************************/
void delay_1ms()//1ms
{
 uint i;
 for(i=1;i<(uint)(1*143-2);i++);
}
/****************************************************************
//函数名称:delay_ms(uint time)
//功    能:延时time ms
//入口参数:time
//出口参数:无
*****************************************************************/
void delay_ms(uint time)//time*1ms
{
   uint i;
   while(i<time)
   {
   delay_1ms();
    i++;
   }
}
/****************************************************************
//函数名称:LED_disp(void)
//功        能:74HC595送数
//入口参数:无
//出口参数:无
*****************************************************************/
void LED_disp(void)
{
 uchar i,a, b,c,led_bit;
 uchar disbuf[LED_N];
 for( i="0";i<LED_N;i++)
 { 
  disbuf=Led_Set_buf;
 }


 ENA_L();
 RCK_L();
 for(a=0;a<LED_N;a++)
 {
     c = disbuf[a];   
  led_bit = led_array[c];
 
  for(b=0;b<8;b++)
  {  
   CLK_L();
   if(led_bit & 0x80)
   DAT_H();
   else DAT_L();
   led_bit <<= 1;
   CLK_H();
   CLK_L();
  }
 }
 RCK_H();
 RCK_L();


}
//---------------------------------
void main(void)
{
  uchar i;
 
 delay_ms(200); 
 Port_init();
 
 for(i=0;i<LED_N;i++)
 {
   Led_Set_buf=5; //装载 5555555555 显示  
 }
 while(1)
 {
 
  LED_disp(); 
 } 
}

PARTNER CONTENT

文章评论1条评论)

登录后参与讨论

xucun915_925777961 2010-10-29 13:17

不错,继续加油!
相关推荐阅读
用户243959 2011-03-13 21:17
AVR学习日志(4)——读DS18b20
//ICC-AVR application builder : 2011-1-5 22:10:42// Target : M8// Crystal: 8.0000Mhz // 注意: 编程熔丝时把看门...
用户243959 2010-11-05 22:32
C51单片机的存储器
 今天遇到一个多中断发生冲突的问题,末能解决,发现自己对这些东西还没有彻底弄清楚,就搜集了一些资料整理一下,还是放在这里好了。一.51的存储器结构       笼统来说单片机片内存储器分为CODE区和...
用户243959 2010-11-01 22:28
AVR学习日志(三)Timer0
//ICC-AVR application builder : 2010-11-1 20:57:36// Target : M8// Crystal: 1.0000Mhz#include <io...
用户243959 2010-10-25 21:31
AVR学习日志(1)点LED灯
/*听说每一款单片机的撑握都是从点亮LED开始,那就从这里出发吧!*///LED控制脚PD3//ICC-AVR application builder : 2010-10-24 18:19:50// ...
我要评论
1
3
关闭 站长推荐上一条 /3 下一条