MATLAB: How to disable termination character while setting up serial object

MATLABserial

I have to establish with a serial communication device that uses the following properties:
baud = 115200, parity = none, timeout = 500ms, termination char = None, stopbits = 1.
The matlab documentation provides all property values except that on how to disable the termination character.
Any ideas?

Best Answer

The matlab documentation provides all property values except that on how to disable the termination character.
How about the 'Terminator' property?
Related Question