Skip to content
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

manifest: update sdk-zephyr to include comparator #18222

Conversation

bjarki-andreasen
Copy link
Contributor

Update sdk-zephyr to include comparator drivers and subsys

Update sdk-zephyr to include comparator drivers and subsys

Signed-off-by: Bjarki Arge Andreasen <[email protected]>
@bjarki-andreasen bjarki-andreasen requested a review from a team as a code owner October 25, 2024 13:53
@github-actions github-actions bot added manifest changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. labels Oct 25, 2024
@NordicBuilder
Copy link
Contributor

The following west manifest projects have been modified in this Pull Request:

Name Old Revision New Revision Diff
zephyr nrfconnect/sdk-zephyr@33919fc (main) nrfconnect/sdk-zephyr#2132 nrfconnect/sdk-zephyr#2132/files

Note: This message is automatically posted and updated by the Manifest GitHub Action.

@NordicBuilder
Copy link
Contributor

NordicBuilder commented Oct 25, 2024

CI Information

To view the history of this post, clich the 'edited' button above
Build number: 2

Inputs:

Sources:

sdk-nrf: PR head: f906a7c2b90560309012169fb30850b9f8f72c53
zephyr: PR head: 46812bf53363f9aa40b75c5e45ababcf1165af84

more details

sdk-nrf:

PR head: f906a7c2b90560309012169fb30850b9f8f72c53
merge base: b24793a7c02e5ae7a72bb74b32e06e70a89ab402
target head (main): d290578a5c17cbbb23578f299c7afc329dc7af25
Diff

zephyr:

PR head: 46812bf53363f9aa40b75c5e45ababcf1165af84
merge base: 33919fc981c12469ea96f987c23b90bfa5a8ebea
target head (main): 33919fc981c12469ea96f987c23b90bfa5a8ebea
Diff

Github labels

Enabled Name Description
ci-disabled Disable the ci execution
ci-all-test Run all of ci, no test spec filtering will be done
ci-force-downstream Force execution of downstream even if twister fails
ci-run-twister Force run twister
ci-run-zephyr-twister Force run zephyr twister
List of changed files detected by CI (88)
west.yml
zephyr
│  ├── MAINTAINERS.yml
│  ├── doc
│  │  ├── hardware
│  │  │  ├── peripherals
│  │  │  │  ├── comparator.rst
│  │  │  │  │ index.rst
│  │  ├── releases
│  │  │  ├── migration-guide-4.0.rst
│  │  │  │ release-notes-4.0.rst
│  ├── drivers
│  │  ├── CMakeLists.txt
│  │  ├── Kconfig
│  │  ├── comparator
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.fake_comp
│  │  │  ├── Kconfig.mcux_acmp
│  │  │  ├── Kconfig.nrf_comp
│  │  │  ├── Kconfig.nrf_lpcomp
│  │  │  ├── Kconfig.shell
│  │  │  ├── comparator_fake_comp.c
│  │  │  ├── comparator_handlers.c
│  │  │  ├── comparator_mcux_acmp.c
│  │  │  ├── comparator_nrf_comp.c
│  │  │  ├── comparator_nrf_lpcomp.c
│  │  │  │ comparator_shell.c
│  │  ├── sensor
│  │  │  ├── nxp
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── mcux_acmp
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ mcux_acmp.c
│  ├── dts
│  │  ├── arm
│  │  │  ├── nordic
│  │  │  │  ├── nrf52810.dtsi
│  │  │  │  ├── nrf52811.dtsi
│  │  │  │  ├── nrf52820.dtsi
│  │  │  │  ├── nrf52832.dtsi
│  │  │  │  ├── nrf52833.dtsi
│  │  │  │  ├── nrf52840.dtsi
│  │  │  │  │ nrf5340_cpuapp_peripherals.dtsi
│  │  │  ├── nxp
│  │  │  │  ├── nxp_ke1xf.dtsi
│  │  │  │  ├── nxp_ke1xz.dtsi
│  │  │  │  ├── nxp_rt118x.dtsi
│  │  │  │  │ nxp_rt11xx.dtsi
│  │  ├── bindings
│  │  │  ├── comparator
│  │  │  │  ├── nordic,nrf-comp.yaml
│  │  │  │  ├── nordic,nrf-lpcomp.yaml
│  │  │  │  ├── nxp,kinetis-acmp.yaml
│  │  │  │  │ zephyr,comp-fake.yaml
│  │  │  ├── sensor
│  │  │  │  ├── nordic,nrf-comp.yaml
│  │  │  │  ├── nordic,nrf-lpcomp.yaml
│  │  │  │  │ nxp,kinetis-acmp.yaml
│  │  ├── common
│  │  │  ├── nordic
│  │  │  │  ├── nrf54h20.dtsi
│  │  │  │  ├── nrf54l15.dtsi
│  │  │  │  │ nrf9280.dtsi
│  ├── include
│  │  ├── zephyr
│  │  │  ├── drivers
│  │  │  │  ├── comparator.h
│  │  │  │  ├── comparator
│  │  │  │  │  ├── fake_comp.h
│  │  │  │  │  ├── mcux_acmp.h
│  │  │  │  │  ├── nrf_comp.h
│  │  │  │  │  │ nrf_lpcomp.h
│  ├── modules
│  │  ├── hal_nxp
│  │  │  │ Kconfig
│  ├── samples
│  │  ├── sensor
│  │  │  ├── mcux_acmp
│  │  │  │  ├── prj.conf
│  │  │  │  │ sample.yaml
│  ├── tests
│  │  ├── drivers
│  │  │  ├── build_all
│  │  │  │  ├── comparator
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── mcux_acmp
│  │  │  │  │  │  ├── mimxrt1176_mux_dac.dts
│  │  │  │  │  │  ├── mimxrt1176_mux_mux.dts
│  │  │  │  │  │  ├── mke15z7_mux_dac.dts
│  │  │  │  │  │  ├── mke15z7_mux_mux.dts
│  │  │  │  │  │  │ mke15z7_pinctrl.dtsi
│  │  │  │  │  ├── nrf_comp
│  │  │  │  │  │  ├── diff.overlay
│  │  │  │  │  │  ├── se.overlay
│  │  │  │  │  │  │ se_aref.overlay
│  │  │  │  │  ├── nrf_lpcomp
│  │  │  │  │  │  ├── ext_ref.overlay
│  │  │  │  │  │  │ int_ref.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── comparator
│  │  │  │  ├── gpio_loopback
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── frdm_ke15z.overlay
│  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── snippets
│  │  │  │  │  │  ├── nrf_comp
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │ snippet.yml
│  │  │  │  │  │  ├── nrf_lpcomp
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │ snippet.yml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ test.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── shell
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── app.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ test.c
│  │  │  │  │  │ testcase.yaml

