Hi,
I would like to covert peakVal from linear to dB.
Usig the fuction 10 * log( peakVal ), is it right ?
Thanks
=====
typedef volatile struct MmwDemo_detectedObj_t
{
uint16_t rangeIdx; /*!< @brief Range index */
int16_t dopplerIdx; /*!< @brief Doppler index. Note that it is changed
to signed integer in order to handle extended maximum velocity.
Neagative values correspond to the object moving toward
sensor, and positive values correspond to the
object moving away from the sensor */
uint16_t peakVal; /*!< @brief Peak value */
int16_t x; /*!< @brief x - coordinate in meters. Q format depends on the range resolution */
int16_t y; /*!< @brief y - coordinate in meters. Q format depends on the range resolution */
int16_t z; /*!< @brief z - coordinate in meters. Q format depends on the range resolution */
} MmwDemo_detectedObj;
=====