亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? nrf24l01.h

?? nRF24L01開發指導
?? H
?? 第 1 頁 / 共 2 頁
字號:
/******************************************************************************
*
* File: nrf24l01.h
* 
* Copyright S. Brennen Ball, 2006-2007
* 
* The author provides no guarantees, warantees, or promises, implied or
*	otherwise.  By using this software you agree to indemnify the author
* 	of any damages incurred by using it.
*
*****************************************************************************/

#ifndef NRF24L01_H_
#define NRF24L01_H_

#include <stddef.h>

#ifndef bool
#define bool unsigned char
#endif
#ifndef false
#define false 0
#endif
#ifndef true
#define true !false
#endif

/////////////////////////////////////////////////////////////////////////////////
// SPI function requirements
//
// The user must define a function to send one byte of data and also return the
//   resulting byte of data data through the SPI port. The function used here 
//   has the function prototype
//
//	    unsigned char spi_send_read_byte(unsigned char byte);
//
// This function should take the argument unsigned char byte and send it through
//   the SPI port to the 24L01.  Then, it should wait until the 24L01 has returned
//   its response over SPI.  This received byte should be the return value of the
//   function.
//
// You should also change the include file name below to whatever the name of your 
//   SPI include file is.
//////////////////////////////////////////////////////////////////////////////////
#include "spi1.h"
#define spi_send_read_byte(byte)	spi1_send_read_byte(byte)


/////////////////////////////////////////////////////////////////////////////////
// Delay function requirements
//
// The user must define a function that delays for the specified number of 
//	 microseconds. This function needs to be as precise as possible, and the use
//   of a timer module within your microcontroller is highly recommended. The 
//   function used here has the prototype
//
//	    void delay_us(unsigned int microseconds);
//
// You should also change the include file name below to whatever the name of your 
//   delay include file is.
//////////////////////////////////////////////////////////////////////////////////
#include "delays.h"
#define delay_us(microseconds)		DelayUS(microseconds)


//////////////////////////////////////////////////////////////////////////////////
// IO pin definitions
//
// Below you will find several definitions and includes.  The first is an #include
//   for your microcontroller's include file to allow you to use register names 
//   rather than numbers.  The next three are to allow you to control the pins on
//   the 24L01 that aren't automatically handled by SPI.  These are CE, CSN, and
//   IRQ.
//
// The general format of these defines is a define for the IO register the pin is
//   attached to.  The second define is a mask for the pin.  For example, say that
//   your CE pin is tied to an IO port with the register name IOPORT1. Also, let's
//   say that the IO port is 8-bits wide, and you have attached the pin to pin 0 of
//   the port.  Then your define would look like this:
//
//	 #define nrf24l01_CE_IOREGISTER		IOPORT1
//   #define nrf24l01_CE_PINMASK		0x01
//
// If you have defines in your include file for individual IO pins, you could use
//   this define in this file, as well.  Using the previous example, assume that in
//   your microcontroller's include file, pin 0 of IOPORT1 has a define like this
//
//   #define IOPORT1_PIN0	0x01
//
// Then, you could make your defines for the CE pin in this file look like this:
//
//	 #define nrf24l01_CE_IOREGISTER		IOPORT1
//   #define nrf24l01_CE_PINMASK		IOPORT1_PIN0
//
// You should also change the include file name below to whatever the name of your 
//   processor's register definition include file is.
/////////////////////////////////////////////////////////////////////////////////////
#include "lpc214x.h"

//defines for uC pins CE pin is connected to
//This is used so that the routines can send TX payload data and 
//	properly initialize the nrf24l01 in TX and RX states.
//Change these definitions (and then recompile) to suit your particular application.
#define nrf24l01_CE_IOREGISTER		FIO0PIN
#define nrf24l01_CE_PINMASK			0x200000

//defines for uC pins CSN pin is connected to
//This is used so that the routines can send properly operate the SPI interface
// on the nrf24l01.
//Change these definitions (and then recompile) to suit your particular application.
#define nrf24l01_CSN_IOREGISTER		FIO0PIN
#define nrf24l01_CSN_PINMASK		0x100000

//defines for uC pins IRQ pin is connected to
//This is used so that the routines can poll for IRQ or create an ISR.
//Change these definitions (and then recompile) to suit your particular application.
#define nrf24l01_IRQ_IOREGISTER		FIO0PIN
#define nrf24l01_IRQ_PINMASK		0x8000


