-
Notifications
You must be signed in to change notification settings - Fork 3k
Update 802.15.4 RF drivers to the latest version #9828
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
Conversation
static const phy_rf_channel_configuration_s phy_24ghz = {2405000000U, 5000000U, 250000U, 16U, M_OQPSK}; | ||
static const phy_rf_channel_configuration_s phy_subghz = {868300000U, 2000000U, 250000U, 11U, M_OQPSK}; | ||
static const phy_rf_channel_configuration_s phy_24ghz = {.channel_0_center_frequency = 2405000000U, .channel_spacing = 5000000U, .datarate = 250000U, .number_of_channels = 16U, .modulation = M_OQPSK}; | ||
static const phy_rf_channel_configuration_s phy_subghz = {.channel_0_center_frequency = 868300000U, .channel_spacing = 2000000U, .datarate = 250000U, .number_of_channels = 11U, .modulation = M_OQPSK}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is C99, but should not be legal in C++
https://stackoverflow.com/questions/18731707/why-does-c11-not-support-designated-initializer-lists-as-c99
CI compilation errors happens because new Nanostack API is needed. Nanostack will be published in separate PR. |
@artokin, thank you for your changes. |
Requires API changes are available in PR #9838 |
@artokin Mind adding |
@cmonr , this PR syncs 802.15.4 RF drivers from the master copy. Changes do not require release notes and therefore |
Sync with v3.0.6 in https://github.com/ARMmbed/atmel-rf-driver
Sync with v1.0.3 in https://github.com/ARMmbed/mcr20a-rf-driver
Sync with v0.0.1 in master repository.
Sync with v0.0.2 in master repository.
83151fb
to
05dc1f2
Compare
Rebased to get dependency PR #9838 included to the build. |
CI started |
Test run: FAILEDSummary: 1 of 8 test jobs failed Failed test jobs:
|
@ARMmbed/mbed-os-test Can you review above failure? I can't spot it in the logs (only that nanostack fails to build for M2351 target) . @artokin Please review |
Info: A CI config issue appears to be affecting Other build failures should still be investigated, if any. Will restart CI when appropriate. |
I can't find any other build failure than the |
@artokin wait a second, there's misconfig in CI, will be fixed soon |
CI restarted |
Test run: SUCCESSSummary: 13 of 13 test jobs passed |
Test passed but old hook is still present (ARM build job) |
@0xc0170 fixed |
Description
Update 802.15.4 RF drivers to the latest version for Mbed OS 5.12.
Pull request type
Reviewers
@JarkkoPaso , @SeppoTakalo @mikter