HI,
I have tried to implement the python code given in ( link) to load the configuration using the UART port. 
But after i read the data from the data port, i read nothing. When I load it using the mmwave Visualiser, I am able to read the data.
My code which I am using to load the saved configuration file is
import time
import serial
CLIport = serial.Serial('/dev/ttyACM0', 115200)
for line in open('/home/user/Desktop/profile.cfg'):
config = line.rstrip('\r\n')
for i in config:
x = i + '\n'
CLIport.write(x.encode())
print(x.encode())
time.sleep(0.01)
CLIport.close();
print(" Port Closed");
Where can I be going wrong?