////////////////////////////////////////////////////////////////////////////////////
// SPI commands
//
// The following are defines for all of the commands and data masks on the SPI 
//   interface.
////////////////////////////////////////////////////////////////////////////////////
//SPI command defines
#define nrf24l01_R_REGISTER		0x00
#define nrf24l01_W_REGISTER		0x20
#define nrf24l01_R_RX_PAYLOAD	0x61
#define nrf24l01_W_TX_PAYLOAD	0xA0
#define nrf24l01_FLUSH_TX		0xE1
#define nrf24l01_FLUSH_RX		0xE2
#define nrf24l01_REUSE_TX_PL	0xE3
#define nrf24l01_NOP			0xFF

//SPI command data mask defines
#define nrf24l01_R_REGISTER_DATA	0x1F
#define nrf24l01_W_REGISTER_DATA	0x1F

////////////////////////////////////////////////////////////////////////////////////
// Register definitions
//
// Below are the defines for each register's address in the 24L01.
////////////////////////////////////////////////////////////////////////////////////
#define nrf24l01_CONFIG			0x00
#define nrf24l01_EN_AA			0x01
#define nrf24l01_EN_RXADDR		0x02
#define nrf24l01_SETUP_AW		0x03
#define nrf24l01_SETUP_RETR		0x04
#define nrf24l01_RF_CH			0x05
#define nrf24l01_RF_SETUP		0x06
#define nrf24l01_STATUS			0x07
#define nrf24l01_OBSERVE_TX		0x08
#define nrf24l01_CD				0x09
#define nrf24l01_RX_ADDR_P0		0x0A
#define nrf24l01_RX_ADDR_P1		0x0B
#define nrf24l01_RX_ADDR_P2		0x0C
#define nrf24l01_RX_ADDR_P3		0x0D
#define nrf24l01_RX_ADDR_P4		0x0E
#define nrf24l01_RX_ADDR_P5		0x0F
#define nrf24l01_TX_ADDR		0x10
#define nrf24l01_RX_PW_P0		0x11
#define nrf24l01_RX_PW_P1		0x12
#define nrf24l01_RX_PW_P2		0x13
#define nrf24l01_RX_PW_P3		0x14
#define nrf24l01_RX_PW_P4		0x15
#define nrf24l01_RX_PW_P5		0x16
#define nrf24l01_FIFO_STATUS	0x17

////////////////////////////////////////////////////////////////////////////////////
// Default register values
//
// Below are the defines for each register's default value in the 24L01. Multi-byte
//   registers use notation B<X>, where "B" represents "byte" and <X> is the byte
//   number.
////////////////////////////////////////////////////////////////////////////////////
#define nrf24l01_CONFIG_DEFAULT_VAL			0x08
#define nrf24l01_EN_AA_DEFAULT_VAL			0x3F
#define nrf24l01_EN_RXADDR_DEFAULT_VAL		0x03
#define nrf24l01_SETUP_AW_DEFAULT_VAL		0x03
#define nrf24l01_SETUP_RETR_DEFAULT_VAL		0x03
#define nrf24l01_RF_CH_DEFAULT_VAL			0x02
#define nrf24l01_RF_SETUP_DEFAULT_VAL		0x0F
#define nrf24l01_STATUS_DEFAULT_VAL			0x0E
#define nrf24l01_OBSERVE_TX_DEFAULT_VAL		0x00
#define nrf24l01_CD_DEFAULT_VAL				0x00
#define nrf24l01_RX_ADDR_P0_B0_DEFAULT_VAL	0xE7
#define nrf24l01_RX_ADDR_P0_B1_DEFAULT_VAL	0xE7
#define nrf24l01_RX_ADDR_P0_B2_DEFAULT_VAL	0xE7
#define nrf24l01_RX_ADDR_P0_B3_DEFAULT_VAL	0xE7
#define nrf24l01_RX_ADDR_P0_B4_DEFAULT_VAL	0xE7
#define nrf24l01_RX_ADDR_P1_B0_DEFAULT_VAL	0xC2
#define nrf24l01_RX_ADDR_P1_B1_DEFAULT_VAL	0xC2
#define nrf24l01_RX_ADDR_P1_B2_DEFAULT_VAL	0xC2
#define nrf24l01_RX_ADDR_P1_B3_DEFAULT_VAL	0xC2
#define nrf24l01_RX_ADDR_P1_B4_DEFAULT_VAL	0xC2
#define nrf24l01_RX_ADDR_P2_DEFAULT_VAL		0xC3
#define nrf24l01_RX_ADDR_P3_DEFAULT_VAL		0xC4
#define nrf24l01_RX_ADDR_P4_DEFAULT_VAL		0xC5
#define nrf24l01_RX_ADDR_P5_DEFAULT_VAL		0xC6
#define nrf24l01_TX_ADDR_B0_DEFAULT_VAL		0xE7
#define nrf24l01_TX_ADDR_B1_DEFAULT_VAL		0xE7
#define nrf24l01_TX_ADDR_B2_DEFAULT_VAL		0xE7
#define nrf24l01_TX_ADDR_B3_DEFAULT_VAL		0xE7
#define nrf24l01_TX_ADDR_B4_DEFAULT_VAL		0xE7
#define nrf24l01_RX_PW_P0_DEFAULT_VAL		0x00
#define nrf24l01_RX_PW_P1_DEFAULT_VAL		0x00
#define nrf24l01_RX_PW_P2_DEFAULT_VAL		0x00
#define nrf24l01_RX_PW_P3_DEFAULT_VAL		0x00
#define nrf24l01_RX_PW_P4_DEFAULT_VAL		0x00
#define nrf24l01_RX_PW_P5_DEFAULT_VAL		0x00
#define nrf24l01_FIFO_STATUS_DEFAULT_VAL	0x11

