-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
Pull changes from Okra's fork #12
Merged
Merged
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
Instead of returning the raw modem value, convert the RSSI to dBm. The API of getRSSI() changed to return int16_t.
Convert RSSI to dBm See merge request okrasolar/firmware/cicada!25
Add SSL support for Espressif devices See merge request okrasolar/firmware/cicada!27
Handle WIFI DISCONNECT differently See merge request okrasolar/firmware/cicada!26
When using modem auto detect, the autodetector's task is added to the scheduler's task list instead of the modem driver. But the modem driver's delay was not forwarded to the autodetector, so it always had a constant delay of 10ms between executing the task's run method. This is fixed by updating the autodetector's setDelay() from it's run() method.
Fix delay when using modem auto detect See merge request okrasolar/firmware/cicada!28
Set it to Station mode only, instead of SoftAP+Station
Fix WiFi mode See merge request okrasolar/firmware/cicada!29
The modem sometimes is not able to handle a command directly after receiving data.
Add delay to SIM800 driver See merge request okrasolar/firmware/cicada!30
This reverts commit cef0514.
This reverts commit c4a0f64.
Remove pointless buffer flush See merge request okrasolar/firmware/cicada!31
Add suport for CC1352P7 Module See merge request okrasolar/firmware/cicada!34
Refactor example See merge request okrasolar/firmware/cicada!35
Remove pointless buffer flush also for Espressif See merge request okrasolar/firmware/cicada!33
Add RSL singal strength for cc1352p7 See merge request okrasolar/firmware/cicada!36
Add support to retrieve MAC address from CC1352P7 See merge request okrasolar/firmware/cicada!37
AT+CIPSHUT only works if AT+CIICR was called before. So there is no point in calling cipshut in certain error cases.
SIM800: Handle resetting after ERROR better See merge request okrasolar/firmware/cicada!38
When ICCID was requested from the modem, check if the reply is a valid ICCID. Should prevent erroneous replies from SIM800.
Validate ICCID See merge request okrasolar/firmware/cicada!39
Requests for modem IDs except ICCID did not work, because they where all treated as ICCIDs.
Fix validation when requesting a modem ID See merge request okrasolar/firmware/cicada!40
https://github.com/mpaland/printf The one from libstdc is huge and uses dynamic memory alloc.
sscanf() is huge and uses dynamic memory. strtol() is much more lightweight.
Remove dependencies on printf and scanf See merge request okrasolar/firmware/cicada!41
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.
Continuation of #11
Much easier and cleaner now that the fork is updated 🎉