Open
Description
The LoraSendAndReceive example sketch uses the minPollInterval()
function but I can't seem to find any documentation for this function.
modem.minPollInterval(60);
// NOTE: independently by this setting the modem will
// not allow to send more than one message every 2 minutes,
// this is enforced by firmware and can not be changed.
This only sets the pollInterval
variable if I read the source correctly so why does the example set it to 60 seconds when the comment underneath states it can't be less than 2 minutes? Shouldn't it be minimum 120 seconds?
Thank you!