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

treewide: align with HWMv2 #543

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
boards_to_test:
type: string
required: false
default: '["nrf52840dk_nrf52840", "nrf5340dk_nrf5340_cpuapp", "nrf54l15pdk_nrf54l15_cpuapp"]'
default: '["nrf52840dk/nrf52840", "nrf5340dk/nrf5340/cpuapp", "nrf54l15pdk/nrf54l15/cpuapp"]'

jobs:
build_manual_tests:
Expand Down
24 changes: 19 additions & 5 deletions .github/workflows/run_tests_dut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,18 @@ jobs:
source zephyr/zephyr-env.sh
west twister --platform ${{inputs.target_board}} --testsuite-root sidewalk --filter runnable --shuffle-tests --shuffle-tests-seed 123 --inline-logs --overflow-as-errors -vvv --prep-artifacts-for-testing --package-artifacts PACKAGE_ARTIFACTS_${{ inputs.subset }}.tar.bz2 --subset ${{ inputs.subset }}/${{ inputs.max_subsets }}

- name: Replace slash with underscore
id: replace
run: |
TARGET_BOARD=${{ inputs.target_board }}
TARGET_BOARD=${TARGET_BOARD//\//_}
echo "::set-output name=target_board::$TARGET_BOARD"

- name: Save build artifacts
uses: actions/upload-artifact@v4
with:
path: PACKAGE_ARTIFACTS_${{ inputs.subset }}.tar.bz2
name: DUT_artifacts_${{inputs.target_board}}_${{ inputs.subset }}
name: DUT_artifacts_${{steps.replace.outputs.target_board}}_${{ inputs.subset }}

run_dut_ut:
needs: [build_dut_tests]
Expand Down Expand Up @@ -114,14 +121,21 @@ jobs:
west update -n -o=--depth=1 --path-cache /workdir/
cd sidewalk; git checkout `cat /workdir/sidewalk_hash`; rm -rf /workdir/sidewalk_hash

- name: Replace slash with underscore
id: replace
run: |
TARGET_BOARD=${{ inputs.target_board }}
TARGET_BOARD=${TARGET_BOARD//\//_}
echo "::set-output name=target_board::$TARGET_BOARD"

- name: Install Python dependencies
run: |
python3 -m pip install -r sidewalk/scripts/ci/requirements.txt

- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: DUT_artifacts_${{inputs.target_board}}_${{ inputs.subset }}
name: DUT_artifacts_${{steps.replace.outputs.target_board}}_${{ inputs.subset }}

- name: Unwrap artifacts
run: |
Expand All @@ -134,15 +148,15 @@ jobs:

- name: rename_twister_xml_report
run: |
mv twister-out/twister.xml twister-out/${{inputs.target_board}}_${{ inputs.subset }}_twister.xml
mv twister-out/twister.xml twister-out/${{steps.replace.outputs.target_board}}_${{ inputs.subset }}_twister.xml

- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: tests-dut_result_${{inputs.target_board}}_${{ inputs.subset }}
name: tests-dut_result_${{steps.replace.outputs.target_board}}_${{ inputs.subset }}
path: |
twister-out/${{inputs.target_board}}_${{ inputs.subset }}_twister.xml
twister-out/${{steps.replace.outputs.target_board}}_${{ inputs.subset }}_twister.xml
twister-out/**/handler.log
twister-out/**/device.log
twister-out/**/zephyr.hex
Expand Down
8 changes: 4 additions & 4 deletions doc/migration_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ The following table is an example of the new build commands used for the `nRF528
+----------------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------------+
| Sample | Old commands | New commands |
+============================+=========================================================+==============================================================================================+
| Template sub-GHz | ``west build -b nrf52840dk_nrf52840 template_subghz`` | ``west build -b nrf52840dk_nrf52840 sid_end_device`` |
| Template sub-GHz | ``west build -b nrf52840dk/nrf52840 template_subghz`` | ``west build -b nrf52840dk/nrf52840 sid_end_device`` |
+----------------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------------+
| Template Bluetooth LE only | ``west build -b nrf52840dk_nrf52840 template_ble`` | ``west build -b nrf52840dk_nrf52840 sid_end_device -- -DCONFIG_SIDEWALK_SUBGHZ_SUPPORT=y`` |
| Template Bluetooth LE only | ``west build -b nrf52840dk/nrf52840 template_ble`` | ``west build -b nrf52840dk/nrf52840 sid_end_device -- -DCONFIG_SIDEWALK_SUBGHZ_SUPPORT=y`` |
+----------------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------------+
| Sensor monitoring demo | ``west build -b nrf52840dk_nrf52840 sensor_monitoring`` | ``west build -b nrf52840dk_nrf52840 sid_end_device -- -DOVERLAY_CONFIG="overlay-demo.conf"`` |
| Sensor monitoring demo | ``west build -b nrf52840dk/nrf52840 sensor_monitoring`` | ``west build -b nrf52840dk/nrf52840 sid_end_device -- -DOVERLAY_CONFIG="overlay-demo.conf"`` |
+----------------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------------+
| Device under test | ``west build -b nrf52840dk_nrf52840 sid_dut`` | ``west build -b nrf52840dk_nrf52840 sid_end_device -- -DOVERLAY_CONFIG="overlay-dut.conf"`` |
| Device under test | ``west build -b nrf52840dk/nrf52840 sid_dut`` | ``west build -b nrf52840dk/nrf52840 sid_end_device -- -DOVERLAY_CONFIG="overlay-dut.conf"`` |
+----------------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------------+

User interface
Expand Down
8 changes: 4 additions & 4 deletions doc/ncs_links_update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ links=( ".. _nRF Connect SDK: https://developer.nordicsemi.com/nRF_Connect_SDK/d
".. _Getting started with nRF54L Series: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/nrf/device_guides/nrf54l.html"
".. _Zephyr toolchain: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/nrf/gs_installing.html#install-a-toolchain"
".. _nRF Connect SDK Getting started: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/nrf/getting_started.html"
".. _nRF52840dk_nrf52840: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/zephyr/boards/arm/nrf52840dk_nrf52840/doc/index.html"
".. _nrf5340dk_nrf5340: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/zephyr/boards/arm/nrf5340dk_nrf5340/doc/index.html#nrf5340dk-nrf5340"
".. _thingy53_nrf5340: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/zephyr/boards/arm/thingy53_nrf5340/doc/index.html#thingy53-nrf5340"
".. _nrf54l15pdk_nrf54l15: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/zephyr/boards/arm/nrf54l15pdk_nrf54l15/doc/index.html"
".. _nRF52840dk_nrf52840: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/zephyr/boards/nordic/nrf52840dk/doc/index.html"
".. _nrf5340dk_nrf5340: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/zephyr/boards/nordic/nrf5340dk/doc/index.html#nrf5340dk-nrf5340"
".. _thingy53_nrf5340: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/zephyr/boards/nordic/thingy53/doc/index.html#thingy53-nrf5340"
".. _nrf54l15pdk_nrf54l15: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/zephyr/boards/nordic/nrf54l15pdk/doc/index.html"
".. _Building and programming an application: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/nrf/getting_started/programming.html#gs-programming"
".. _Testing and debugging an application: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/nrf/getting_started/testing.html#gs-testing"
".. _Bootloader and DFU solutions for NCS: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/<NCS_TAG>/nrf/app_bootloaders.html"
Expand Down
26 changes: 13 additions & 13 deletions doc/samples/sid_end_device.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ Requirements

This sample supports the following development kits:

+--------------------+----------+----------------------------+----------------------------------+
| Hardware platforms | PCA | Board name | Build target |
+====================+==========+============================+==================================+
| nRF52840 DK | PCA10056 | `nrf52840dk_nrf52840`_ | ``nrf52840dk_nrf52840`` |
+--------------------+----------+----------------------------+----------------------------------+
| nRF5340 DK | PCA10095 | `nrf5340dk_nrf5340`_ | ``nrf5340dk_nrf5340_cpuapp`` |
+--------------------+----------+----------------------------+----------------------------------+
| Thingy53 | PCA20053 | `thingy53_nrf5340`_ | ``thingy53_nrf5340_cpuapp`` |
+--------------------+----------+----------------------------+----------------------------------+
| nRF54L15 PDK `*` | PCA10156 | `nrf54l15pdk_nrf54l15`_ | ``nrf54l15pdk_nrf54l15_cpuapp`` |
+--------------------+----------+----------------------------+----------------------------------+
+--------------------+----------+-------------------+----------------------------------+
| Hardware platforms | PCA | Board name | Build target |
+====================+==========+===================+==================================+
| nRF52840 DK | PCA10056 | `nrf52840dk`_ | ``nrf52840dk/nrf52840`` |
+--------------------+----------+-------------------+----------------------------------+
| nRF5340 DK | PCA10095 | `nrf5340dk`_ | ``nrf5340dk/nrf5340/cpuapp`` |
+--------------------+----------+-------------------+----------------------------------+
| Thingy53 | PCA20053 | `thingy53`_ | ``thingy53/nrf5340/cpuapp`` |
+--------------------+----------+-------------------+----------------------------------+
| nRF54L15 PDK `*` | PCA10156 | `nrf54l15pdk`_ | ``nrf54l15pdk/nrf54l15/cpuapp`` |
+--------------------+----------+-------------------+----------------------------------+

`*` The `nRF54L15 PDK`_ does not support LoRa and FSK configurations.

Expand Down Expand Up @@ -123,7 +123,7 @@ For example:

.. code-block:: console

$ west build -b nrf52840dk_nrf52840 -- -DCONF_FILE=prj_release.conf
$ west build -b nrf52840dk/nrf52840 -- -DCONF_FILE=prj_release.conf

.. note::
Selecting a build type is optional.
Expand Down Expand Up @@ -152,7 +152,7 @@ For example, to build the Sidewalk DUT configuration overlay, run the following

.. code-block:: console

$ west build -b nrf52840dk_nrf52840 -- -DOVERLAY_CONFIG="overlay-dut.conf"
$ west build -b nrf52840dk/nrf52840 -- -DOVERLAY_CONFIG="overlay-dut.conf"

See the details on running and testing individual variants, as well as enabling available Kconfig options:

Expand Down
2 changes: 1 addition & 1 deletion doc/samples/variants/hello.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ To start Sidewalk, do the following:
----------------------------------------------------------------
sidewalk_fork_point = af5d608303eb03465f35e369ef22ad6c02564ac6
build time = 2023-03-14 15:00:00.000000+00:00
board = nrf52840dk_nrf52840
board = nrf52840dk
----------------------------------------------------------------
[00:00:00.001,373] <inf> application_state: working = true
[00:00:00.055,480] <inf> sidewalk_app: Sidewalk link switch to BLE
Expand Down
4 changes: 2 additions & 2 deletions doc/samples/variants/sensor_monitoring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ For example:

.. code-block:: console

$ west build -b nrf5340dk_nrf5340_cpuapp -- -DCONFIG_SID_END_DEVICE_SENSOR_MONITORING=y -DCONFIG_SIDEWALK_SUBGHZ_SUPPORT=n
$ west build -b nrf5340dk/nrf5340/cpuapp -- -DCONFIG_SID_END_DEVICE_SENSOR_MONITORING=y -DCONFIG_SIDEWALK_SUBGHZ_SUPPORT=n

User Interface
**************
Expand Down Expand Up @@ -86,7 +86,7 @@ You should see the following output:
----------------------------------------------------------------
sidewalk_fork_point = af5d608303eb03465f35e369ef22ad6c02564ac6
build time = 2023-03-14 15:00:00.000000+00:00
board = nrf52840dk_nrf52840
board = nrf52840dk
----------------------------------------------------------------
[00:00:00.001,373] <inf> application_state: working = true
[00:00:00.055,480] <inf> sidewalk_app: Sidewalk link switch to BLE
Expand Down
17 changes: 8 additions & 9 deletions samples/sid_end_device/sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ sample:
common:
build_only: true
platform_allow:
- nrf52840dk_nrf52840
- nrf5340dk_nrf5340_cpuapp
- nrf54l15pdk_nrf54l15_cpuapp
- nrf52840dk/nrf52840
- nrf5340dk/nrf5340/cpuapp
- nrf54l15pdk/nrf54l15/cpuapp
integration_platforms:
- nrf52840dk_nrf52840
- nrf5340dk_nrf5340_cpuapp
- nrf54l15pdk_nrf54l15_cpuapp
- nrf52840dk/nrf52840
- nrf5340dk/nrf5340/cpuapp
- nrf54l15pdk/nrf54l15/cpuapp
tests:
sample.sidewalk.hello:
extra_configs:
Expand Down Expand Up @@ -45,19 +45,18 @@ tests:

sample.sidewalk.demo.ble_only:
platform_allow:
- thingy53_nrf5340_cpuapp
- thingy53/nrf5340/cpuapp
extra_args:
OVERLAY_CONFIG="overlay-demo.conf"
extra_configs:
- CONFIG_SIDEWALK_SUBGHZ_SUPPORT=n
integration_platforms:
- thingy53_nrf5340_cpuapp
- thingy53/nrf5340/cpuapp
tags: Sidewalk demo BLE

sample.sidewalk.dut:
extra_args:
OVERLAY_CONFIG="overlay-dut.conf"
extra_configs:
- CONFIG_SIDEWALK_FILE_TRANSFER=y

tags: Sidewalk cli
20 changes: 10 additions & 10 deletions scripts/ci/fill_hardware_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
MIN_PCA10056_REVISION = "2.0.0"

pca_to_board = {
"PCA10056": "nrf52840dk_nrf52840",
"PCA10100": "nrf52833dk_nrf52833",
"PCA10112": "nrf21540dk_nrf52840",
"PCA10059": "nrf52840dongle_nrf52840",
"PCA10095": "nrf5340dk_nrf5340_cpuapp",
"PCA20053": "thingy53_nrf5340_cpuapp",
"PCA10156": "nrf54l15pdk_nrf54l15_cpuapp"
"PCA10056": "nrf52840dk/nrf52840",
"PCA10100": "nrf52833dk/nrf52833",
"PCA10112": "nrf21540dk/nrf52840",
"PCA10059": "nrf52840dongle/nrf52840",
"PCA10095": "nrf5340dk/nrf5340/cpuapp",
"PCA20053": "thingy53/nrf5340/cpuapp",
"PCA10156": "nrf54l15pdk/nrf54l15/cpuapp"
}

family_to_pca = {
Expand Down Expand Up @@ -118,7 +118,7 @@ def main(hardware_map_path: str, userdev_conf_path: str):
to_remove.append(hw_entry)
continue
# Collect all entries for nRF53 DKs
if "nrf5340dk_nrf5340_cpuapp" in hw_entry["platform"]:
if "nrf5340dk/nrf5340/cpuapp" in hw_entry["platform"]:
# If older nRF53 board (3 serial IFs), remove first and second serial interface
if segger.startswith("9601"):
logging.info(
Expand All @@ -136,11 +136,11 @@ def main(hardware_map_path: str, userdev_conf_path: str):
else:
logging.warning(
f"Unrecognized version of nRF53 board {segger}")
elif "nrf52840dk_nrf52840" in hw_entry["platform"]:
elif "nrf52840dk/nrf52840" in hw_entry["platform"]:
# If newer nRF52 board, remove first serial interface
if segger.startswith("1050") and "-if02" in hw_entry["serial"]:
to_remove.append(hw_entry)
elif "nrf54l15pdk_nrf54l15_cpuapp" in hw_entry["platform"]:
elif "nrf54l15pdk/nrf54l15/cpuapp" in hw_entry["platform"]:
# If nRF54l board, remove only first serial interface
if segger.startswith("1057") and "-if00" in hw_entry["serial"]:
to_remove.append(hw_entry)
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/run_ut.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ descr () {
echo " -u run unit tests on native_posix. Use testcase-root SIDEWALK_SDK_DIR/tests/unit_tests"
echo " -f run unit tests functional on nRF HW. Use testcase-root SIDEWALK_SDK_DIR/tests/functional"
echo " -a run build or tests only for entries with selected tag. It can be passed multiple times, ones per tag. e.g. -a Sidewalk -a Sidewalk_cli"
echo " -p run build or tests only for selected platforms. It can be passed multiple times, e.g. -p nrf5340dk_nrf5340_cpuapp"
echo " -p run build or tests only for selected platforms. It can be passed multiple times, e.g. -p nrf5340dk/nrf5340/cpuapp"
echo ""
}

Expand Down
4 changes: 2 additions & 2 deletions scripts/git_hooks/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause

# Run unit tests nad tests on native_posix. Tests for nrf52840dk_nrf52840 are only build.
# Run unit tests nad tests on native_posix. Tests for nrf52840dk/nrf52840 are only build.
# This script takes very long time, so it is not enabled by default ( first run ~15min, cachced builds ~5min)
# To enable this hook create symbolic link to sidewalk/.git/hook/pre-push

SIDEWALK_PATH=$(git rev-parse --show-toplevel)
TWISTER_BIN=$SIDEWALK_PATH/../zephyr/scripts/twister

$TWISTER_BIN -p native_posix -p unit_testing -p nrf52840dk_nrf52840 -n --enable-asan --enable-lsan --clobber-output -T $SIDEWALK_PATH --tag Sidewalk
$TWISTER_BIN -p native_posix -p unit_testing -p nrf52840dk/nrf52840 -n --enable-asan --enable-lsan --clobber-output -T $SIDEWALK_PATH --tag Sidewalk
8 changes: 4 additions & 4 deletions tests/functional/critical_region/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
tests:
sidewalk.functional.critical_region:
platform_allow: nrf52840dk_nrf52840 nrf5340dk_nrf5340_cpuapp nrf54l15pdk_nrf54l15_cpuapp
platform_allow: nrf52840dk/nrf52840 nrf5340dk/nrf5340/cpuapp nrf54l15pdk/nrf54l15/cpuapp
integration_platforms:
- nrf52840dk_nrf52840
- nrf5340dk_nrf5340_cpuapp
- nrf54l15pdk_nrf54l15_cpuapp
- nrf52840dk/nrf52840
- nrf5340dk/nrf5340/cpuapp
- nrf54l15pdk/nrf54l15/cpuapp
8 changes: 4 additions & 4 deletions tests/functional/crypto/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
tests:
sidewalk.functional.crypto:
tags: Sidewalk
platform_allow: nrf52840dk_nrf52840 nrf5340dk_nrf5340_cpuapp nrf54l15pdk_nrf54l15_cpuapp
platform_allow: nrf52840dk/nrf52840 nrf5340dk/nrf5340/cpuapp nrf54l15pdk/nrf54l15/cpuapp
integration_platforms:
- nrf52840dk_nrf52840
- nrf5340dk_nrf5340_cpuapp
- nrf54l15pdk_nrf54l15_cpuapp
- nrf52840dk/nrf52840
- nrf5340dk/nrf5340/cpuapp
- nrf54l15pdk/nrf54l15/cpuapp
8 changes: 4 additions & 4 deletions tests/functional/interrupts/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
tests:
unity.sidewalk.functional.interrupts:
tags: Sidewalk
platform_allow: nrf52840dk_nrf52840 nrf5340dk_nrf5340_cpuapp nrf54l15pdk_nrf54l15_cpuapp
platform_allow: nrf52840dk/nrf52840 nrf5340dk/nrf5340/cpuapp nrf54l15pdk/nrf54l15/cpuapp
integration_platforms:
- nrf52840dk_nrf52840
- nrf5340dk_nrf5340_cpuapp
- nrf54l15pdk_nrf54l15_cpuapp
- nrf52840dk/nrf52840
- nrf5340dk/nrf5340/cpuapp
- nrf54l15pdk/nrf54l15/cpuapp
8 changes: 4 additions & 4 deletions tests/functional/mfg_storage/testcase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ tests:
sidewalk.functional.mfg_storage:
skip: true
tags: Sidewalk
platform_allow: nrf52840dk_nrf52840 nrf5340dk_nrf5340_cpuapp nrf54l15pdk_nrf54l15_cpuapp
platform_allow: nrf52840dk/nrf52840 nrf5340dk/nrf5340/cpuapp nrf54l15pdk/nrf54l15/cpuapp
integration_platforms:
- nrf52840dk_nrf52840
- nrf5340dk_nrf5340_cpuapp
- nrf54l15pdk_nrf54l15_cpuapp
- nrf52840dk/nrf52840
- nrf5340dk/nrf5340/cpuapp
- nrf54l15pdk/nrf54l15/cpuapp
8 changes: 4 additions & 4 deletions tests/functional/pal_delay/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
tests:
sidewalk.functional.delay:
platform_allow: nrf52840dk_nrf52840 nrf5340dk_nrf5340_cpuapp nrf54l15pdk_nrf54l15_cpuapp
platform_allow: nrf52840dk/nrf52840 nrf5340dk/nrf5340/cpuapp nrf54l15pdk/nrf54l15/cpuapp
integration_platforms:
- nrf52840dk_nrf52840
- nrf5340dk_nrf5340_cpuapp
- nrf54l15pdk_nrf54l15_cpuapp
- nrf52840dk/nrf52840
- nrf5340dk/nrf5340/cpuapp
- nrf54l15pdk/nrf54l15/cpuapp
tags: Sidewalk
8 changes: 4 additions & 4 deletions tests/functional/spi_bus/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
tests:
sidewalk.functional.spi_bus:
platform_allow: nrf52840dk_nrf52840 nrf5340dk_nrf5340_cpuapp nrf54l15pdk_nrf54l15_cpuapp
platform_allow: nrf52840dk/nrf52840 nrf5340dk/nrf5340/cpuapp nrf54l15pdk/nrf54l15/cpuapp
integration_platforms:
- nrf52840dk_nrf52840
- nrf5340dk_nrf5340_cpuapp
- nrf54l15pdk_nrf54l15_cpuapp
- nrf52840dk/nrf52840
- nrf5340dk/nrf5340/cpuapp
- nrf54l15pdk/nrf54l15/cpuapp
tags: Sidewalk
harness: ztest
harness_config:
Expand Down
Loading
Loading