Hello
Is it possible to have a log of the characters sent in the usb buffer by "msg" buffer ?
Thank in advance.
Is it possible to have a log of the characters sent in the usb buffer by "msg" buffer ?
how to log about (msg):
Sub Bbegin_Click
If usbserial.IsInitialized Then
Dim s As String = "begin" & Chr(1)
Dim msg() As Byte = s.GetBytes("UTF8")
usbserial.Write(msg)
Log(s)
'Log(msg) are not possible
End If
End Sub
Thank in advance.