微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > 用89C51驱动nRf905收发C源代码

用89C51驱动nRf905收发C源代码

时间:12-01 来源:互联网 点击:
#include
#include

#define uchar unsigned char
#define uint unsigned int

#define WC 0x00 // Write configuration register command
#define RC 0x10 // Read configuration register command
#define WTP 0x20 // Write TX Payload command
#define RTP 0x21 // Read TX Payload command
#define WTA 0x22 // Write TX Address command
#define RTA 0x23 // Read TX Address command
#define RRP 0x24 // Read RX Payload command
/*******************************************************************************************/
typedef struct RFConfig
{
uchar n;
uchar buf[10];
}RFConfig;

code RFConfig RxTxConf =
{
10,
0x01, 0x0c, 0x44, 0x20, 0x20, 0xcc, 0xcc, 0xcc,0xcc, 0x58
};
// The content of this struct is nRF905s initializedata.
// CH_NO=1;433MHZ;Normal Opration,No Retrans;RX,TX Address is 4 Bytes
// RX TX Payload Width is 32 Bytes;Disable Extern Clock;Fosc=16MHZ
// 8 Bits CRC And enable
/*******************************************************************************************/
uchar data TxBuf[32];
uchar data RxBuf[32];
/*******************************************************************************************/
uchar bdataDATA_BUF;
sbit flag =DATA_BUF^7;
sbitflag1 =DATA_BUF^0;
/*******************************************************************************************/
sbit TX_EN =P2^6;
sbit TRX_CE =P2^5;
sbit PWR_UP =P2^4;
sbit MISO =P2^3;
sbit MOSI =P2^2;
sbit SCK =P2^1;
sbit CSN =P2^0;

sbit AM =P3^2;
sbit DR =P3^3;
sbit CD =P3^5;

