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

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

?? nrf24l01.c

?? MSP430的SPI接口的例子程序。連接NRF24L01實現定長的數據包通信
?? C
?? 第 1 頁 / 共 3 頁
字號:
/******************************************************************************
*
* File: nrf24l01.c
* 
* 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.
*
*****************************************************************************/

#include "nrf24l01.h"

//Arguments except opt_rx_standby_mode fill the actual register they are named 
//  after. Registers that do not need to be initialized are not included here.
//The argument opt_rx_active_mode is only used if the user is initializing the
//  24L01 as a receiver.  If the argument is false, the receiver will remain in
//  standby mode and not monitor for packets.  If the argument is true, the CE
//  pin will be set and the 24L01 will monitor for packets.  In TX mode, the value
//  of this argument is insignificant.
//If the user wants to leave any 1-byte register in its default state, simply put
//  as that register's argument nrf24l01_<reg>_DEFAULT_VAL, where <reg> is the register
//  name.
//If the user wants to leave any of the 5-byte registers RX_ADDR_P0, RX_ADDR_P1, or 
//  TX_ADDR in its default state, simply put NULL in the argument for that address value.
void nrf24l01_initialize(unsigned char config,
						 unsigned char opt_rx_active_mode,  
						 unsigned char en_aa, 
						 unsigned char en_rxaddr, 
						 unsigned char setup_aw, 
						 unsigned char setup_retr, 
						 unsigned char rf_ch, 
						 unsigned char rf_setup, 
						 unsigned char * rx_addr_p0, 
						 unsigned char * rx_addr_p1, 
						 unsigned char rx_addr_p2, 
						 unsigned char rx_addr_p3, 
						 unsigned char rx_addr_p4, 
						 unsigned char rx_addr_p5, 
						 unsigned char * tx_addr, 
						 unsigned char rx_pw_p0, 
						 unsigned char rx_pw_p1, 
						 unsigned char rx_pw_p2, 
						 unsigned char rx_pw_p3, 
						 unsigned char rx_pw_p4, 
						 unsigned char rx_pw_p5)
{
	unsigned char data[5];

	data[0] = en_aa;
	nrf24l01_write_register(nrf24l01_EN_AA, data, 1);

	data[0] = en_rxaddr;
	nrf24l01_write_register(nrf24l01_EN_RXADDR, data, 1);

	data[0] = setup_aw;
	nrf24l01_write_register(nrf24l01_SETUP_AW, data, 1);

	data[0] = setup_retr;
	nrf24l01_write_register(nrf24l01_SETUP_RETR, data, 1);

	data[0] = rf_ch;
	nrf24l01_write_register(nrf24l01_RF_CH, data, 1);

	data[0] = rf_setup;
	nrf24l01_write_register(nrf24l01_RF_SETUP, data, 1);

	if(rx_addr_p0 != NULL)
		nrf24l01_set_rx_addr(rx_addr_p0, 5, 0);
	else
	{
		data[0] = nrf24l01_RX_ADDR_P0_B0_DEFAULT_VAL;
		data[1] = nrf24l01_RX_ADDR_P0_B1_DEFAULT_VAL;
		data[2] = nrf24l01_RX_ADDR_P0_B2_DEFAULT_VAL;
		data[3] = nrf24l01_RX_ADDR_P0_B3_DEFAULT_VAL;
		data[4] = nrf24l01_RX_ADDR_P0_B4_DEFAULT_VAL;
		
		nrf24l01_set_rx_addr(data, 5, 0);
	}

	if(rx_addr_p1 != NULL)
		nrf24l01_set_rx_addr(rx_addr_p1, 5, 1);
	else
	{
		data[0] = nrf24l01_RX_ADDR_P1_B0_DEFAULT_VAL;
		data[1] = nrf24l01_RX_ADDR_P1_B1_DEFAULT_VAL;
		data[2] = nrf24l01_RX_ADDR_P1_B2_DEFAULT_VAL;
		data[3] = nrf24l01_RX_ADDR_P1_B3_DEFAULT_VAL;
		data[4] = nrf24l01_RX_ADDR_P1_B4_DEFAULT_VAL;
		
		nrf24l01_set_rx_addr(data, 5, 1);
	}

	data[0] = rx_addr_p2;
	nrf24l01_set_rx_addr(data, 1, 2);

	data[0] = rx_addr_p3;
	nrf24l01_set_rx_addr(data, 1, 3);

	data[0] = rx_addr_p4;
	nrf24l01_set_rx_addr(data, 1, 4);

	data[0] = rx_addr_p5;
	nrf24l01_set_rx_addr(data, 1, 5);

	if(tx_addr != NULL)
		nrf24l01_set_tx_addr(tx_addr, 5);
	else
	{
		data[0] = nrf24l01_TX_ADDR_B0_DEFAULT_VAL;
		data[1] = nrf24l01_TX_ADDR_B1_DEFAULT_VAL;
		data[2] = nrf24l01_TX_ADDR_B2_DEFAULT_VAL;
		data[3] = nrf24l01_TX_ADDR_B3_DEFAULT_VAL;
		data[4] = nrf24l01_TX_ADDR_B4_DEFAULT_VAL;
		
		nrf24l01_set_tx_addr(data, 5);
	}

	data[0] = rx_pw_p0;
	nrf24l01_write_register(nrf24l01_RX_PW_P0, data, 1);

	data[0] = rx_pw_p1;
	nrf24l01_write_register(nrf24l01_RX_PW_P1, data, 1);

	data[0] = rx_pw_p2;
	nrf24l01_write_register(nrf24l01_RX_PW_P2, data, 1);

	data[0] = rx_pw_p3;
	nrf24l01_write_register(nrf24l01_RX_PW_P3, data, 1);

	data[0] = rx_pw_p4;
	nrf24l01_write_register(nrf24l01_RX_PW_P4, data, 1);

	data[0] = rx_pw_p5;
	nrf24l01_write_register(nrf24l01_RX_PW_P5, data, 1);

	if((config & nrf24l01_CONFIG_PWR_UP) != 0)
		nrf24l01_power_up_param(opt_rx_active_mode, config);
	else
		nrf24l01_power_down_param(config);
}

