lora-aprs / LoRa_APRS_iGate

This is a LoRa APRS iGate/Digi based on an ESP32

Home Page:https://www.lora-aprs.info

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Decrease frequency of NTPTask

Mane76 opened this issue · comments

By checking the syslog (either local or using syslog.lora-aprs.info) it is visible that NTPTask is performed each minute. On the one hand this produces unneeded traffic locally but also produces unneeded traffic to the syslog Server.

To reproduce simply check the syslog, all versions are affected

The expected behaviour would be to start the NTPTask less frequent, e.g. each 6 hours. The internal RTC of the lora board is also capable of this.

Solution:
Please change the value in "lib/NTPClient/NTPclient.h", line 20
from default value 60000 to e.g. 21600000.

unsigned long _updateInterval = 21600000; // In ms

Thank you
Manfred

thanks for the pull request!