Hi :
The short distance preset is multi-mode (maximum detection range 80m and 20m), how can I change it to single mode (maximum detection range 120m)?
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.
Hi :
The short distance preset is multi-mode (maximum detection range 80m and 20m), how can I change it to single mode (maximum detection range 120m)?
Hi,
The detection at 120m is not robust. We recommend 80m as max range.
It is possible to select single mode by changing the define in the header file and re-compiling the demo as follows
labs\lab0002_short_range_radar\src\common\srr_config_consts.h
/**! @brief The multi-mode Radar mode of operation. */
//#define SUBFRAME_CONF_SRR_USRR /* Two subframes, SRR80 followed by USRR20. */
/**! @brief The USRR only mode of operation. */
// #define SUBFRAME_CONF_USRR /* One subframe USRR20. */
/**! @brief The SRR only mode of operation. */
#define SUBFRAME_CONF_SRR /* One subframe SRR80. */
Thank you
Cesar