/*******************************************************************************************/
void InitIO(void); // Initialize IO port
void Inituart(void); // initialize 232 uart
void Config905(void); // Config nRF905 module
void SetTxMode(void); // Set nRF905 in Tx mode
void SetRxMode(void); // Set nRF905 in Rx mode
void TxPacket(void); // Send data by nRF905
void RxPacket(void); // Recive data by nRF905
void SpiWrite(uchar); // Write data to nRF905
uchar SpiRead(void); // Readdatato nRF905
void Delay(uchar n); // Delay 100us
void Scankey(void); // Scan key
void TxData (uchar x); // Send key_value to CRT display
/*******************************************************************************************/
//function main();
/*******************************************************************************************/
void main(void)
{
InitIO(); // Initialize IO port
Inituart(); // initialize 232 uart
Config905(); // Config nRF905 module
SetTxMode(); // Set Tx Mode
TxPacket(); // Transmit Tx bufferdata
Delay(500); // delay for ledlight
P0=0xff; // led close
SetRxMode(); // Set nRF905 in Rx mode
while(1) // circulation
{
Scankey(); // Scan key
if (DR) // If recive data ready...
RxPacket(); // ... recivedata
}
}
/*******************************************************************************************/
//function InitIO();
/*******************************************************************************************/
void InitIO(void)
{
P0=0x0f; // ledlight
CSN=1; // Spi disable
SCK=0; // Spi clocklineinit high
DR=1; // Init DR for input
AM=1; // Init AM for input
PWR_UP=1; // nRF905 power on
TRX_CE=0; // Set nRF905 in standby mode
TX_EN=0; // set radio in Rx mode
}
/*******************************************************************************************/
//function Inituart();
/*******************************************************************************************/
void Inituart(void)
{
TMOD = 0x20; //timer1 working mode 1
TL1 = 0xfd; //f7=9600 for 16mhz Fosc,and ...
TH1 = 0xfd; //...fd=19200 for 11.0592mhz Fosc
SCON = 0xd8; //uart mode 3,ren==1
PCON = 0x80; //smod=0
TR1 = 1; //start timer1
}
/*******************************************************************************************/
//function Config905();
/*******************************************************************************************/
void Config905(void)
{
uchar i;
CSN=0; // Spi enable for write a spi command
SpiWrite(WC); // Write config command
for (i=0;i{
SpiWrite(RxTxConf.buf[i]);
}
CSN=1; // Disable Spi
}
/*******************************************************************************************/
//function Delay100us();Delay 100us
/*******************************************************************************************/
void Delay(uchar n)
{
uint i;
while(n--)
for(i=0;i<80;i++);
}
/*******************************************************************************************/
//function SpiWrite();
/*******************************************************************************************/
void SpiWrite(uchar byte)
{
uchar i;
DATA_BUF=byte; // Put functions parameter into a bdata variable
for (i=0;i<8;i++) // Setup byte circulation bits
{

if (flag) // Put DATA_BUF.7 ondataline
MOSI=1;
else
MOSI=0;
SCK=1; // Set clock line high
DATA_BUF=DATA_BUF<1; // Shift DATA_BUF
SCK=0; // Set clocklinelow
}
}
/*******************************************************************************************/
//function SpiRead();
/*******************************************************************************************/
uchar SpiRead(void)
{
uchar i;
for (i=0;i<8;i++) // Setup byte circulation bits
{
DATA_BUF=DATA_BUF<1; // Right shift DATA_BUF
SCK=1; // Set clock line high
if (MISO)
flag1=1; // Readdata
else
flag1=0;

SCK=0; // Set clocklinelow
}
return DATA_BUF; // Return function parameter
}
/*******************************************************************************************/
//function TxPacket();
/*******************************************************************************************/
void TxPacket(void)
{
uchar i;
//Config905();
CSN=0; // Spi enable for write a spi command
SpiWrite(WTP); // Write payload command
for (i=0;i<32;i++)
{
SpiWrite(TxBuf[i]); // Write 32 bytes Txdata
}
CSN=1; // Spi disable
Delay(1);
CSN=0; // Spi enable for write a spi command
SpiWrite(WTA); // Write address command
for (i=0;i<4;i++) // Write 4 bytes address
{
SpiWrite(RxTxConf.buf[i+5]);
}
CSN=1; // Spi disable
TRX_CE=1; // Set TRX_CE high,start Txdatatransmission
Delay(1); // while (DR!=1);
TRX_CE=0; // Set TRX_CElow
}
/*******************************************************************************************/
//function RxPacket();
/*******************************************************************************************/
void RxPacket(void)
{
uchar i,xx;
TRX_CE=0; // Set nRF905 in standby mode
CSN=0; // Spi enable for write a spi command
SpiWrite(RRP); // Read payload command
for (i=0;i<32;i++)
{
RxBuf[i]=SpiRead(); // Readdataand save to buffer
}
CSN=1; // Disable spi
while(DR||AM);
P0= RxBuf[0]; // Buffer[0] outputfromP0 port...
TRX_CE=1;
xx=(RxBuf[0]>>4)&0x0f;
TxData(xx);
Delay(500); // ...lightled
P0=0xff; // Close led
}
/*******************************************************************************************/
//function SetTxMode();
/*******************************************************************************************/
void SetTxMode(void)
{
TX_EN=1;
TRX_CE=0;
Delay(1); // delay for mode change(>=650us)
}
/*******************************************************************************************/
//function SetRxMode();
/*******************************************************************************************/
void SetRxMode(void)
{
TX_EN=0;
TRX_CE=1;
Delay(1); // delay for mode change(>=650us)
}
/*******************************************************************************************/
//Functon Scankey();
/*******************************************************************************************/
void Scankey()
{
uchar Temp,xx;
P0=0xff;
Temp=P0&0x0f; // Read key value from port P0
if (Temp!=0x0f)
{ Delay(10);
Temp=P0&0x0f; // Read key valuefromport P0
if (Temp!=0x0f)
{
xx=Temp;
Temp=Temp<4; // Left shift 4 bits
TxBuf[0]=Temp; // Turn On the LED
P0=Temp; // Save to Tx buffer[0]
SetTxMode(); // Set Tx Mode
TxPacket(); // Transmit Tx bufferdata
TxData (xx);
Delay(500); // Delay for LEDlight
P0=0xff; // Close LED display
SetRxMode(); // Set Rx Mode

while((P0&0x0f)!=0x0f);
}
}
}
/*******************************************************************************************/
//Function TxData ();
/*******************************************************************************************/
void TxData (uchar x)
{
SBUF=x;
while(TI==0);
TI=0;

}
/*******************************************************************************************/

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top