//initializes the 24L01 to all default values except the PWR_UP and PRIM_RX bits
//this function also disables the auto-ack feature on the chip (EN_AA register is 0)
//bool rx is true if the device should be a receiver and false if it should be
//  a transmitter.
//unsigned char payload_width is the payload width for pipe 0.  All other pipes
//  are left in their default (disabled) state.
//bool enable_auto_ack controls the auto ack feature on pipe 0.  If true, auto-ack will
//  be enabled.  If false, auto-ack is disabled.
void nrf24l01_initialize_debug(bool rx, unsigned char p0_payload_width, bool enable_auto_ack)
{
	unsigned char config;
	unsigned char en_aa;
	
	config = nrf24l01_CONFIG_DEFAULT_VAL | nrf24l01_CONFIG_PWR_UP;
	
	if(enable_auto_ack != false)
		en_aa = nrf24l01_EN_AA_ENAA_P0;
	else
		en_aa = nrf24l01_EN_AA_ENAA_NONE;
	
	if(rx == true)
		config = config | nrf24l01_CONFIG_PRIM_RX;
		
	nrf24l01_initialize(config, 
						true,
						en_aa, 
						nrf24l01_EN_RXADDR_DEFAULT_VAL, 
						nrf24l01_SETUP_AW_DEFAULT_VAL, 
						nrf24l01_SETUP_RETR_DEFAULT_VAL, 
						nrf24l01_RF_CH_DEFAULT_VAL, 
						nrf24l01_RF_SETUP_DEFAULT_VAL,  
						NULL, 
						NULL, 
						nrf24l01_RX_ADDR_P2_DEFAULT_VAL, 
						nrf24l01_RX_ADDR_P3_DEFAULT_VAL, 
						nrf24l01_RX_ADDR_P4_DEFAULT_VAL, 
						nrf24l01_RX_ADDR_P5_DEFAULT_VAL, 
						NULL, 
						p0_payload_width, 
						nrf24l01_RX_PW_P1_DEFAULT_VAL, 
						nrf24l01_RX_PW_P2_DEFAULT_VAL, 
						nrf24l01_RX_PW_P3_DEFAULT_VAL, 
						nrf24l01_RX_PW_P4_DEFAULT_VAL, 
						nrf24l01_RX_PW_P5_DEFAULT_VAL);
}

