Quote Originally Posted by mackrackit View Post
In case someone else has a similar problem... What was the fix?
The array was too small to hold the sequence of characters and code was kinda stuck there. I changed it to the following :

Baud con 188
sms var byte[65]
start:
serin2 portc.4,baud,500,start,[WAIT("$GPRMC"),STR sms\65\13] ' added 13 as well
If sms[0]<>0 then goto display
goto start

These are the only corrections I have done and it fired up.