無線通信NRF24L01-發(fā)送 作者: 時(shí)間:2016-11-29 來源:網(wǎng)絡(luò) 加入技術(shù)交流群 掃碼加入和技術(shù)大咖面對(duì)面交流海量資料庫(kù)查詢 收藏 /****************************************************************************************************//*功能:NRF24L01讀寫寄存器函數(shù) 一次寫一個(gè)數(shù)據(jù)/****************************************************************************************************/uint SPI_RW_Reg(uchar reg, uchar value){uint status;CSN = 0; // CSN low, init SPI transaction 啟動(dòng)spi總線status = SPI_RW(reg); // select register 發(fā)送寄存器地址 用于選擇寄存器 以及選擇讀或?qū)慡PI_RW(value); // ..and write value to it.. 向寄存器寫入數(shù)據(jù)CSN = 1; // CSN high againreturn(status); // return nRF24L01 status uchar}/****************************************************************************************************//*函數(shù):uint SPI_Read_Buf(uchar reg, uchar *pBuf, uchar uchars)/*功能: 用于讀數(shù)據(jù),reg:為寄存器地址,pBuf:為待讀出數(shù)據(jù)地址,uchars:讀出數(shù)據(jù)的個(gè)數(shù)/****************************************************************************************************/uint SPI_Read_Buf(uchar reg, uchar *pBuf, uchar uchars){uint status,uchar_ctr;CSN = 0; // Set CSN low, init SPI tranactionstatus = SPI_RW(reg); // Select register to write to and read status ucharfor(uchar_ctr=0;uchar_ctr(TxBuf+4))t=TxBuf;SetRX_Mode(); //設(shè)置為接收狀態(tài)while(!nRF24L01_RxPacket(&RxBuf)); //等待接收數(shù)據(jù)P2=RxBuf;Delay(20000);}} 上一頁(yè) 1 2 下一頁(yè)
評(píng)論