board/arduino-nano-33-ble: add initial support#13194
Merged
fjmolinas merged 4 commits intoRIOT-OS:masterfrom Apr 8, 2020
Merged
board/arduino-nano-33-ble: add initial support#13194fjmolinas merged 4 commits intoRIOT-OS:masterfrom
fjmolinas merged 4 commits intoRIOT-OS:masterfrom
Conversation
Member
The link just leads here... |
Contributor
Author
Sorry, I forgot to put the link... Fixed :) |
298f792 to
fca7cfe
Compare
fca7cfe to
e6641d1
Compare
Contributor
Author
|
@fjmolinas maybe you could be interested by this one ? |
Contributor
Author
|
I can provide some output |
Contributor
Please do. |
Contributor
Author
`examples/hello_world` (with bossa-nrf52 bootstrap)`examples/default``examples/hello_world`, with stdio_null |
e6641d1 to
3ff6614
Compare
Contributor
Author
|
There are some unrelated errors on Murdock: |
Contributor
Author
|
They are all happening on |
Contributor
|
@aabadie please squash. |
3ff6614 to
8f99b71
Compare
Contributor
|
@aabadie this one diverged! |
8f99b71 to
239e080
Compare
Contributor
Author
ok, sorry. Should be ok now :) |
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 adds support for the Arduino Nano 33 BLE board which runs on an nRF52840 CPUs and thus provides 802.15.4 and BLE radio.
To flash this board, Arduino uses the same approach as with other samd21 based boards (MKR, etc): there's a bootloader at beginning of the flash. This bootloader can communicate with the Bossa tool but not the one from the upstream project because it doesn't support the nrf52 cpu. Arduino added support on his fork and as a consequence, this PR changes the Bossa repository to use the Arduino one.
Note that this PR is based on #12304 because I could adapt the same strategy for the nrf CPUs.
Timers, I2C were tested with success.
UART was also tested with success, using the following patch:
Details
SPI is untested.
Testing procedure
examples/saulapplication:compile_and_test_for_board.py. Using Makefile.dep: auto_init_% as DEFAULT_MODULES #13089 might help here.Issues/PRs references
Based on #12304