- LV 2010 with Embedded for ARM module
- MCB2300
- COM1 port
I am trying to read in a serial string on this port from a serial device. I am (for whatever reason) reading in hexidecimal characters. I can either read in one byte at a time or all bytes at port.
My coming string either looks like this:
\D5\8B\D6\EC\AB\D6\EC\FB\F6\FB\F6\EBV\D6\EC\EB (if I read in all at once)
or
\DB
\8B
... (if I read in one byte per iteration)
Either way I want to convert this to ASCII characters but I can't get the '\' off the front of the string. I have tried two ways and neither works. The outputs are just blank. Any suggestions?