-
Notifications
You must be signed in to change notification settings - Fork 725
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
Support Digi API Frames #585
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
disable memory optimizations on ATmega4809
I refered TinyGsmClientSaraR4.h for this patch.
use CEREG first to check registration status for BG96
Added pin parameter on restart() (necessary for init() with pin)
First SIM808 bluetooth support commit. Template class and basic functionality
There is an issue in the handling of +SQNSS answer: the sock->sock_connected state will always be set to the state of the last socket. This will prevent any communication. Fix this issue by checking that muxNo is equal to mux before updating. Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com>
src/TinyGsmClientSequansMonarch.h: fix connection handling
As specified in the ETSI standards (e.g. ETSI TS 127 001), CREG and CEREG responses can contain optional parameters: +CEREG: <n>,<stat>[,<tac>,<ci>[,<AcT>]] For example, the Monarch GMS01Q returns the following response: +CEREG: 2,1,"3982","00DF3B03",7 This results in TinyGSM setting state as '7' instead of 1 preventing any connection. Fix this by picking the next integer after the first ',' which will always works (with or without optional parameters) Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com>
current connection technology
SIM7000: added methods to get some connection preferences
SIM7000: TLS support plus other minor improvements
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Added NTPServerSync() and related methods to Sim7000 implementation
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
…SIM70xx Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
Updates from EnviroDIY
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
fix job name
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add support of Digi API frames.