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.

AWR2944: OOB demo

Part Number: AWR2944

Tool/software:

Hi

 I checked OOB source code, platformCfg seems not be really used.

 Can I remove related codes about platformCfg ? Will any side-effect happen? Or something I missed?

typedef struct MmwDemo_platformCfg_t
{
/*! @brief GPIO index for sensor status */
uint32_t SensorStatusGPIO;

/*! @brief CPU Clock Frequency. */
uint32_t sysClockFrequency;

/*! @brief UART Logging Baud Rate. */
uint32_t loggingBaudRate;

/*! @brief UART Command Baud Rate. */
uint32_t commandBaudRate;
} MmwDemo_platformCfg;

typedef struct MmwDemo_Cfg_t
{
/*! @brief mmWave Control Configuration. */
MMWave_CtrlCfg ctrlCfg;

/*! @brief mmWave Open Configuration. */
MMWave_OpenCfg openCfg;

/*! @brief Platform specific configuration. */
MmwDemo_platformCfg platformCfg;


/*! @brief Datapath output loggerSetting
0 (default): MSS UART logger
1: DSS UART logger
*/
uint8_t dataLogger;
} MmwDemo_Cfg;

/* Platform specific configuration */
MmwDemo_platformInit(&gMmwMssMCB.cfg.platformCfg);

Thanks

BRs

Bruce