PiRSquared17 / gccv2

Automatically exported from code.google.com/p/gccv2
0 stars 0 forks source link

Log file contains coordinates with zero value after starting the app or when signal is lost #59

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Start GCC (Gps always on log everey 1 sec, drop first 8 points, read GPS 
data directly)
2. Start logging 
3. After the GPS is locked and working enter a building (to lose the signal)

What is the expected output? 
1. App starts.
2. App waits for GPS lock and then starts saving data
3. App loses signal and stops logging

What do you see instead?
1. App starts.
2. App waits for a long time (3->5min), even if GPS is locked, and then saves 
100 or more points with zero latitude & longitude before the correct data.
</trkpt>
<trkpt lat="0" lon="0.0000000001">
<ele>0</ele>
<time>2010-06-27T02:08:05Z</time>
</trkpt>

BUG

Note that if the logging is stopped and another track is started the issue 
above does not repeat.

3. App keeps on logging points like
</trkpt>
<trkpt lat="0" lon="0.0000000001">
<ele>0</ele>
<time>2010-06-27T02:08:05Z</time>
</trkpt>

BUG

Version used - latest from SVN build (v4.3 fails to install on my device)

Original issue reported on code.google.com by cristian...@gmail.com on 28 Jun 2010 at 6:22

GoogleCodeExporter commented 9 years ago

Original comment by cristian...@gmail.com on 28 Jun 2010 at 6:30

GoogleCodeExporter commented 9 years ago
Hello Cristian, welcome back.
I can not reproduce your issue with version 4.3.
I have added a new developer Andrzej. He is doing a big rearrangement of the 
source code structure, so that it will be more maintenance friendly and it 
should be easier to work with several developers at the project. He checked in 
some changes but I believe that it is not working at the moment.

Why you can't install V4.3?
If you want to use the sources, use r40 or the tag V4.3.
Klaus

Original comment by kmb...@gmx.de on 28 Jun 2010 at 9:14

GoogleCodeExporter commented 9 years ago
Hmmm ... I have no ideea why V 4.3 cab would not install. It just sais 
Instalation failed (As usual Microsoft's error messages are not very 
descriptive)

I will try r40 or tag V4.3 and repeat the tests (as soon as I'll have the time).

Original comment by cristian...@gmail.com on 29 Jun 2010 at 7:30

GoogleCodeExporter commented 9 years ago
One possible cause may be that the old version of GCC was running in background.
Klaus

Original comment by kmb...@gmx.de on 29 Jun 2010 at 10:50

GoogleCodeExporter commented 9 years ago
It's not possible to have old version running in background, because:
 - The device was just started (from the hard switch)
 - I use a toolbar application that ensures when I stop an app it is actually stopped (not send to background).

I'll give it another try as soon as possible.

Original comment by cristian...@gmail.com on 30 Jun 2010 at 6:31

GoogleCodeExporter commented 9 years ago
Klaus was right. This issue does not reproduce with V4.3

PS. Regarding the failed installation.
I managed to install V4.3 cab only after following steps:
- Deleted old app dir.
- Installed V4.2
- Installed V4.3
No idea why.

Original comment by cristian...@gmail.com on 2 Jul 2010 at 6:26