📄 jieshou.c
字号:
#include <reg52.h>
#include <ABSACC.h>
#include <intrins.h>
#include <stdio.h>
#define uint unsigned int //0 ~ 255
#define uchar unsigned char
//------------------------------------------------------------------------------------------------------------------
#define BYTE_BIT0 0x01
#define BYTE_BIT1 0x02
#define BYTE_BIT2 0x04
#define BYTE_BIT3 0x08
#define BYTE_BIT4 0x10
#define BYTE_BIT5 0x20
#define BYTE_BIT6 0x40
#define BYTE_BIT7 0x80
bdata unsigned char DATA_BUF;
#define DATA7 ((DATA_BUF&BYTE_BIT7) != 0)
#define DATA0 ((DATA_BUF&BYTE_BIT0) != 0)
sbit flag =DATA_BUF^7;
sbit flag1 =DATA_BUF^0;
//---------------------------------------------------------------------------------------------------------------
#define TxRxBuf_Len 4
unsigned char TxRxBuffer[TxRxBuf_Len];
//--------------------------------------------NRF905端口设置-----------------------------------------------------------
sbit TXEN=P1^0;
sbit TRX_CE=P3^2;
sbit PWR=P1^1;
sbit MISO=P1^6;
sbit MOSI=P1^5;
sbit SCK=P1^7;
sbit CSN=P1^3;
sbit AM=P1^4;
sbit DR=P3^3;
sbit CD=P1^2;
//--------------------------------------------计数变量------------------------------------------------------------
uchar count1;
uchar count2;
//--------------------------------------------数码管位选--------------------------------------------------------
sbit led1=P2^1;
sbit led0=P2^0;
sbit led2=P2^2;
sbit led3=P2^3;
//--------------------------------------------------------------------------------------------------------------
uchar seg[10]={0xC0,0xCF,0xA4,0xB0,0x99,0x92,0x82,0xF8,0x80,0x90}; //0~~9段码
//-----------------------------------------------NRF905寄存器配置-----------------------------------------------
unsigned char idata RFConf[11]=
{
0x00, //配置命令//
0x4c,
0x0c,
0x44,0x04,0x04,
0xcc,0xcc,0xcc,0xcc,
0x58, //CRC充许,8位CRC校验,外部时钟信号不使能,16M晶振
};
//---------------------------------------------------NRF905控制命令------------------------------------------------------
#define WC 0x00
#define RC 0x10
#define WTP 0x20
#define RTP 0x21
#define WTA 0x22
#define RTA 0x23
#define RRP 0x24
//---------------------------------------------------------------延时----------------------------------------
void Delay(uchar n)
{
uint k;
while(n--)
for(k=0;k<8;k++);
}
void delay1(uint i)
{
for(;i>0;i--);
}
//-------------------------------------------------------NRF905 SPI读函数-------------------------------------------------
unsigned char SpiRead(void)
{
unsigned char j;
for (j=0;j<8;j++)
{
DATA_BUF=DATA_BUF<<1;
SCK=1;
if (MISO) //读取最高位,保存至最末尾,通过左移位完成整个字节
{
DATA_BUF|=BYTE_BIT0;
}
else
{
DATA_BUF&=~BYTE_BIT0;
}
SCK=0;
}
return DATA_BUF;
}
//-------------------------------------------------------NRF905 SPI写函数--------------------------------------------------------
void SpiWrite(unsigned char send)
{
unsigned char i;
DATA_BUF=send;
for (i=0;i<8;i++)
{
if (DATA7) //总是发送最高位
{
MOSI=1;
}
else
{
MOSI=0;
}
SCK=1;
DATA_BUF=DATA_BUF<<1;
SCK=0;
}
}
//------------------------------------------初始化nRF905---------------------------------------------------------
void nRF905Init(void)
{
CSN=1; // Spi disable
SCK=0; // Spi clock line init low
DR=0; // Init DR for input
AM=0; // Init AM for input
CD=0; // Init CD for input
PWR=1; // nRF905 power on
TRX_CE=0; // Set nRF905 in standby mode
TXEN=0; // set radio in Rx mode
}
//------------------------------------------初始化寄存器---------------------------------------------------------
void Config905(void)
{
uchar i;
CSN=0; // Spi enable for write a spi command
//SpiWrite(WC); // Write config command写放配置命令
for (i=0;i<11;i++) // Write configration words 写放配置字
{
SpiWrite(RFConf[i]);
}
CSN=1; // Disable Spi
}
//--------------------------------------------------设置接收状态-----------------------------------------------------
void SetRxMode(void)
{
TXEN=0;
TRX_CE=1;
Delay(1); // delay for mode change(>=650us)
}
//---------------------------------------------------接收状态判断--------------------------------------------------
unsigned char CheckDR(void) //检查是否有新数据传入 Data Ready
{
if (DR=1&&TRX_CE==1 && TXEN==0)
{
// Delay(50) ;
return 1;
}
else
{
return 0;
}
}
//-----------------------------------------------------读取接收缓冲区数据----------------------------------------------
void RxPacket(void) //读数据
{
uchar i;
Delay(1);
// TRX_CE=0; // Set nRF905 in standby mode
Delay(100);
TRX_CE=0;
CSN=0; // Spi enable for write a spi command
Delay(1);
SpiWrite(RRP);
for (i = 0 ;i < 4 ;i++)
{
TxRxBuffer[i]=SpiRead(); // Read data and save to buffer
}
CSN=1;
Delay(10);
TRX_CE=1;
}
//-------------------------------------------------------接收数据------------------------------------------------
void RX(void)
{
SetRxMode(); // Set nRF905 in Rx mode
//Delay(10000);
while (CheckDR()==0);
//Delay(10000);
Delay(10);
RxPacket();
//Delay(10000); // Recive data by nRF905
Delay(10);
}
//------------------------------------------------------主函数---------------------------------------------------
void main(void)
{
nRF905Init();
Config905();
P0=0x00;
while(1)
{
RX();
Delay(10);
CSN=0;
if(TxRxBuffer[0])
{
if(TxRxBuffer[0]==0x29)
{
count1=count1+2;
}
if(TxRxBuffer[0]==0x30)
{
count2=count2+3;
}
}
P0=seg[count1/10];
led0=1;led1=1;led2=1;led3=0;
Delay(10);
led3=1;
P0=seg[count1%10];
led2=0;
Delay(10);
led2=1;
P0=seg[count2/10];
led1=0;
Delay(10);
led1=1;
P0=seg[count2%10];
led0=0;
Delay(10);
led0=1;
}
CSN=1;
Delay(1);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -