Part Number:FDC2214EVM
Hello,
I would like to readout the data stream from the FDC2214EVM with an Python script.
At first I tried it with the example-script from LDC1614, but there appears many issues, so I just tried the simplest way with following code.
serial_port = serial.Serial(port='COM17', baudrate=115200)
serial_port.write('4C0501000601290404302AC1'.encode('utf-8'))
s = serial_port.read(32)
print (binascii.hexlify(s))
But nothing is read back.
Do you have any idea, what the problem could be?