First parameter is minimum time in milliseconds, second is minum distance in meters.
GPS1.Start(1000,100)
take lat/long each 1000ms or each 100 meters
if you are within 100 meters of the last position, you'll have a lat/long each 1000ms
if you move 100 meters before 1000ms the you also will have a lat/long.
GPS1.Start(0,100)
If you don't move you will not get lat/long.
To start test GPS i think is better begin with something like GPS1.Start(100,5)
Once your code works you can test other parameters to save battery.
If you don't have battery problems, best is GPS1.Start(0,0)