Serial communication with hex code
6 次查看(过去 30 天)
显示 更早的评论
I have one device using an asynchronous HDLC framing. And my matlab versions are 2016a and 2015b.
This device is connected to my computer via USB, but this is recognized as COM port device due to USART driver.
Anyway, I need to send hex code "0x7E, 0x23, 0x02, 0x00, 0x7D, 0x31, 0x24, 0x01, 0x0C, 0x25, 0x01, 0x0E, 0x26, 0x01, 0x03, 0x3A, 0x7E" to this device and receive response. (Terminator is 0x7E which means "~" or "126").
Can you help to make this serial communication code?
For serial setthing, I set the code like below, but I am asking this question because my code with fopen/query or fwrite and fread did not work properly.
=======================================
clear;
instrreset();
s = serial ('COM3','baudrate',115200);
set(s,'parity','none');
set(s,'databit',8);
set(s,'stopbit',1);
set(s,'timeout',1);
===============================================
0 个评论
采纳的回答
Jan
2017-5-17
编辑:Jan
2017-5-17
Perhaps:
Str = '7E2302007D3124010C25010E2601033A7E'
D = sscanf(Str, '%2x');
fwrite(s, D, 'uint8')
This is a bold guess only. I'm still confused when somebody wants to send hex codes. Hex codes are actually a string, a vector of type char. I assume that the bytes should be sent, which are represented by these hex codes. Or do you really want to send the characters '7', 'E', ... ?
Note: I cannot test this code. Please try if it must be '%.2X' instead of '%2X'.
2 个评论
Jose Ignacio Mora Cordero
2021-5-24
Hi Deo, did you work with Xbee´s ?
Can you receive data and extract de data from de API frame?
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Software Development Tools 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!