Hello,

My project uses a 16F627 to poll a Thunderbolt GPS Disapplined Oscillator for status via its
RS232 port. The TBolt GPS data packets are transmitted in decimal words. Unfortuantely, this
causes problems for most terminal displays will display these decimal numbers as ASCII and
ASCII special characters (Bell, SOH and some unknown, etc). I would like to make the conversion
using HSERIN and HSEROUT if possible.

With all the knowledge on this forum, someone will undoutedly point out my problem.

Thank you,

John N6VMO

Here is my theory test code:

INCLUDE "BS2DEFS.BAS"

DEFINE HSER_TXSTA 24H
DEFINE HSER_RCSTA 90H
DEFINE HSER_BAUD 9600
define HSER_SPBRG 25

char Var BYTE ' Storage for serial character
cnt Var Byte ' Storage for character counter

TRISB = %11001111 ' Set PORTB.4,5 to outputs
PORTB = 0 ' Turn off LEDs
cnt = 0 ' Zero character counter

mainloop:
Hserin [dec char] ' Get a char from serial port
Hserout [hex char] ' Send char out serial port

'Debug status
cnt = cnt + 1 ' Increment
PORTB = cnt << 4 ' Send count to LED
Goto mainloop ' Do it all over again

End