//initializes only the CONFIG register and pipe 0's payload width
//the primary purpose of this function is to allow users with microcontrollers with
//  extremely small program memories to still be able to init their 24L01.  This code
//  should have a smaller footprint than the above init functions.
//when using this method, the 24L01 MUST have its default configuration loaded
//  in all registers to work.  It is recommended that the device be reset or
//  have its power cycled immediately before this code is run.
//in normal circumstances, the user should use nrf24l01_initialize() rather than this
//  function, since this function does not set all of the register values.
void nrf24l01_initialize_debug_lite(bool rx, unsigned char p0_payload_width)
{
	unsigned char config;
	
	config = nrf24l01_CONFIG_DEFAULT_VAL;
	
	if(rx != false)
		config |= nrf24l01_CONFIG_PRIM_RX;
		
	nrf24l01_write_register(nrf24l01_RX_PW_P0, &p0_payload_width, 1);
	nrf24l01_power_up_param(true, config);
}

//powers up the 24L01 with all necessary delays
//this function takes the existing contents of the CONFIG register and sets the PWR_UP 
//the argument rx_active_mode is only used if the user is setting up the
//  24L01 as a receiver.  If the argument is false, the receiver will remain in
//  standby mode and not monitor for packets.  If the argument is true, the CE
//  pin will be set and the 24L01 will monitor for packets.  In TX mode, the value
//  of this argument is insignificant.
//note: if the read value of the CONFIG register already has the PWR_UP bit set, this function
//  exits in order to not make an unecessary register write.
void nrf24l01_power_up(bool rx_active_mode)
{
	unsigned char config;
	
	nrf24l01_read_register(nrf24l01_CONFIG, &config, 1);
	
	if((config & nrf24l01_CONFIG_PWR_UP) != 0)
		return;
		
	config |= nrf24l01_CONFIG_PWR_UP;
	
	nrf24l01_write_register(nrf24l01_CONFIG, &config, 1);
	
	delay_us(1500);
	
	if((config & nrf24l01_CONFIG_PRIM_RX) == 0)
		nrf24l01_clear_ce();
	else
	{
		if(rx_active_mode != false)
			nrf24l01_set_ce();
		else
			nrf24l01_clear_ce();
	}
}

//powers up the 24L01 with all necessary delays
//this function allows the user to set the contents of the CONFIG register, but the function
//  sets the PWR_UP bit in the CONFIG register, so the user does not need to.
//the argument rx_active_mode is only used if the user is setting up the
//  24L01 as a receiver.  If the argument is false, the receiver will remain in
//  standby mode and not monitor for packets.  If the argument is true, the CE
//  pin will be set and the 24L01 will monitor for packets.  In TX mode, the value
//  of this argument is insignificant.
void nrf24l01_power_up_param(bool rx_active_mode, unsigned char config)
{
	unsigned char test, test2;
	
	config |= nrf24l01_CONFIG_PWR_UP;
	
	nrf24l01_write_register(nrf24l01_CONFIG, &config, 1);

	delay_us(1500);

	if((config & nrf24l01_CONFIG_PRIM_RX) == 0)
		nrf24l01_clear_ce();
	else
	{
		if(rx_active_mode != false)
			nrf24l01_set_ce();
		else
			nrf24l01_clear_ce();
	}
}

//powers down the 24L01
//this function takes the existing contents of the CONFIG register and simply
//  clears the PWR_UP bit in the CONFIG register.
//note: if the read value of the CONFIG register already has the PWR_UP bit cleared, this 
//  function exits in order to not make an unecessary register write.
void nrf24l01_power_down()
{
	unsigned char config;
	
	nrf24l01_read_register(nrf24l01_CONFIG, &config, 1);
	
	if((config & nrf24l01_CONFIG_PWR_UP) == 0)
		return;
	
	config &= (~nrf24l01_CONFIG_PWR_UP);
	
	nrf24l01_write_register(nrf24l01_CONFIG, &config, 1);

	nrf24l01_clear_ce();
}

