Quote Originally Posted by rondo2 View Post
Code:
gps_data var byte

serin2 TX,16468,[WAIT("$GPGGA"),str gps_data\6]
Your gps_data is defined as a single byte. You want an array to work with, so you should define it as something like:

Code:
gps_data var byte[6]