Tool/software:
Dear TI Support Team,
I am currently working on a project involving obstacle detection using the AWR1843AOP.
In the sdk_03_06_02_00-LTS version, I noticed that the gAntennaSpacing value has been added for 68XX as shown in the code snippet below. I would like to know the corresponding gAntennaSpacing information for the 18XX series.
"""
#if defined(SOC_XWR68XX)
#ifdef ISK
float gAntennaSpacing = 2.5e-3;
#elif defined(ODS)
float gAntennaSpacing = 2.426e-3;
#elif defined(AOP)
float gAntennaSpacing = 2.5e-3;
#elif defined(DEFAULT_ANT_DESIGN)
float gAntennaSpacing = 2.5e-3;
#else
float gAntennaSpacing = -1; /* Antenna spacing value based correction factor set to default */
#endif
#else
float gAntennaSpacing = -1; /* Antenna spacing value based correction factor set to default or not applicable for other SOCs */
#endif
"""
Your guidance on this matter would be greatly appreciated.
Thank you for your time and support.
Best regards,
Seokhun Hong