drivers/mkrwan: add initial implementation#9289
Closed
aabadie wants to merge 15 commits intoRIOT-OS:masterfrom
Closed
drivers/mkrwan: add initial implementation#9289aabadie wants to merge 15 commits intoRIOT-OS:masterfrom
aabadie wants to merge 15 commits intoRIOT-OS:masterfrom
Conversation
109c54b to
2a61701
Compare
2a61701 to
d43680e
Compare
Closed
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you want me to ignore this issue, please mark it with the "State: don't stale" label. Thank you for your contributions. |
d43680e to
4201e76
Compare
4201e76 to
800e414
Compare
800e414 to
307eaef
Compare
This module implements the 2 functions called when requesting a board 'reset in application' and 'board reset in bootloader' actions. This module will also configure the behaviour of bossa flasher and has a dependency on USBUS CDC ACM module for providing STDIO over USB
This provides automatic reflash/reset and stdio over USB for this board
- stdio-usb has a strong dependency on auto_init - stdio-usb is not compatible with arduino and stdio_ethos
Otherwise stdio_ethos is not pulling automatically by the info-board-supported target
307eaef to
0c7d52a
Compare
0c7d52a to
21a4a20
Compare
Member
|
unfortunately I don't have this module :/. I can review the code though |
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you want me to ignore this issue, please mark it with the "State: don't stale" label. Thank you for your contributions. |
This file contains hidden or 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
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.
Contribution description
This PR provides an initial implementation for the LoRa module available on the arduino-mkrwan1300 board. This module is controlled using AT commands so the driver is based on the generic AT command parser available in RIOT.
This PR also provides a basic test application for configuring the module, joining a network and sending data to the network. Reception of messages from the network is not supported in the current state.
Issues/PRs references
PR based on #8354 and
#9288