int16 to uint8 array conversion for Serial Transmit

조회 수: 23 (최근 30일)
phil
phil 2017년 5월 26일
답변: phil 2017년 5월 26일
Hello there, I would like to take a int16 and split it into a uint8 array to transmit via serial connection (arduino).
Then i would like to reassemble the the two bytes to give me back my original int16. Any help would be appreciated :)

답변 (3개)

Guillaume
Guillaume 2017년 5월 26일
편집: Guillaume 2017년 5월 26일
exampleint16 = int16(12345);
sameasuint8 = typecast(exampleint16, 'uint8')
restoredint16 = typecast(sameasuint8, 'int16')
However, if all you want to do is transmit that int16. You could just fwrite it as is, and read it as an uint8:
%on the sender
fwrite(serialobj, yourint16, 'int16')
%on the reader
fread(serialobj, 2, 'uint8')
  댓글 수: 1
Walter Roberson
Walter Roberson 2017년 5월 26일
If you fwrite() the int16 then be sure to check the serial ByteOrder property.
If you split into uint8 using typecast() then you need to take care of the endian problems yourself. For this purpose you need to know that if you typecast a 16 bit quantity into uint8 then on all current implementations of MATLAB, the first byte of the result is the least significant byte.

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


phil
phil 2017년 5월 26일
편집: phil 2017년 5월 26일
Your answer works fine in Matlab however in simulink i get port dimension errors. This is probably due to the fact that i could be varying size? any ideas how to cope?\

phil
phil 2017년 5월 26일
Ok a little bit more resarch has turned out specifying data size in the model explorer works: :)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by