一、硬件修改:
CC1310如何使用内部LDO
二、软件修改:
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 <startup_files/ccfg.c>
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本身就会消耗更多的电压。

相关文章:

  • 2021-08-15
  • 2022-01-30
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2021-12-25
  • 2021-07-19
  • 2021-05-13
猜你喜欢
  • 2021-09-03
  • 2021-12-05
  • 2021-07-28
  • 2022-12-23
  • 2022-12-23
  • 2021-07-04
  • 2021-09-30
相关资源
相似解决方案