forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
DRAFT: extension of the AB documentation #2
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
Closed
ahasztag
wants to merge
78
commits into
NCSDK-34934_mcuboot_ab_sample
from
NCSDK-34935_mcuboot_ab_docs
Closed
DRAFT: extension of the AB documentation #2
ahasztag
wants to merge
78
commits into
NCSDK-34934_mcuboot_ab_sample
from
NCSDK-34935_mcuboot_ab_docs
Conversation
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
Added support for USB CDC ACM trasnport layer for nRF54H20. JIRA: NCSDK-34868 Signed-off-by: Michał Strządała <[email protected]>
Automatically created by Github Action Signed-off-by: Nordic Builder <[email protected]>
Add test that confirms that package pin where SWD interface is located, can be used as an ordinary GPIO. Signed-off-by: Sebastian Głąb <[email protected]>
In wifi status, Current PHY TX rate incorrectly displayed as "*float*". Enable CONFIG_CBPRINTF_FP_SUPPORT to display actual WiFi TX rates instead of '*float*' placeholder. Signed-off-by: Kapil Bhatt <[email protected]>
Needed custom jlink script to get output from SWO. Signed-off-by: Piotr Kosycarz <[email protected]>
Add known issue about assertion in Host that can happen if sysworkq is blocked and app or host is trying to send sync command from any other thread. Signed-off-by: Pavel Vasilyev <[email protected]>
The Bluetooth stack requires larger BT_RX_STACK_SIZE for nRF54LX SoCs family and nRF54H20 due to higher memory requirements for crypto on these SoCs. The Kconfig was modified in couple of samples. The change was added for next SoCs based on these two platforms. Instead of that it should be a generic configuration is a target is nRF54LX or nRF54HX. Signed-off-by: Piotr Pryga <[email protected]>
The overlay was not needed, as partition manager is used for this platform. Signed-off-by: Artur Hadasz <[email protected]>
This commit introduces the changes required to support dfu target with nRF54H20. The dfu_target sample is also extended. Signed-off-by: Artur Hadasz <[email protected]>
This commit adds support for the nrf54l15dk/nrf54l15/cpuapp board in the dfu_target sample. Signed-off-by: Artur Hadasz <[email protected]>
Automatically created by Github Action Signed-off-by: Nordic Builder <[email protected]>
Reduces the size of MCUboot in this build Signed-off-by: Jamie McCrae <[email protected]>
Upgrade the Memfault Firmware SDK to version 1.29.0 to include a fix required to remove a Kconfig style issue. The redefinition includes a `default n`, which causes the Kconfig style check shared in zephyrproject-rtos/zephyr#94780 (comment) to fail. Kconfig style check script passes after this change. Additionally, confirmed that the Kconfig values are expected from building the samples/debug/memfault app for a nrf9160 target: - CONFIG_NRF_MODEM_LIB=y - CONFIG_MEMFAULT_HTTP_USES_MBEDTLS is not set Note this is a follow-on PR to nrfconnect#24402. Signed-off-by: Gillian Minnehan <[email protected]>
Regression. Signed-off-by: Piotr Kosycarz <[email protected]>
Update for enabling redirected S2RAM resume procedure from MCUboot to the application. Signed-off-by: Nordic Builder <[email protected]> Signed-off-by: Andrzej Puzdrowski <[email protected]> fix
Described configuration of S2RAM support by the MCUboot. Signed-off-by: Andrzej Puzdrowski <[email protected]>
Goes to piclibc, except for nrf54lm20dk which has an issue. Also fixes a wrong selection of a Kconfig which should be done at sysbuild level Signed-off-by: Jamie McCrae <[email protected]>
Ref: KRKNWK-20782 Signed-off-by: Dawid Przybylo <[email protected]>
MDS bluetooth sample depends on this. Signed-off-by: Piotr Kosycarz <[email protected]>
Automatically created by Github Action Signed-off-by: Nordic Builder <[email protected]>
nRF54LV10A has 4 instead of 8 SAADC channels. Signed-off-by: Michał Stasiak <[email protected]>
Fix rendering of documentation related to Fast Pair use-cases. Signed-off-by: Marek Pieta <[email protected]>
Added nRF54LM20A and nRF54LV10A to anomaly 30 current consumption test. Signed-off-by: Michał Stasiak <[email protected]>
…orms Run power consumtpion benchamrks on nrf52840 and nrf5340 Signed-off-by: Bartosz Miller <[email protected]>
The SoC Kconfig tree is already loaded, this prevents options being duplicated in menuconfig Signed-off-by: Jamie McCrae <[email protected]>
Adds a guard to not use something if it's not the expected SoC Signed-off-by: Jamie McCrae <[email protected]>
Automatically created by Github Action Signed-off-by: Nordic Builder <[email protected]>
This fixes an issue where the quality on the unused channels counted towards the number of channels with bad quality. Signed-off-by: Erik Sandgren <[email protected]>
The IFFT distance estimate algorithm should be able to handle missing channels. This commit removes the assumption that it would not. - Remove interpolation of IQ values for channels 23,24,25. Just set the IQs for these channels to 0. - Remove early return in `calculate_dist_ifft` when IQ values for one channel would be missing. The algo should handle this ok and we can still produce a distance estimate. Another change included in this commit is to resort to not doing any "left null compensation" in the specific case where: - The left_null_index is greater than the peak_index but not large enough for the left null compensation to result in a positive distance estimate. Previously this case would result in the distance estimate of 0. Signed-off-by: Erik Sandgren <[email protected]>
Improves the update frequency of distance estimates in channel_sounding_ras_initiator. This is accomplished by the following changes: - Add another sem `sem_distance_estimate_updated` which is given each time the distance estimates are updated. The main thread will take `sem_distance_estimate_updated` and print the new estimate. - Use `channel_map_repetition = 1` to make the CS procedure length shorter. I believe the benefit of having multiple measurements of th same channel in each procedure is less than having a faster procedure interval. - Lower the `subevent_len` to 16000 us. This is enough to fit all the steps of the CS procedure in a single subevent. - Lower the connection interval to 20 ms (from 50). With a CS procedure interval of 5 (or 10) this effectively means that there should be a new CS procedure and thus a new distance estimate every ~100 ms (or ~200 ms). Depending on if realtime ranging data is supported or not. Signed-off-by: Erik Sandgren <[email protected]>
Preserve specific error codes instead of mapping all failures to generic codes. Add error logging to help diagnose FOTA failures. Remove unnecessary image resets on download errors, allowing proper resume functionality with corrected offset calculation. Signed-off-by: Syver Haraldsen <[email protected]>
The ~40uA in s2ram was caused by the enabled console uart RX. Signed-off-by: Bartosz Miller <[email protected]>
Automatically created by Github Action Signed-off-by: Nordic Builder <[email protected]>
Automatically created by Github Action Signed-off-by: Nordic Builder <[email protected]>
Changed method to pass overlay config for MCUboot image to get the default configuration file from MCUboot repo. It enables logging, so nrfconnect#24579 can be reverted. Signed-off-by: Grzegorz Chwierut <[email protected]>
maciejpietras
approved these changes
Sep 18, 2025
The picolibc was enabled in mcuboot for nrf54lm20 internal configuration, what does not work and leads to mcuboot crash. Signed-off-by: Kamil Kasperczyk <[email protected]>
Updated samples: modem_shell, gnss, location Change integration test configurations that use use location services to use device UUID as device and cloud ID instead of current nrf-<IMEI> format. Signed-off-by: Matti Oksanen <[email protected]>
This sample demonstrates how to use the A/B functionality with MCUBoot. Signed-off-by: Artur Hadasz <[email protected]>
Add 3.1.1 release to main Signed-off-by: Richa Pandey <[email protected]>
Ref: NRFX-8425 Signed-off-by: Aymen LAOUINI <[email protected]>
Add the known issue text according to the identified bug. Signed-off-by: Jan Müller <[email protected]>
Define AUDIOPLL, an AUXPLL IP instance used by the TDM and PDM IP. PLL can be configured to set it's frequency based on marcros in nrf-audiopll.h. FICR not fully defined yet. Also added TDM node. Signed-off-by: David Jewsbury <[email protected]>
Enable audiopll (required by PDM and TDM) and setup frequency. Signed-off-by: David Jewsbury <[email protected]>
Runs on nrf7120 which has had support added for testing the auxpll. Signed-off-by: David Jewsbury <[email protected]>
Fix typos in nRF54H20-specific signing file to correctly pass the VID and CID values to the signing command in Direct XIP modes. Signed-off-by: Tomasz Chyrowicz <[email protected]>
Fixup for Quarantine samples for nrf54lm20dk/nrf54lm20a/cpuapp Signed-off-by: Sebastian Wezel <[email protected]>
The TX diagnostic mode can now be enabled with Kconfig. Signed-off-by: Rafał Kuźnia <[email protected]>
The TX diagnostic mode is needed to allow the PHY test tool to send arbitrary packets. Signed-off-by: Rafał Kuźnia <[email protected]>
There should be no space between if and the opening bracket. Signed-off-by: Rafał Kuźnia <[email protected]>
Added support for environment evaluation using the %ENVEVAL AT command introduced in nRF91x1 modem firmware v2.0.3. Signed-off-by: Tommi Kangas <[email protected]>
Added new shell command "link enveval" for performing environment evaluation. Environment evaluation is introduced in nRF91x1 modem firmware v2.0.3. Signed-off-by: Tommi Kangas <[email protected]>
Remove mention of devtag from the releases and maturity page. Requested by Shantha. Signed-off-by: divya pillai <[email protected]>
This commit adds support for nRF54L15 in the DFU A/B sample Signed-off-by: Artur Hadasz <[email protected]>
This commit extends the A/B sample documentation with more in-depth description of the A/B feature. Signed-off-by: Artur Hadasz <[email protected]>
ae7afd6 to
9ea86f2
Compare
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.
No description provided.