This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/CC2652R: CC2652R Using 32-kHz Crystal-Less Mod

Part Number: CC2652R
Other Parts Discussed in Thread: CC2640

Tool/software: TI-RTOS

Hi Sir,

    Can please double confirm my w/ 32K xtal and w/o 32K xtal setting, thanks.

    SDK version: cc13x2_26x2_sdk_3_10_01_11

    P/N: CC2652R (silicon 2.1)

    Refer docs: 

        1. swra499b.pdf, Running Bluetooth® low energy on CC2640 Without 32K...

         2. Ti resource, http://dev.ti.com/tirex/content/simplelink_cc13x2_26x2_sdk_3_10_01_11/docs/ble5stack/ble_user_guide/html/ble-stack-5.x/custom-hardware.html#using-32-khz-crystal-less-mode

----------------------------------------------------------

Q1, Is it correct for CC2652R w/ 32K xtal setting ?

       Step1, import "BLE5_host_test" project

       Step2, 


const PowerCC26X2_Config PowerCC26X2_config = {
.policyInitFxn = NULL,
.policyFxn = &PowerCC26XX_standbyPolicy,
.calibrateFxn = &PowerCC26XX_calibrate,
.enablePolicy = true,
.calibrateRCOSC_LF = false, //true,
.calibrateRCOSC_HF = true,
};

   step 3, build "FlashROM_Release"

Q2, Is it correct for CC2652R w/o 32K xtal setting ?

       Step1, import "BLE5_host_test" project

       Step2, 


const PowerCC26X2_Config PowerCC26X2_config = {
.policyInitFxn = NULL,
.policyFxn = &PowerCC26XX_standbyPolicy,
.calibrateFxn = &PowerCC26XX_calibrate,
.enablePolicy = true,
.calibrateRCOSC_LF = true, //false,
.calibrateRCOSC_HF = true,
};

    step 3, build "FlashROM_RCOSC_Release"