-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
disabling the GPS PPS #16
Comments
First, it should work without you doing anything.
The algorithm gets the timing from the data bursts getting from the GPS.
What happens when you simply run the code without modifications ?
Pawel.
…On Sun, Jul 8, 2018 at 7:51 AM, kusree ***@***.***> wrote:
I still cannot figure how to use non-PPS GPS module?
i tried to change "GPS_Status.PPS=0;" in gps.cpp but not working
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#16>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AImAam8yE431eAhzFXpxIv30M2elyu2xks5uEavogaJpZM4VGney>
.
|
I just realized that the OGN receiver automatically change the RF frequency center to the Australia region (915Mhz) based on my location. that's why the receiver can not listen to the device. First, I though it was the gps problem. Now I have to find out how to change the center frequency back to 868.3MHz |
Both OGN receiver and the OGN-Tracker should change the frequency plan
according to the geographical location.
In the OGN receiver you can override it by RF.FreqPlan=1; (for
Europe/Africa)
but in the OGN-Tracker there is no override.
Where are you and which frequency plan do you need ?
Pawel.
…On Mon, Jul 9, 2018 at 2:44 PM, kusree ***@***.***> wrote:
I just realized that the OGN receiver automatically change the RF
frequency center to the Australia region (915Mhz) based on my location.
that's why the receiver can not listen to the device. First, I though it
was the gps problem. Now I have to find out how to change the center
frequency back to 868.3MHz
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#16 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AImAasgN_pkPXpV9sObX5ReClkcBYh3uks5uE14sgaJpZM4VGney>
.
|
I'm in Indonesia, and planning to use 868MHz instead of Australia region freq |
OK, in the OGN receiver you need to set the FreqPlan=1; in the RF section like this: RF: in the OGN-Tracker code, I have to think yet, how to do it best. BTW: to exclude the PPS code from the ESP32 OGN-Tracker comment out the line in the hal.h #define WITH_GPS_PPS |
OK, to force a given frequency plan in the OGN Tracker please do the following:
In rf.cpp change the line: RF_FreqPlan.setPlan(0); // 1 = Europe/Africa, 2 = USA/CA, 3 = Australia and South America to: RF_FreqPlan.setPlan(1); |
Yes, in Indonesia we are using 868mhz. thank you pjalocha, will try it to set the fixed freqplan |
i have added the parameter FreqPlan to the STM32 and ESP32 OGN-Tracker so that you can override the automatic setting based on the location. For 868MHz send this to the console: $POGNS,FreqPlan=1 the parameters are stored in the flash thus the Tracker remembers them after a reset or re-power. |
thank you pjalocha. I will try it |
I still cannot figure how to use non-PPS GPS module?
i tried to change "GPS_Status.PPS=0;" in gps.cpp but not working
The text was updated successfully, but these errors were encountered: