MM wave 60Ghz sensor MR60FDA1

Hellow, Iam follwing the insturuction in this post to create and check the human fall detection. But i can’t able to get the expected output. When i check with the raw data from the sensor using serial monitor in Arduino IDE it shows 53 59 80 02 00 01 01 30 54 43
while checking with the data sheet of MR60FDA1 get to know that the data which is respected to no moment occures. But litrally Im moving infront of the sensor with the distance of 1meter. I have also attach my sample codes that i have used to check the mmwave sensor. I have also downloaded the library files from the git hub mentioned above website.

#include “Arduino.h”
#include <60ghzfalldetection.h>

#include <SoftwareSerial.h>
// Choose any two pins that can be used with SoftwareSerial to RX & TX
#define RX_Pin A2
#define TX_Pin A3

SoftwareSerial mySerial = SoftwareSerial(RX_Pin, TX_Pin);

// we’ll be using software serial
FallDetection_60GHz radar = FallDetection_60GHz(&mySerial);

// can also try hardware serial with
//FallDetection_60GHz radar = FallDetection_60GHz(&Serial1);

void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
//Serial1.begin(115200);

mySerial.begin(115200);

while(!Serial); //When the serial port is opened, the program starts to execute.

Serial.println(“Readly”);
}

void loop()
{
// put your main code here, to run repeatedly:
radar.Fall_Detection(); //Receive radar data and start processing
radar.recvRadarBytes(); //Receive radar data and start processing
radar.showData();
if(radar.sensor_report != 0x00){
switch(radar.sensor_report){
case NOFALL:
Serial.println(“The sensor detects this movement is not a fall.”);
Serial.println("----------------------------");
break;
case FALL:
Serial.println(“The sensor detects a fall.”);
Serial.println("----------------------------");
break;
case NORESIDENT:
Serial.println(“The sensors did not detect anyone staying in place.”);
Serial.println("----------------------------");
break;
case RESIDENCY:
Serial.println(“The sensor detects someone staying in place.”);
Serial.println("----------------------------");
break;
}
}
delay(100); //Add time delay to avoid program jam
}

Can anyone help me to solve this issue

-Arun