您的位置 首页 数字

AVR MEGA8 经过 SPI 总线读写 93C46

AVRMEGA8通过SPI总线读写93C46,主要是练习SPI总线的使用而已,93C46的驱动相当的简单,这个代码也很好写,调试也不难,冷…

AVR MEGA8 经过 SPI 总线读写 93C46,主要是操练SPI总线的运用罢了,93C46的驱动适当的简略,这个代码也很好写,调试也不难,冷藏了一段时间的代码了,也懒得收拾,copy出来就算了,随意看看就算了。

/*
* 项目:SPI总线驱动93C46
* 渠道:AVR MEGA8 + WinAVR
* 作者:Etual /Etual@163.com
* 日期:2008-8-18
*/

SPI拜访部分代码:

/////////////////////////////////////////////////

// pin assignment

#define SS PB2 //chip select

#define SCK PB5 //clock

#define MOSI PB3 //input

#define MISO PB4 //output

#define SS_SET (PORTB|=(1<
#define SCK_SET (PORTB|=(1<
#define MOSI_SET (PORTB|=(1<< P>

#define SS_CLR (PORTB &= ~(1<
#define SCK_CLR (PORTB &= ~(1<
#define MOSI_CLR (PORTB &= ~(1<< P>

void spi_init(void)
{
DDRB |= (1<< SSBR >< MOSI > DDRB &=~(1<

SPCR = 0x53;
SPSR = 0x00;
}

void SendByte(u8 sData)
{
SPDR = sData;
while(!(SPSR & (1<
}

u8 spi_read(void)
{
SPDR = 0x00;
while(!(SPSR & (1<
return SPDR;
}

//////////////////////////////////////////////////

//start and stop condition of 93C46

void Start(void)
{
u8 temp;

temp = SPCR;
SPCR = 0; // 制止SPI功用

//———————————————–

SCK_CLR; // 手艺发生一个开始位,93C46特别的当地

MOSI_SET; // 所以要特别处理

SS_SET;
SCK_SET;
//———————————————–

SPCR = temp; // 使能SPI功用

}

void Stop(void)
{
SS_CLR;
}

//////////////////////////////////////////////////

// write enable / diable

void EWEN(void)
{
Start();
SendByte(0x30); // EWEN command

Stop();
}

void EWDS(void)
{
Start();
SendByte(0x00); // EWDS command

Stop();
}

//////////////////////////////////////////////////

// read word

u16 ReadWord(u8 addr)
{
u16 temp=0;
u8 hig,low;

Start();
SendByte(addr | 0x80); // read command

//———————— 切换到SPI形式1

SPCR = 0x5b;
hig = spi_read();
low = spi_read();
//———————— 切换回SPI形式0

SPCR = 0x53;
Stop();
temp = (hig<<8) + low ;
return temp;
}

//////////////////////////////////////////////////

// write a word

void WriteWord(u16 data,u8 addr)
{
EWEN();
Start();
SendByte(addr | 0x40); // write command

SendByte((u8)(data>>8)); // send hig byte

SendByte((u8)data); // send low byte

Stop(); // wait at lease 2ms

}

void WriteAll(u16 data)
{
EWEN(); // write enable

Start();
SendByte(0x10); // write command

SendByte((u8)(data>>8)); // send hig byte

SendByte((u8)data); // send low byte

Stop(); // wait at lease 10MS

}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/zhishi/shuzi/275936.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部