-
Notifications
You must be signed in to change notification settings - Fork 3k
Nanostack ARMC6 update #10231
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
Nanostack ARMC6 update #10231
Conversation
…e7ba 086e7ba Adjust variable scope (ARMmbed#121) git-subtree-dir: features/nanostack/coap-service git-subtree-split: 086e7ba
Fix compiler warnings: -"warning: 'size' argument to memset is '0'" -"warning: implicit declaration of function"
@artokin, thank you for your changes. |
@@ -70,7 +71,7 @@ static fhss_timeout_s *allocate_timeout(void) | |||
{ | |||
for (int i = 0; i < NUMBER_OF_SIMULTANEOUS_TIMEOUTS; i++) { | |||
if (fhss_timeout[i].fhss_timer_callback == NULL) { | |||
memset(&fhss_timeout[i], sizeof(fhss_timeout_s), 0); | |||
memset(&fhss_timeout[i], 0, sizeof(fhss_timeout_s)); |
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.
👀
@@ -19,6 +19,12 @@ | |||
|
|||
#include "mbedtls/entropy_poll.h" | |||
|
|||
#ifdef MBEDTLS_ENTROPY_HARDWARE_ALT |
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.
Feels weird to have both an ifdef
and if defined
in the same line.
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.
Won't hold this up on that nit tho.
CI started |
Test run: SUCCESSSummary: 13 of 13 test jobs passed |
@ARMmbed/mbed-os-mesh Any thoughts? |
Nanostack ARMC6 update
Description
Pull request type
Reviewers
@JarkkoPaso , @mikter , @deepakvenugopal