资源简介
BEKEN原厂提供的开发资料,有step by step 便于入门
代码片段和文件信息
#include “bk2423.h“
UINT8 op_status;
//Bank1 register initialization value
//In the array Bank1_Reg0_13all[] the register value is the byte reversed!!!!!!!!!!!!!!!!!!!!!
code unsigned long Bank1_Reg0_13[]={
0xE2014B40
0x00004BC0
0x028CFCD0
0x41390099
0x0B86BED9 //high sensitivity mode to enable normal sensitivity modeuse 0x0B869ED9
0xA67F0624 //RSSI measurement disabled to enable RSSI measurementuse 0xA67F0224
0x00000000
0x00000000
0x00000000
0x00000000
0x00000000
0x00000000
0x00127305
0x36B48000
};
code UINT8 Bank1_Reg14[]=
{
0x410x100x040x820x200x080x080xF20x7D0xEF0xFF
};
//Bank0 register initialization value
code UINT8 Bank0_Reg[][2]={
{00x0F}
{10x3F}
{20x3F}
{30x03}
{40xff}
{50x17}
{60x0F} //0x0F or 0x2F:2Mbps; 0x07:1Mbps ; 0x27:250Kbps
{70x07}
{80x00}
{90x00}
{120xc3}
{130xc4}
{140xc5}
{150xc6}
{170x20}
{180x20}
{190x20}
{200x20}
{210x20}
{220x20}
{230x00}
{280x3F}
{290x07}
};
code UINT8 RX0_Address[]={0x150x590x230xC60x29};
code UINT8 RX1_Address[]={0x100x560x240xCD0x78};
///////////////////////////////////////////////////////////////////////////////
// SPI access //
///////////////////////////////////////////////////////////////////////////////
/**************************************************
Function: SPI_RW();
Description:
Writes one UINT8 to BK2423 and return the UINT8 read
/**************************************************/
UINT8 SPI_RW(UINT8 value)
{
UINT8 bit_ctr;
for(bit_ctr=0;bit_ctr<8;bit_ctr++) // output 8-bit
{
if(value & 0x80)
{
MOSI=1;
}
else
{
MOSI=0;
}
value = (value << 1); // shift next bit into MSB..
SCK = 1; // Set SCK high..
value |= MISO; // capture current MISO bit
SCK = 0; // ..then set SCK low again
}
return(value); // return read UINT8
}
/**************************************************/
/**************************************************
Function: SPI_Write_Reg();
Description:
Writes value ‘value‘ to register ‘reg‘
/**************************************************/
void SPI_Write_Reg(UINT8 reg UINT8 value)
{
CSN = 0; // CSN low init SPI transaction
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 946076 2012-03-14 13:59 BK2423-D01原厂资料\BK2423 Datasheet v2.0.pdf
文件 563826 2011-05-31 14:43 BK2423-D01原厂资料\BK2423Reference Code\Reference Code\BK2423 Programming Guide v1.0.pdf
文件 524598 2011-05-31 14:48 BK2423-D01原厂资料\BK2423Reference Code\Reference Code\BK2423 Programming Guide v2.0_en.pdf
文件 4289 2011-05-31 14:08 BK2423-D01原厂资料\BK2423Reference Code\Reference Code\bk2423.h
文件 11124 2011-05-31 14:30 BK2423-D01原厂资料\BK2423Reference Code\Reference Code\BK2423_Initialize.c
文件 1666 2011-05-31 14:08 BK2423-D01原厂资料\BK2423Reference Code\Reference Code\BK2423_TxRx.c
文件 8297 2011-05-31 14:40 BK2423-D01原厂资料\BK2423Reference Code\Reference Code\Test_Func.c
文件 574974 2012-03-14 13:59 BK2423-D01原厂资料\BK2423Reference Code.rar
文件 11901 2012-03-14 14:00 BK2423-D01原厂资料\XL2423-D01.pdf
文件 43238 2012-04-10 17:11 BK2423-D01原厂资料\XL2423-D01尺寸图.PCB
目录 0 2013-10-17 10:02 BK2423-D01原厂资料\BK2423Reference Code\Reference Code
目录 0 2013-10-17 10:02 BK2423-D01原厂资料\BK2423Reference Code
目录 0 2013-10-17 10:02 BK2423-D01原厂资料
----------- --------- ---------- ----- ----
2689989 13
相关资源
- 基于博弈论的认知无线电功率控制算
- 基于STM32的高频无线调制信号分析仪的
- 无线充电器技术原理简介
- 下一代无线局域网802.11n的吞吐率、强
- pdanet 破解版
- Omnipeek无线网卡抓包驱动
- MicroHard P900 应用手册
- 公交车自动报站系统设计
- 无线模块 cc1101+程序+原理图
- CISCO无线控制器WLC配置手册
- DIY制作ESP8266无线WIFI智能插座,一点不
- nrf42l04无线传输mpu6050数据
- 基于STM32一氧化碳无线报警报器
- 无线电导航原理与系统
- gprs远程无线抄表系统
- NRF24L01无线模块原理图、PCB图
- 自发电2.4G门铃程序,PCB,原理图
- SL300、SL400、SL500bios白名单任意更换无
- 天线设计手册
- Qi无线充电标准(20100831)
- Qi无线充电标准201306 V1.1.2
- Andrea Goldsmith无线通信课后题答案
- STM32F103C8T6每隔20s驱动DS18B20测温_OLED
- STM32F103C8T6 NRF24L01 无线收发程序
- 软件无线电GPS接收机的DSP实现与优化
- 基于DS18B20和nRF9E5的多点无线测温系统
- 无线龙CC1110试验例程
- STM32-SI4463
- 一个DIY的无线麦克风的PCB工程
- TI RF芯片设计的无线模块资料
评论
共有 条评论