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.

IWR1443BOOST: Demo are stpopped without Range Direction and Doppler Direction.

Part Number: IWR1443BOOST

Hi,

If Range Direction and Doppler Direction are not used,
Are Demo stopped?

I use mmWave Demo Visializer,online.

Platform:xWR14xx
SDK:1.2
Antenna Config:4Rx,2Tx(15 deg)

Range Direction : no checked.
Doppler Direction :no checked.


I push "Send Config to mmw Device",demo stated.

The demonstration started smoothly
I confirme the display of many plots.

But, when I move my hands at random in front of the sensor ,
and the sensor falls. The plots all stopped.
the mmWave Demo Visializer was freezed.

Number of detection Objects :100
(When plots were moving,it's under 10 usualy.)
InterFrameProcessingMargin(usec):about 50000 to 55000
(When plots were moving,it's about 80000 to 85000 .)

Regards,
user5205609

  • Hi,
    Did you modify any parameter/Code in SDK demo? Could you please share the config file you are using for this test?
    You can try to reduce the frame rate to ensure transmit time is enough for these object data, also increase the CFAR threshold to test if it can work when the object become less.
    If you have any further questions, please let me know. Thanks.
    Regards,
    Wesley
  • HI,

    Thank you very much.

    I use default bin of SDK 1.2.
    \\mmwave_sdk_01_02_00_05\firmware\radarss
    xwr12xx_xwr14xx_radarss.bin

    \\mmwave_sdk_01_02_00_05\packages\ti\demo\xwr14xx\mmw
    xwr14xx_mmw_demo_mss.bin

    I saved my settings in cfg.
    It was output as follows.

    % ***************************************************************
    % Created for SDK ver:01.02
    % Created using Visualizer ver:2.0.0.0
    % Frequency:77
    % Platform:xWR14xx
    % Scene Classifier:best_range_res
    % Azimuth Resolution(deg):15
    % Range Resolution(m):0.044
    % Maximum unambiguous Range(m):9.01
    % Maximum Radial Velocity(m/s):1
    % Radial velocity resolution(m/s):0.13
    % Frame Duration(msec):100
    % Range Detection Threshold (dB):15
    % Range Peak Grouping:disabled
    % Doppler Peak Grouping:disabled
    % Static clutter removal:disabled
    % ***************************************************************
    sensorStop
    flushCfg
    dfeDataOutputMode 1
    channelCfg 15 5 0
    adcCfg 2 1
    adcbufCfg 0 1 0 1
    profileCfg 0 77 429 7 57.14 0 0 70 1 240 4884 0 0 30
    chirpCfg 0 0 0 0 0 0 0 1
    chirpCfg 1 1 0 0 0 0 0 4
    frameCfg 0 1 16 0 100 1 0
    lowPower 0 0
    guiMonitor 1 1 0 0 0 1
    cfarCfg 0 2 8 4 3 0 1280
    peakGrouping 1 0 0 1 229
    multiObjBeamForming 1 0.5
    clutterRemoval 0
    calibDcRangeSig 0 -5 8 256
    compRangeBiasAndRxChanPhase 0.0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0
    measureRangeBiasAndRxChanPhase 0 1.5 0.2
    CQRxSatMonitor 0 3 5 123 0
    CQSigImgMonitor 0 119 4
    analogMonitor 1 1
    sensorStart

    Regards,
    user5205609
  • Hi,

    It's because the number of objects exceeds the limitation 100 when you moving you hand.

    There's 2 methods to solve this issue:

    1. Reduce the number of object(recommended)
      1. Increase the CFAR threshold. cfarCfg 0 2 8 4 3 0 2560
      2. Or enable the PeakGrouping. peakGrouping 1 1 1 1 229
    2. Increase the MMW_MAX_OBJ_OUT limitation in C code.
      1. Change it from 100 to 500 objects. Then the processing chain can work well.
      2. datapath.h line64, #define MMW_MAX_OBJ_OUT 500
      3. detected_obj.h line10 #define MMW_MAX_OBJ_OUT 500

    if you have any further questions, please let me know. Thanks.

    Regards,

    Wesley

  • Hi,
    Thank you very much.

    I changed cfarcfg "0 2 8 4 3 0 1280" to "0 2 8 4 3 0 2560",and
    MMW_MAX_OBJ_OUT 100 to 500.
    PeakGrouping still "1 1 1 1 229".

    Movement of mmw Visualizer Demo has stabilized much
    and it rarely stops stopping.
    It did not stop as long as I was watching.

    Regards,
    user5205609