////////////////////////////////////////////////////////////////////////////////////
// Register bitwise definitions
//
// Below are the defines for each register's bitwise fields in the 24L01.
////////////////////////////////////////////////////////////////////////////////////
//CONFIG register bitwise definitions
#define nrf24l01_CONFIG_RESERVED	0x80
#define	nrf24l01_CONFIG_MASK_RX_DR	0x40
#define	nrf24l01_CONFIG_MASK_TX_DS	0x20
#define	nrf24l01_CONFIG_MASK_MAX_RT	0x10
#define	nrf24l01_CONFIG_EN_CRC		0x08
#define	nrf24l01_CONFIG_CRCO		0x04
#define	nrf24l01_CONFIG_PWR_UP		0x02
#define	nrf24l01_CONFIG_PRIM_RX		0x01

//EN_AA register bitwise definitions
#define nrf24l01_EN_AA_RESERVED		0xC0
#define nrf24l01_EN_AA_ENAA_ALL		0x3F
#define nrf24l01_EN_AA_ENAA_P5		0x20
#define nrf24l01_EN_AA_ENAA_P4		0x10
#define nrf24l01_EN_AA_ENAA_P3		0x08
#define nrf24l01_EN_AA_ENAA_P2		0x04
#define nrf24l01_EN_AA_ENAA_P1		0x02
#define nrf24l01_EN_AA_ENAA_P0		0x01
#define nrf24l01_EN_AA_ENAA_NONE	0x00

