完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
|
|
相关推荐
3 个讨论
|
|
Q1: 如果CC2530一直使用定时器计时,功率大概是多少?
看数据手册,有给外设电流大小。或者接个万用表实测下电流就好了。 PARAMETER TEST CONDITIONS MIN TYP MAX UNIT Digital regulator on. 16-MHz RCOSC running. No radio, crystals, or peripherals active. 3.4 mA Medium CPU activity: normal flash access(1), no RAM access 32-MHz XOSC running. No radio or peripherals active. 6.5 8.9 mA Medium CPU activity: normal flash access(1), no RAM access 32-MHz XOSC running, radio in RX mode, –50-dBm input power, no peripherals active, CPU 20.5 mA idle 32-MHz XOSC running, radio in RX mode at -100-dBm input power (waiting for signal), no 24.3 29.6 mA Core current peripherals active, CPU idle Icore consumption 32-MHz XOSC running, radio in TX mode, 1-dBm output power, no peripherals active, CPU idle 28.7 mA 32-MHz XOSC running, radio in TX mode, 4.5-dBm output power, no peripherals active, CPU 33.5 39.6 mA idle Power mode 1. Digital regulator on; 16-MHz RCOSC and 32-MHz crystal oscillator off; 0.2 0.3 mA 32.768-kHz XOSC, POR, BOD and sleep timer active; RAM and register retention Power mode 2. Digital regulator off; 16-MHz RCOSC and 32-MHz crystal oscillator off; 1 2 μA 32.768-kHz XOSC, POR, and sleep timer active; RAM and register retention Power mode 3. Digital regulator off; no clocks; POR active; RAM and register retention 0.4 1 μA Peripheral Current Consumption (Adds to core current Icore for each peripheral unit activated) Timer 1 Timer running, 32-MHz XOSC used 90 μA Timer 2 Timer running, 32-MHz XOSC used 90 μA Timer 3 Timer running, 32-MHz XOSC used 60 μA Iperi Timer 4 Timer running, 32-MHz XOSC used 70 μA Sleep timer Including 32.753-kHz RCOSC 0.6 μA ADC When converting 1.2 mA Erase 1 mA Flash Burst write peak current 6 mA |
|
|
|
|
|
原文地址:http://www.kaleidscope.cn:1020/archives/1056
以下为部分内容: Zigbee协议栈中如果要实现一个定时事件或者延时的话,有很多种方法,定时事件呢其实就是我们熟悉的使用定时器来定时,产生定时事件,当然也可以用来延时。 1、协议栈定时器HalTimerConfig ZigBee协议栈提供了定时器的使用接口,在hal层调用HalTimerConfig即可配置使用,而定时器2被协议栈占用了,所以只有使用1、3、4三个定时器。 在hal_timer.h中我们可以看到几个定时器的定义: /* Timer ID definitions */ #define HAL_TIMER_0 0x00 // 8bit timer #define HAL_TIMER_1 0x01 // 16bit Mac timer #define HAL_TIMER_2 0x02 // 8bit timer #define HAL_TIMER_3 0x03 // 16bit timer #define HAL_TIMER_MAX 4 // Max number of timer 所以和硬件中的定时器是有区别的,经过了映射,这里需要注意一下。 * HAL_TIMER_0 --> HW Timer 3 8bit * HAL_TIMER_2 --> HW Timer 4 8bit * HAL_TIMER_3 --> HW Timer 1 16bit 如果我们要使用协议栈的定时器进行相关操作,只需进行定时器的配置即可: extern uint8 extern uint8 HalTimerConfig ( uint8 timerId,uint8 opMode,uint8 channel,uint8 channelMode,bool intEnable,halTimerCBack_t cback ); opMode - Operation mode操作方式共3种 * channel - Channel where the counter operates on选择通道,对应IO口 * channelMode - Mode of that channel通道的模式 * intEnable -可中断 * cBack - Pointer to the callback function 中断函数 然后在回调函数中进行处理相关事件即可。 void timer_callback(uint8 timerId, uint8 channel, uint8 channelMode); 2、使用寄存器直接操作 直接使用寄存器就更简单了,就把CC2530当做一个单片机用就可以了,这里我拿了我以前写的代码给大家演示,注释有错的地方请忽略,大概就这样吧。 void InitT3(void) [ T3CTL |= 0x08 ; //开溢出中断 T3IE = 1; //开总中断和T3中断 T3CTL|=0X12; //,128/16000000*N=0.5S,N=65200 T3CC0 = 0x01; T3CTL &= ~0X03; //自动重装 00->0xff T3CTL |=0X10; //启动 ] void timer1Init(void) [/*设置定时器T1,128分频,模模式,从0计数到T1CC0*/ |
|
|
|
|
|
只有小组成员才能发言,加入小组>>
NA555DR VCC最低电压需要在5V供电,为什么用3.3V供电搭了个单稳态触发器也使用正常?
651 浏览 3 评论
MSP430F249TPMR出现高温存储后失效了的情况,怎么解决?
587 浏览 1 评论
对于多级放大电路板,在PCB布局中,电源摆放的位置应该注意什么?
1040 浏览 1 评论
716 浏览 0 评论
普中科技F28335开发板每次上电复位后数码管都会显示,如何熄灭它?
514 浏览 1 评论
请问下tpa3220实际测试引脚功能和官方资料不符,哪位大佬可以帮忙解答下
149浏览 20评论
请教下关于TAS5825PEVM评估模块原理图中不太明白的地方,寻求答疑
115浏览 14评论
在使用3254进行录音的时候出现一个奇怪的现象,右声道有吱吱声,请教一下,是否是什么寄存器设置存在问题?
119浏览 13评论
TLV320芯片内部自带数字滤波功能,请问linein进来的模拟信号是否是先经过ADC的超采样?
117浏览 12评论
TPA6304-Q1: TPA6304 两片公用一组I2C的话,其中一片配置不成功怎么办
158浏览 10评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-19 00:20 , Processed in 0.972975 second(s), Total 61, Slave 50 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号