-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Bugfix using CHIP_CONFIG_SECURITY_TEST_MODE will not allow to build. #28638
Bugfix using CHIP_CONFIG_SECURITY_TEST_MODE will not allow to build. #28638
Conversation
PR #28638: Size comparison from 7353fd6 to 1eaa662 Increases (1 build for bl702l)
Decreases (5 builds for bl602, bl702, cc32xx, nrfconnect)
Full report (12 builds for bl602, bl702, bl702l, cc32xx, mbed, nrfconnect, qpg)
|
PR #28638: Size comparison from 95e3d94 to 4ca6226 Increases (10 builds for bl602, bl702, psoc6, telink)
Decreases (6 builds for efr32, esp32, telink)
Full report (60 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
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 should probably be gated with a #ifdef on the API version of open thread to not break platform that would use an older thread version. It is done a few time in the GenericThread files
Edit**
I looked it up, this new API changed with version OPENTHREAD_API_VERSION (160)
https://github.com/openthread/openthread/pull/6862/files#diff-67e8f8a8f8f67e317379f96d198f1bb77a23ffa2b9a3f4fafebb4c1317c4fcd2
so wrap new call in#if OPENTHREAD_API_VERSION >= 160
and #else keep the old call
@jmartinez-silabs In view of this #28058 there's probably no need for the API version check? |
4ca6226
to
059d571
Compare
@selissia Yes we can ignore that. I didn't realize that it has been broken for so long. The other comment needs to be addressed still. |
…s.cpp to follow the appropriate API call
dac362d
to
8c3b603
Compare
PR #28638: Size comparison from 9a35c44 to 8c3b603 Increases (14 builds for bl602, bl702, bl702l, cc32xx, cyw30739, esp32, psoc6, telink)
Decreases (5 builds for telink)
Full report (60 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
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 makes much more sense.
PR #28638: Size comparison from d928f3c to 87a1bf0 Increases (6 builds for nrfconnect, telink)
Decreases (15 builds for bl602, bl702, cc32xx, efr32, psoc6, telink)
Full report (60 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
PR #28638: Size comparison from bd2985f to 74f4bdb Increases (9 builds for bl702, bl702l, psoc6, telink)
Decreases (11 builds for bl602, cc32xx, efr32, telink)
Full report (60 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
PR #28638: Size comparison from 7067897 to d389106 Increases (6 builds for bl602, psoc6, telink)
Decreases (9 builds for cc32xx, efr32, nrfconnect, psoc6, telink)
Full report (60 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
…s.cpp to follow the appropriate API call (project-chip#28638)
…s.cpp to follow the appropriate API call (project-chip#28638)
void otThreadGetNetworkKey(otInstance *aInstance, otNetworkKey *aNetworkKey);