forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
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
tests: lwm2m_client_utils: Add stubbing for LWM2M init macros #13
Closed
SeppoTakalo
wants to merge
23
commits into
rlubos:upmerge-01-03-2024
from
SeppoTakalo:upmerge-01-03-2024
Closed
tests: lwm2m_client_utils: Add stubbing for LWM2M init macros #13
SeppoTakalo
wants to merge
23
commits into
rlubos:upmerge-01-03-2024
from
SeppoTakalo:upmerge-01-03-2024
Conversation
This file contains 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
Pull upmerged sdk-zephyr and sdk-mcuboot repositories. Pull sdk-nrfxlib fixes. Signed-off-by: Robert Lubos <[email protected]>
And use CMake's math expression instead. Signed-off-by: Robert Lubos <[email protected]>
Add forward declaration of strnstr function. Signed-off-by: Robert Lubos <[email protected]>
Align with bt_iso_chan_send() API change, which now does not take timestamp parameter. Signed-off-by: Robert Lubos <[email protected]>
"posix_subsys" library no longer exists in Zephyr. Manual linking however does not seem to be needed after all (those ext libraries build just fine w/o it), so remove the reference to posix_subsys. Signed-off-by: Robert Lubos <[email protected]>
NRF_STORE_REBOOT_TYPE_GPREGRET option has been removed from Zephyr after two-release deprecation period. This was too short however for Zigbee to get rid of the option use. This commit removes the option usage by Zigbee. The retention register is now set unconditionally for all platfroms by Zigbee, not only for nRF5340. This needs verification from the ZB team. And eventually should likely be replaced by the Boot Mode API use, as the migration guide suggests. Signed-off-by: Robert Lubos <[email protected]>
Building the sample gives the following warning: warning: 'strncat' specified bound 1 equals source length As the actual source length is equal to the provided maximum length, using strncat() is redundant, could just use strcat(). Signed-off-by: Robert Lubos <[email protected]>
ztest_run_all() API has changed, align the NCS codebase. Signed-off-by: Robert Lubos <[email protected]>
zperf result->client_time_in_us is not 64-bit, hence update the format when printing. BT_UUID_DECLARE_128() return value is now const. Signed-off-by: Robert Lubos <[email protected]>
By using Zephyr's POSIX signal implementation. Signed-off-by: Robert Lubos <[email protected]>
BT_ATT_ENFORCE_FLOW Kconfig option was removed from Zephyr. Signed-off-by: Robert Lubos <[email protected]>
Align with the API changes in upstream audio subsystem. Signed-off-by: Robert Lubos <[email protected]>
CMSIS_DSP now has finer-grade Kconfig granulation, therefore need to select CMSIS_DSP_FASTMATH as well. Signed-off-by: Robert Lubos <[email protected]>
CMSIS_DSP now has finer-grade Kconfig granulation, therefore need to select CMSIS_DSP_FILTERING as well. Signed-off-by: Robert Lubos <[email protected]>
Do not use BSD socket API names in the samples as they depend on various Posix config options that we do not really need here. Signed-off-by: Jukka Rissanen <[email protected]>
Do not use BSD socket API names in the samples as they depend on various Posix config options that we do not really need here. Signed-off-by: Jukka Rissanen <[email protected]>
Do not use BSD socket API names in the samples as they depend on various Posix config options that we do not really need here. Signed-off-by: Jukka Rissanen <[email protected]>
If user enables CONFIG_NRF700X_PROMISC_DATA_RX, then the Zephyr CONFIG_NET_PROMISCUOUS_MODE needs to be enabled too in order to avoid linking failure. Signed-off-by: Jukka Rissanen <[email protected]>
The nrf7002ek and nrf7002ek_nrf7001 shields had memory overflow of 532 bytes so adjust net RX and TX stack sizes so that the station sample is able to run. Signed-off-by: Jukka Rissanen <[email protected]>
Do not use BSD socket API names in the samples as they depend on various Posix config options that we do not really need here. Signed-off-by: Jukka Rissanen <[email protected]>
Using memcpy to copy strings which are shorter than the requested copy length gives compiler warnings about exceeding array bounds, for instance: error: 'memcpy' forming offset 19 is out of the bounds [0, 19] Therefore, use strncpy() instead. Signed-off-by: Robert Lubos <[email protected]>
Implicit promotion from float to double type now results in a compilation warning, treated by CI as an error, hence use explicit type cast wherever applicable. Signed-off-by: Robert Lubos <[email protected]>
Add initialization stub for LwM2M_***_INIT() macros to work. Remove CONFIG_LWM2M_FIRMWARE_UPDATE_OBJ_SUPPORT=y as it is already directly included in CMakeListst.txt Signed-off-by: Seppo Takalo <[email protected]>
rlubos
force-pushed
the
upmerge-01-03-2024
branch
from
March 6, 2024 12:41
40d15cb
to
15652fe
Compare
cherry-picked into upmerge branch, thanks |
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.
Add initialization stub for LwM2M_***_INIT() macros to work.
Remove CONFIG_LWM2M_FIRMWARE_UPDATE_OBJ_SUPPORT=y as it is already directly included in CMakeListst.txt