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.

AWR1642: command frameCfg>Number of Frames is missing

Part Number: AWR1642

Hi Experts,

I'd like to know the time required a single frame is processed,

so that I tried to command frameCfg>Number of Frames while I refer to the forum of below URL.

e2e.ti.com/.../679106

But I couldn't find that command in a C file.

Where is command frameCfg>Number of Frames ??

  • Hi,

    In the file common\cfg.c

    Please see " ptrFrameCfg->numFrames = FRAME_COUNT_VAL;"

    Thank you
    Cesar

    /**
    * @b Description
    * @n
    * The function initializes the frame configuration with the default
    * parameters.
    *
    * @param[out] ptrFrameCfg
    * Pointer to the frame configuration
    *
    * @retval
    * Not applicable
    */
    void Cfg_FrameCfgInitParams (rlFrameCfg_t* ptrFrameCfg)
    {
    /* Initialize the configuration: */
    memset ((void*)ptrFrameCfg, 0, sizeof(rlFrameCfg_t));

    /* Populate the default configuration: */
    ptrFrameCfg->chirpEndIdx = FRAME_CHIRP_END_IDX;
    ptrFrameCfg->chirpStartIdx = FRAME_CHIRP_START_IDX;
    ptrFrameCfg->numFrames = FRAME_COUNT_VAL;
    ptrFrameCfg->numLoops = FRAME_LOOP_COUNT;
    ptrFrameCfg->triggerSelect = RL_FRAMESTRT_SYNCIN_TRIGGER;
    ptrFrameCfg->framePeriodicity = FRAME_PERIODICITY_VAL;
    ptrFrameCfg->frameTriggerDelay = FRAME_TRIGGER_DELAY_VAL;
    ptrFrameCfg->numAdcSamples = FRAME_NUM_REAL_ADC_SAMPLES;
    return;
    }