Outputs:

Toolchain

Version: add720b6d9
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:add720b6d9_912848a074

Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped; ⚠️ Quarantine

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ✅ Build twister
    • sdk-nrf test count: 86
    • sdk-zephyr test count: 6288
  • ✅ Integration tests
    • ✅ test_ble_nrf_config
    • ✅ test-fw-nrfconnect-ble_samples
    • ✅ test-fw-nrfconnect-nrf-iot_cloud
    • ✅ test-fw-nrfconnect-nrf-iot_thingy91
    • ✅ test-fw-nrfconnect-nrf_crypto
    • ✅ test-fw-nrfconnect-rs
    • ✅ test-fw-nrfconnect-fem
    • ✅ test-fw-nrfconnect-tfm
    • ✅ test-low-level
    • ✅ test-sdk-dfu
Disabled integration tests
    • desktop52_verification
    • doc-internal
    • test-fw-nrfconnect-apps
    • test-fw-nrfconnect-ble_mesh
    • test-fw-nrfconnect-boot
    • test-fw-nrfconnect-chip
    • test-fw-nrfconnect-nfc
    • test-fw-nrfconnect-nrf-iot_libmodem-nrf
    • test-fw-nrfconnect-nrf-iot_lwm2m
    • test-fw-nrfconnect-nrf-iot_mosh
    • test-fw-nrfconnect-nrf-iot_nrf_provisioning
    • test-fw-nrfconnect-nrf-iot_positioning
    • test-fw-nrfconnect-nrf-iot_samples
    • test-fw-nrfconnect-nrf-iot_zephyr_lwm2m
    • test-fw-nrfconnect-proprietary_esb
    • test-fw-nrfconnect-ps
    • test-fw-nrfconnect-rpc
    • test-fw-nrfconnect-thread
    • test-fw-nrfconnect-zigbee
    • test-sdk-audio
    • test-sdk-find-my
    • test-sdk-mcuboot
    • test-sdk-pmic-samples
    • test-sdk-sidewalk
    • test-sdk-wifi

Note: This message is automatically posted and updated by the CI

Copy link

github-actions bot commented Dec 7, 2024

This pull request has been marked as stale because it has been open (more than) 30 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this pull request will automatically be closed in 7 days. Note, that you can always re-open a closed pull request at any time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. DNM manifest manifest-zephyr Stale
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants