Tool/software: Code Composer Studio
We can enable or disable Alternative DC/DC settings in the ccfg_app_ble.c file by following way which works fine during compile time only:
#define SET_CCFG_SIZE_AND_DIS_FLAGS_DIS_ALT_DCDC_SETTING 0x0 // Alternative DC/DC setting enabled
OR
#define SET_CCFG_SIZE_AND_DIS_FLAGS_DIS_ALT_DCDC_SETTING 0x1 // Alternative DC/DC setting disabled
However, we would like to understand if TI SDK provides any API to enable or disable DC/DC settings at run time during firmware startup or initialization routine. If there is no API, is there any hardware register we can access and modify in order to enable alternative DC/DC settings?