Serial communication with hex code

6 vues (au cours des 30 derniers jours)
Deo
Deo le 17 Mai 2017
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);
===============================================

Réponse acceptée

Jan
Jan le 17 Mai 2017
Modifié(e) : Jan le 17 Mai 2017
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 commentaires
Deo
Deo le 17 Mai 2017
Jan, I solved the problem. Your code was correct, and I had problem in inverted checksum, such as "3A" at last 3rd and 4th digits of Str. Also, I added fread function like "data=fread(s);" Thanks for your help.
Jose Ignacio Mora Cordero
Jose Ignacio Mora Cordero le 24 Mai 2021
Hi Deo, did you work with Xbee´s ?
Can you receive data and extract de data from de API frame?

Connectez-vous pour commenter.

Plus de réponses (1)

상휘 김
상휘 김 le 7 Jan 2022
@Jan, Thank you!

Catégories

En savoir plus sur Software Development Tools dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by