issues getting GPS coordinates
Posted: November 19th, 2015, 4:56 pm
Hi everyone,
I know that this issue has been brought up many many times... but I am getting an error message every time I try to read the GPS coordinates into my samsung tab4.
The error message that I keep getting is: Message (-14) there was an error reading the gps coordinates
I have made sure to be in a place with strong signal, but that doesn't seem to be the problem.
These are a few of the things that I have tried:
1)--------------------------------------------------------------------------------------
gps(open);
if gps(read,5) then
errmsg("Latitude is %f, longitude is %f",gps(latitude),gps(longitude));
LAT=gps(latitude);
LONG=gps(longitude);
else
errmsg("GPS signal could not be acquired");
endif;
gps(close);
2)--------------------------------------------------------------------------------------
if gps(open) and gps(read, 5) then
LAT=gps(latitude);
LONG=gps(longitude);
else
errmsg("GPS signal could not be acquired");
endif;
gps(close);
I know that this issue has been brought up many many times... but I am getting an error message every time I try to read the GPS coordinates into my samsung tab4.
The error message that I keep getting is: Message (-14) there was an error reading the gps coordinates
I have made sure to be in a place with strong signal, but that doesn't seem to be the problem.
These are a few of the things that I have tried:
1)--------------------------------------------------------------------------------------
gps(open);
if gps(read,5) then
errmsg("Latitude is %f, longitude is %f",gps(latitude),gps(longitude));
LAT=gps(latitude);
LONG=gps(longitude);
else
errmsg("GPS signal could not be acquired");
endif;
gps(close);
2)--------------------------------------------------------------------------------------
if gps(open) and gps(read, 5) then
LAT=gps(latitude);
LONG=gps(longitude);
else
errmsg("GPS signal could not be acquired");
endif;
gps(close);