CC2650/CC2640 串口烧录 Serial Bootloader
1.流程图:
2.管教映射以及寄存器
3.code修改
//**************************************************
// Bootloader enable
//**************************************************
// #define SET_CCFG_BL_CONFIG_BOOTLOADER_ENABLE 0x00 // Disable
#define SET_CCFG_BL_CONFIG_BOOTLOADER_ENABLE 0xC5 // Enable
//**************************************************
// Bootloader pin level configuration
//**************************************************
// #define SET_CCFG_BL_CONFIG_BL_LEVEL 0x0 // Active low
#define SET_CCFG_BL_CONFIG_BL_LEVEL 0x1 // Active high
//**************************************************
// Bootloader failure analysis pin number
//**************************************************
#define SET_CCFG_BL_CONFIG_BL_PIN_NUMBER 0xFF
//#define SET_CCFG_BL_CONFIG_BL_PIN_NUMBER 0x1E
//**************************************************
// Bootloader failure analysis
//**************************************************
#define SET_CCFG_BL_CONFIG_BL_ENABLE 0xC5 // Enabled
//#define SET_CCFG_BL_CONFIG_BL_ENABLE 0xFF // Disabled