CC1310如何使用内部LDO

一、硬件修改:
CC1310如何使用内部LDO_第1张图片
二、软件修改:
in order to disable the built-in DC/DC, write this in your ccfg.c:
#define SET_CCFG_MODE_CONF_DCDC_RECHARGE 0x1 // Do not use the DC/DC during recharge in powerdown
#define SET_CCFG_MODE_CONF_DCDC_ACTIVE 0x1 // Do not use the DC/DC during active mode
#include
This will set the necessary defines before the default ccfg is evaluated.
三、实际测试:
(1)433M,单波发送程序,10dB,DCDC使能,3V供电,15mA;2V供电,25mA
(2)433M,单波发送程序,10dB,DCDC不使能,3V供电,25mA;2V供电,25mA
解释:
(1)DCDC输入与输出可以近似的看作功率相等(然而在实际上,前后功率是有一个转换比的,90%左右),所以,当输入电压降低时,电流必然升高。
(2)LDO其实就是一个大电阻降压器件,输入输出前后电流是相等的,输入电压升高时,为了保证输出依然不变,所以LDO本身就会消耗更多的电压。

你可能感兴趣的:(CC1310)