//EN_RXADDR register bitwise definitions
#define nrf24l01_EN_RXADDR_RESERVED	0xC0

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲综合一区二区精品导航| 久久久91精品国产一区二区精品| 国产超碰在线一区| 激情综合色播激情啊| 麻豆91精品91久久久的内涵| 狂野欧美性猛交blacked| 久久激情五月婷婷| 国产精品综合一区二区| 国产超碰在线一区| 成人午夜在线视频| 91在线免费播放| 欧美日韩美少妇| 欧美一区二区三区视频在线观看| 91麻豆精品国产91久久久更新时间 | 亚洲黄色录像片| 一区二区三区在线免费播放| 亚洲444eee在线观看| 麻豆久久一区二区| 国产成人精品综合在线观看| 成人小视频免费在线观看| a级高清视频欧美日韩| 色诱视频网站一区| 日韩午夜av一区| 欧美韩日一区二区三区四区| 亚洲一区视频在线观看视频| 日韩精品国产精品| 成人免费电影视频| 欧美日韩国产小视频在线观看| 欧美日韩精品专区| 国产亚洲综合av| 亚洲成人一区在线| 丁香天五香天堂综合| 色999日韩国产欧美一区二区| 7777精品伊人久久久大香线蕉超级流畅 | 欧洲另类一二三四区| 欧美日韩的一区二区| 国产视频一区在线观看 | 欧美videos中文字幕| 中文字幕精品—区二区四季| 一区二区三区在线观看视频| 美女一区二区久久| 国产经典欧美精品| 一本色道**综合亚洲精品蜜桃冫 | 精品一区二区三区的国产在线播放 | 成人午夜电影久久影院| 欧美精品久久天天躁| 2017欧美狠狠色| 一区二区高清免费观看影视大全 | 中文字幕一区二区三区四区| 日韩电影免费在线观看网站| 成人av网址在线| 在线电影国产精品| 亚洲欧美日韩国产综合在线| 国产一区视频导航| 91精品免费在线| 夜夜操天天操亚洲| 国产美女一区二区三区| 欧美日韩国产小视频在线观看| 国产日韩欧美在线一区| 午夜精品一区在线观看| 91久久奴性调教| 国产精品女上位| 国产成人免费xxxxxxxx| 精品国产一区a| 精品一区二区三区在线观看| 91精品国产入口| 五月激情丁香一区二区三区| 99视频在线精品| 国产视频一区二区三区在线观看| 蜜桃av一区二区三区电影| 91精品国产综合久久福利| 亚洲国产欧美在线| 欧美在线999| 中文在线一区二区| av电影在线不卡| 中文字幕中文字幕一区二区| 成人99免费视频| 日本一区二区三区久久久久久久久不 | 亚洲午夜成aⅴ人片| 91精品福利在线| 一区2区3区在线看| 日本电影亚洲天堂一区| 亚洲精品视频一区| 日本久久精品电影| 亚洲午夜私人影院| 正在播放亚洲一区| 国产专区综合网| 国产精品第四页| 在线区一区二视频| 青椒成人免费视频| 精品国产一区二区国模嫣然| 国产一区二区0| 中文字幕亚洲不卡| 欧美性受极品xxxx喷水| 亚洲综合在线第一页| 日本精品一区二区三区四区的功能| 亚洲欧美日韩中文播放| 欧美日韩在线播放| 美日韩一区二区| 国产精品电影一区二区三区| 欧美性色aⅴ视频一区日韩精品| 日韩精品一二区| 26uuu精品一区二区在线观看| 国产精选一区二区三区| 成人免费小视频| 精品1区2区3区| 理论电影国产精品| 中文字幕在线不卡视频| 欧美另类videos死尸| 国产一区二区三区四区五区入口| 国产精品护士白丝一区av| 欧美高清激情brazzers| 成人午夜在线免费| 亚洲成人动漫一区| 久久综合999| 欧美天堂一区二区三区| 国产乱人伦精品一区二区在线观看| 久久久三级国产网站| 欧美性色aⅴ视频一区日韩精品| 亚洲猫色日本管| 精品国产一区二区三区av性色| av中文字幕一区| 国产一区二区福利| 午夜精品久久一牛影视| 欧美国产成人精品| 欧美性xxxxxxxx| 国产成人自拍网| 蜜桃免费网站一区二区三区| 一区二区三区在线影院| 国产肉丝袜一区二区| 欧美高清hd18日本| 日本精品一级二级| 国产成人在线看| 麻豆精品视频在线| 亚洲成国产人片在线观看| 国产精品美女久久久久aⅴ | 一区二区三区产品免费精品久久75| 日韩免费高清电影| 在线播放日韩导航| 欧美影院一区二区| 色欧美日韩亚洲| 国产成人亚洲综合a∨婷婷图片| 青青青伊人色综合久久| 亚洲欧洲综合另类在线| 国产精品国产三级国产aⅴ中文| 国产午夜久久久久| 国产亚洲精品7777| 精品久久久久久久久久久久久久久| 91精品国产手机| 在线播放欧美女士性生活| 欧美剧情片在线观看| 欧美三区在线视频| 欧美精品久久一区| 日韩视频一区在线观看| 日韩一区二区三区高清免费看看| 在线综合+亚洲+欧美中文字幕| 在线播放亚洲一区| 欧美成人a∨高清免费观看| 日韩一级大片在线| 久久综合国产精品| 欧美韩国日本一区| 一区二区在线看| 视频一区视频二区在线观看| 天天综合色天天| 九九九精品视频| 从欧美一区二区三区| 99精品黄色片免费大全| 欧美影院一区二区三区| 91精品国产麻豆| 国产亚洲综合在线| 亚洲黄色片在线观看| 日韩电影在线观看电影| 精品一区二区三区蜜桃| av一二三不卡影片| 欧美精品v日韩精品v韩国精品v| 欧美精品一区二区三区高清aⅴ | 男男视频亚洲欧美| 国产精品一品视频| 91成人免费在线视频| 日韩写真欧美这视频| 国产精品国产精品国产专区不片| 亚洲一线二线三线视频| 韩国av一区二区三区在线观看| av在线不卡网| 日韩一区二区在线免费观看| 国产精品素人视频| 蜜桃视频在线一区| 91丨porny丨国产| 精品国产一区二区在线观看| 中文字幕一区二区三区不卡在线| 午夜一区二区三区在线观看| 国产一区美女在线| 欧美丰满美乳xxx高潮www| 国产日韩av一区二区| 性做久久久久久| 91视频在线看| 久久午夜国产精品| 奇米色一区二区三区四区| 91在线国内视频| 精品粉嫩aⅴ一区二区三区四区|