필터 지우기
필터 지우기

How to disable termination character while setting up serial object?

조회 수: 12 (최근 30일)
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?

채택된 답변

Guillaume
Guillaume 2019년 7월 26일
The matlab documentation provides all property values except that on how to disable the termination character.
How about the 'Terminator' property?
  댓글 수: 2
Abhilash Sukumari
Abhilash Sukumari 2019년 7월 29일
This is to be used only when you want to specify a termination character. What if you are dealing with a fixed message serial protocol that doesn't have a termination character ?
Guillaume
Guillaume 2019년 7월 29일
s.Terminator = '';
%or
s.Terminator = [];
seems to work fine in that it does not throw an error even if you write to the serial port. I don't have a device connected to my serial port to check that it actually does what you want.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by