Part Number: CC2642R
1. SDK simplelink_cc13x2_26x2_sdk_3_30_00_03
2. CCS 9.2
======================
1. I imported project bim from C:\ti\simplelink_cc13x2_26x2_sdk_3_30_00_03\examples\nortos\CC26X2R1_LAUNCHXL\bim\bim_onchip
I created a file "my_ccfg.c" and link it to folder "Application". Bellow is content of file "my_ccfg.c"
#define SET_CCFG_IMAGE_VALID_CONF_IMAGE_VALID 0x56000
#include <ti/devices/DeviceFamily.h>
//#####################################
// Bootloader settings
//#####################################
#ifndef SET_CCFG_BL_CONFIG_BOOTLOADER_ENABLE
// #define SET_CCFG_BL_CONFIG_BOOTLOADER_ENABLE 0x00 // Disable ROM boot loader
#define SET_CCFG_BL_CONFIG_BOOTLOADER_ENABLE 0xC5 // Enable ROM boot loader
#endif
#ifndef SET_CCFG_BL_CONFIG_BL_LEVEL
#define SET_CCFG_BL_CONFIG_BL_LEVEL 0x0 // Active low to open boot loader backdoor
// #define SET_CCFG_BL_CONFIG_BL_LEVEL 0x1 // Active high to open boot loader backdoor
#endif
#ifndef SET_CCFG_BL_CONFIG_BL_PIN_NUMBER
#define SET_CCFG_BL_CONFIG_BL_PIN_NUMBER 0x19 // DIO number for boot loader backdoor
#endif
#ifndef SET_CCFG_BL_CONFIG_BL_ENABLE
#define SET_CCFG_BL_CONFIG_BL_ENABLE 0xC5 // Enabled boot loader backdoor
//#define SET_CCFG_BL_CONFIG_BL_ENABLE 0xFF // Disabled boot loader backdoor
#endif
#include DeviceFamily_constructPath(startup_files/ccfg.c)
2. I imported project C:\ti\simplelink_cc13x2_26x2_sdk_3_30_00_03\examples\rtos\CC26X2R1_LAUNCHXL\ble5stack\project_zero
3. I compiled both projects and download multiple images into my board ( NOT LAUNCHXL-CC26X2R1) by smart flash 2
BUT, the project zero doesn't work. I can not search ble "project zero"
I imported simple_peripheral and compiled and download it, it work well.
While simple_peripheral_oad_on(off)chip doesn't work.