//powers down the 24L01
//this function allows the user to set the contents of the CONFIG register, but the function
//  clears the PWR_UP bit in the CONFIG register, so the user does not need to.
void nrf24l01_power_down_param(unsigned char config)
{
	config &= (~nrf24l01_CONFIG_PWR_UP);
	
	nrf24l01_write_register(nrf24l01_CONFIG, &config, 1);

	nrf24l01_clear_ce();
}


//sets up the 24L01 as a receiver with all necessary delays
//this function takes the existing contents of the CONFIG register and sets the PRIM_RX 
//  bit in the CONFIG register.
//if the argument rx_active_mode is false, the receiver will remain in standby mode
//  and not monitor for packets.  If the argument is true, the CE pin will be set 
//  and the 24L01 will monitor for packets.
//note: if the read value of the CONFIG register already has the PRIM_RX bit set, this function
//  exits in order to not make an unecessary register write.
void nrf24l01_set_as_rx(bool rx_active_mode)
{
	unsigned char config;
	unsigned char status;
	
	status = nrf24l01_read_register(0, &config, 1);

	if((config & nrf24l01_CONFIG_PRIM_RX) != 0)
		return;

	config |= nrf24l01_CONFIG_PRIM_RX;
	
	nrf24l01_write_register(nrf24l01_CONFIG, &config, 1);

	if(rx_active_mode != false)
		nrf24l01_set_ce();
	else
		nrf24l01_clear_ce();
}

