-
-
-
@Gordon I did what You asked. Line of sight is good, watch with the 'N' symbol facing towards the sky. No change. Even after 50 minutes the output is still as follows:
$GNRMC,,V,,,,,,,,,,N*4D $GNVTG,,,,,,,,,N*2E $GNGGA,,,,,,0,00,99.99,,,,,,*56 $GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E $GPGSV,1,1,00*79 $GNGLL,,,,,,V,N*7A
Otherwise it may be there's an issue with the GPS radio but it's worth trying some other stuff first
Anything else I can try?
-
-
-
What I have done so far:
- Updated all apps (including Bootloader)
- Installed/Uninstalled GPS Info app
- Flashed firmware
Despite all that GPS Info app still states "0 satelites". Even after an hour long walk away from tall buildings.
To debug I used following code:
Bangle.setGPSPower(1); Bangle.on('GPS-raw', function(gps) { print(gps); });
Output is:
| |_ ___ ___ _ ||___ ___
| |_ -| . | _| | | | | . |
||_| || |_|||_|_||_| espruino.com
2v05.1 (c) 2019 G.Williams
ΓΏ$GNTXT,01,01,02,u-blox AG - http://www.u-blox.com*4E
$GNTXT,01,01,02,HW UBX-M8130 00080000*61
$GNTXT,01,01,02,ROM CORE 3.01 (107888)*2B
$GNTXT,01,01,02,FWVER=SPG 3.01*46
$GNTXT,01,01,02,PROTVER=18.00*11
$GNTXT,01,01,02,GPS;GLO;BDS*06
$GNTXT,01,01,02,QZSS*58
$GNTXT,01,01,02,GNSS OTP=GPS;BDS*26
$GNTXT,01,01,02,LLC=FFFFFFFF-FFFFFFED-FFFFFFFF-FFFFFFBF-FFFFFFF9*57
$GNTXT,01,01,02,ANTSUPERV=AC SD PDoS SR*3E
$GNTXT,01,01,02,ANTSTATUS=DONTKNOW*2D
$GNTXT,01,01,02,PF=3FB*4F
$GNRMC,,V,,,,,,,,,,N*4D
$GNVTG,,,,,,,,,N*2E
$GNGGA,,,,,,0,00,99.99,,,,,,*56
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E
$GPGSV,1,1,00*79
$GNGLL,,,,,,V,N*7A
$GNTXT,01,01,02,ANTSTATUS=INIT*3B
$GNRMC,,V,,,,,,,,,,N*4D
$GNVTG,,,,,,,,,N*2E
$GNGGA,,,,,,0,00,99.99,,,,,,*56
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E
$GPGSV,1,1,00*79
$GNGLL,,,,,,V,N*7A
$GNTXT,01,01,02,ANTSTATUS=OK*25
$GNRMC,,V,,,,,,,,,,N*4D
$GNVTG,,,,,,,,,N*2E
$GNGGA,,,,,,0,00,99.99,,,,,,*56
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E
$GPGSV,1,1,00*79
$GNGLL,,,,,,V,N*7AAfterwards I updated the code to print GPS data every 5 seconds:
Bangle.setGPSPower(1); Bangle.on('GPS-raw', function(gps) { if (Date().getSeconds() % 5 === 0){ print(gps); } });
And noticed a repeating block of values:
$GNRMC,,V,,,,,,,,,,N*4D
$GNVTG,,,,,,,,,N*2E
$GNGGA,,,,,,0,00,99.99,,,,,,*56
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*2E
$GPGSV,1,1,00*79
$GNGLL,,,,,,V,N*7AI have attached a screenshot from a phone showing satellite coverage if it's of any help.
- Updated all apps (including Bootloader)
@Gordon By that little connector You mean this area? I'm guessing that white residue should not be there?