question about write to serial

51 次查看(过去 30 天)
Weiyue Xing
Weiyue Xing 2024-11-4,14:23
回答: Supraja 2024-11-11,9:49
I want to write this string to the serial, but the signal is wrong. How to wirte this code? Thank you!!!
  4 个评论
Weiyue Xing
Weiyue Xing 2024-11-5,12:27
编辑:Weiyue Xing 2024-11-5,13:54
Dear Walter Roberson, thank you for your answer. I found the question is that each 8-bits data has a start bit and stop bit as you said. So if there are some ways to remove the start bit and stop bit to make the signal continuous? Thank you very much!
Walter Roberson
Walter Roberson 2024-11-5,17:39
When you are measuring the wire signal levels of RS232, then the Start and Stop bits are unavoidable.
Side note: the Start bit is a different length than the Stop bit. I seem to recall that the Stop bit is half of the length of other bits.

请先登录,再进行评论。

回答(1 个)

Supraja
Supraja 2024-11-11,9:49
Hi,
It seems like sending deimal values inside the function would help in this case.
Please use the code as below:
write(app.SerialObject, [85, 86, 87, 88], "uint8"); % Decimal equivalents of binary numbers
Refer to 'write' function documentation below for further reference:
I hope this helps!

Community Treasure Hunt

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

Start Hunting!

Translated by