码迷,mamicode.com
首页 > 其他好文 > 详细

Zigbee-CC2530开发板协议栈-修改发射功率

时间:2015-07-07 16:58:43      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:zigbee cc2530 发射功率

 

CC2530 控制输出功率的寄存器是 TXPOWER:
技术分享

推荐功率设置:

技术分享

协议栈默认的设置是 0xd5,为了扩展信号传输的距离,我把TXPOWER寄存器值改为0xf5, 此时输出功率为4.5dBm.在mac_radio.c文件,做了如下修改:

void macRadioSetTxPower(uint8 txPower)
{
halIntState_t s;

/* if the selected dBm is out of range, use the closest available */
if (txPower > MAC_RADIO_TX_POWER_MAX_DBM)
{
txPower = MAC_RADIO_TX_POWER_MAX_DBM;
}

/*
* Set the global variable reqTxPower. This variable is referenced
* by the function macRadioUpdateTxPower() to write the radio register.
*
* A lookup table is used to translate the power level to the register
* value.
*/
HAL_ENTER_CRITICAL_SECTION(s);
reqTxPower = macRadioDefsTxPowerTable[txPower];
HAL_EXIT_CRITICAL_SECTION(s);

/* update the radio power setting */
//************** 自己修改 ******* 
reqTxPower = 0xF5;
//******************************* 
macRadioUpdateTxPower();
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

Zigbee-CC2530开发板协议栈-修改发射功率

标签:zigbee cc2530 发射功率

原文地址:http://blog.csdn.net/shaopengf/article/details/46790151

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!