Skip to content
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

Confusing minimum poll interval setting #25

Open
cimm opened this issue Jul 21, 2018 · 3 comments
Open

Confusing minimum poll interval setting #25

cimm opened this issue Jul 21, 2018 · 3 comments
Labels
topic: documentation Related to documentation for the project type: imperfection Perceived defect in any part of project

Comments

@cimm
Copy link

cimm commented Jul 21, 2018

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!

@cimm cimm changed the title Poll interval documentation Minimum poll interval documentation Jul 21, 2018
@cimm cimm changed the title Minimum poll interval documentation Confusing minimum poll interval setting Jul 21, 2018
@facchinm
Copy link
Contributor

Hi @cimm ,
minPollInterval was added to wrap an AT command from original Murata firmware; as you correctly noticed it is currently unused and can be removed.

@facchinm facchinm added the type: enhancement Proposed improvement label Aug 20, 2018
@matthijskooijman
Copy link

minPollInterval was added to wrap an AT command from original Murata firmware; as you correctly noticed it is currently unused and can be removed.

I'm a bit confused, as the pollInterval variable (set byy minPollInterval) does seem to be used here:

if (millis() - lastPollTime < pollInterval) return;

Or did you mean that the entire poll() function can be removed? Its function is not documented, but it looks a bit like it is intended to check network connectivity by sending a dummy (but not entirely empty) confirmed uplink?

@per1234 per1234 added type: imperfection Perceived defect in any part of project topic: documentation Related to documentation for the project and removed type: enhancement Proposed improvement labels May 24, 2022
@matthijskooijman
Copy link

Its function is not documented, but it looks a bit like it is intended to check network connectivity by sending a dummy (but not entirely empty) confirmed uplink?

Though it seems the poll() function does not return the status of the confirmed upllink, so maybe it is intended for something else. I initially thought it would send an uplink to give the network a chance to send a downlink (i.e. poll for a pending downlink), but then it makes no sense that it uses a confirmed uplink (though maybe it does so to ensure blocking until the RX window is completed and also knowing for sure whether a message is pending or not)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: documentation Related to documentation for the project type: imperfection Perceived defect in any part of project
Projects
None yet
Development

No branches or pull requests

4 participants