I am starting to dig into all the components of this shield. The GPS appears to be working, but never receives a fix.
When using the GPS python script from the tutorial, I continuously get the following:
$GPVTG,T,M,N,K,N2C
$GPGSA,A,1,1E
$GPGGA,0,66
$GPRMC,V,N53
No satellite data available.
I have also tried using the cellulariot python package too from your Git repo with the following code:
from cellulariot import cellulariot
node = cellulariot.CellularIoTApp()
node.setupGPIO()
node.enable()
node.powerUp()
node.turnOnGNSS()
node.getLatitude()
I receive the following response:
OK
+CME ERROR: 516
0
I have tried both the provided GPS/LTE antenna and an active antenna. I have tried moving the device to the window and even left it in the backyard for a few hours with a big battery pack, but never received a fix. I tested the antennas with an Adafruit Ultimate GPS and was able to get a fix with both antennas within a minute, even indoors by the window.
What further steps can I take to diagnose the issue?
Thanks!