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.

CCSTUDIO-THEIA: Intellisense --- can't find functions

Part Number: CCSTUDIO-THEIA
Other Parts Discussed in Thread: LP-MSPM0C1104

I am trying to get onboard with CCS 20 and I hate it...nothing works very well 

I have a simple program I am trying to do... It builds without error in CCS 20.4.0...if I hover over DL_ADC12_configHwAverage I can right click on it and go to Definition which exists in a dl_adc12.h file....however if I try and do the same on the other DL_ADC12 functions I get 'no references found'....this is EXTREMELY misleading and walks one down a path that there is an include issue!!!!  YET these functions exist in the same dl_adc12.h file ...what is going on here????  
TI released a product that is not even close to CCS 12

Thanks for any answers here

 

#include "ti_msp_dl_config.h"
volatile uint16_t adcResult = 0;

int main(void)
{
    SYSCFG_DL_init();
    /* Override averaging - 4 samples */
    DL_ADC12_configHwAverage(ADC12_0_INST,
        DL_ADC12_HW_AVG_NUM_ACC_4,
        DL_ADC12_HW_AVG_DEN_DIV_BY_4);

    DL_TimerG_startCounter(Trigger_Cntrl_INST);

    while (1) {
//        __WFI();
        /* Wait for conversion complete */
                while(DL_ADC12_getStatus(ADC12_0_INST) ==
              DL_ADC12_STATUS_CONVERSION_ACTIVE);
       
        /* Read result */
        adcResult = DL_ADC12_getMemResult(ADC12_0_INST, ADC12_0_ADCMEM_0);
    }
}