//sets up the 24L01 as a receiver with all necessary delays
//this function allows the user to set the contents of the CONFIG register, but the function
//  sets the PRIM_RX bit in the CONFIG register, so the user does not need to.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色久优优欧美色久优优| 国产激情一区二区三区四区 | 99久久夜色精品国产网站| 免费一级欧美片在线观看| 亚洲一区二区三区四区在线观看 | 丰满白嫩尤物一区二区| 国产一区二区三区黄视频 | 热久久久久久久| 图片区小说区国产精品视频| 一个色综合av| 亚洲va欧美va人人爽午夜 | 日本欧美韩国一区三区| 天天色天天操综合| 看片的网站亚洲| 国产综合色在线视频区| 国产一区欧美日韩| www.亚洲国产| 成人久久18免费网站麻豆| 99re这里只有精品首页| 在线中文字幕一区| 91麻豆精品国产自产在线观看一区 | 欧美精品一区二区三区蜜桃视频 | 高清在线不卡av| av资源网一区| 欧美色图第一页| 欧美一区二区视频在线观看2022| 欧美一区二区三区四区在线观看| 欧美v国产在线一区二区三区| 精品捆绑美女sm三区| 国产日韩欧美精品一区| 亚洲欧美日韩一区二区 | 91精品国产色综合久久ai换脸| 欧美成人性战久久| 国产精品五月天| 亚洲无线码一区二区三区| 久久精品999| 99九九99九九九视频精品| 欧美色视频一区| 久久精品人人爽人人爽| 亚洲资源在线观看| 91精品91久久久中77777| 7777精品伊人久久久大香线蕉最新版 | 成人免费视频免费观看| 欧美三区免费完整视频在线观看| 日韩一级在线观看| 亚洲欧美色综合| 国产麻豆精品在线| 91麻豆精品国产| 亚洲欧洲av另类| 国产一区二区在线看| 欧美色综合久久| 国产精品进线69影院| 美女视频黄a大片欧美| 91福利在线导航| 中文在线一区二区| 麻豆一区二区99久久久久| 91福利小视频| 亚洲码国产岛国毛片在线| 国产一区二区三区精品欧美日韩一区二区三区| 91蝌蚪国产九色| 日本一区二区视频在线| 激情六月婷婷久久| 日韩一区二区三区精品视频 | 欧美做爰猛烈大尺度电影无法无天| www一区二区| 日韩成人一区二区| 欧美日韩三级一区| 亚洲线精品一区二区三区八戒| 北条麻妃一区二区三区| 久久久久国产精品麻豆ai换脸| 日韩av电影天堂| 欧美精品丝袜中出| 日韩中文字幕不卡| 欧美日韩久久久久久| 一区二区三区久久| 欧美亚洲日本国产| 亚洲一区视频在线| 欧美性xxxxxx少妇| 天天做天天摸天天爽国产一区 | 亚洲欧美另类久久久精品| www.色综合.com| 亚洲欧美日韩系列| 色哦色哦哦色天天综合| 夜夜精品浪潮av一区二区三区 | 亚洲精品国产a| 在线看一区二区| 亚洲综合视频网| 91精品国产一区二区| 裸体在线国模精品偷拍| 久久综合狠狠综合久久激情| 国产乱对白刺激视频不卡| 日本一二三四高清不卡| 在线观看日韩国产| 日韩精品亚洲专区| 精品国产一区二区三区不卡| 久久99精品久久久久久久久久久久| 精品少妇一区二区三区| 国产宾馆实践打屁股91| 亚洲男女一区二区三区| 欧美人xxxx| 国产99久久精品| 亚洲一区二区影院| 日韩欧美国产综合一区| 成人精品免费看| 亚洲第一成人在线| 精品播放一区二区| 日本韩国欧美国产| 免费看精品久久片| 国产精品夫妻自拍| 91精品欧美一区二区三区综合在| 久久国产精品72免费观看| 自拍偷拍欧美激情| 6080午夜不卡| 色综合色狠狠天天综合色| 免费成人美女在线观看.| 中文字幕亚洲在| 欧美电影免费提供在线观看| 91在线观看美女| 久久99最新地址| 亚洲福中文字幕伊人影院| 国产视频一区二区在线| 91精品国产综合久久久蜜臀粉嫩| 成人avav影音| 国产精品一级在线| 调教+趴+乳夹+国产+精品| 成人免费在线视频| 久久久噜噜噜久噜久久综合| 91精品国产综合久久蜜臀| 在线国产亚洲欧美| 成人av网址在线| 国内成人精品2018免费看| 亚洲高清视频的网址| 亚洲人精品午夜| 国产日产精品1区| 久久免费看少妇高潮| 欧美日韩在线亚洲一区蜜芽| 91亚洲国产成人精品一区二区三 | 欧美日韩国产精品成人| 不卡的电影网站| 国产丶欧美丶日本不卡视频| 青青草伊人久久| 香蕉影视欧美成人| 亚洲精品高清在线观看| 中文字幕在线不卡| 中文字幕欧美三区| 欧美高清在线视频| 亚洲国产经典视频| 国产日韩欧美制服另类| 久久在线免费观看| 久久精品亚洲麻豆av一区二区| 日韩美女视频在线| 日韩区在线观看| 精品奇米国产一区二区三区| 欧美一区二区三区男人的天堂| 欧美巨大另类极品videosbest| 欧美日韩国产首页| 欧美精品丝袜久久久中文字幕| 欧美精品一二三区| 日韩欧美一区二区免费| 精品国产乱码久久久久久夜甘婷婷| 日韩视频免费直播| 久久久久久久久免费| 国产精品私人影院| 亚洲色图另类专区| 亚洲成人av一区二区三区| 性久久久久久久| 精品一二线国产| caoporn国产精品| 欧美日韩视频一区二区| 欧美一区二区三区视频免费 | 国产亚洲一区二区三区| 国产亚洲成aⅴ人片在线观看| 国产日产欧产精品推荐色 | 99精品欧美一区二区蜜桃免费 | 欧美日韩国产另类一区| 欧美精品tushy高清| 日韩欧美国产系列| 国产精品欧美久久久久无广告| 亚洲色图在线看| 视频一区中文字幕| 国产精品88888| 色国产综合视频| 日韩一区二区视频在线观看| 国产欧美日韩在线看| 亚洲综合激情小说| 久久精品99国产国产精| 99re在线视频这里只有精品| 欧美日韩成人在线一区| 久久精品视频免费| 三级在线观看一区二区| 成人一区二区视频| 91精品国产综合久久精品麻豆| 国产日韩欧美制服另类| 天天综合色天天综合色h| 国产成人综合精品三级| 欧美日韩国产系列| 国产精品毛片无遮挡高清| 欧美bbbbb| 欧美日韩在线播放一区| 欧美韩日一区二区三区四区|