File tree Expand file tree Collapse file tree 6 files changed +47
-38
lines changed
samples/nrf_rpc/protocols_serialization/server/snippets Expand file tree Collapse file tree 6 files changed +47
-38
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -12,9 +12,6 @@ boards:
1212 nrf52840dk/nrf52840 :
1313 append :
1414 EXTRA_DTC_OVERLAY_FILE : boards/nrf52840dk_nrf52840.overlay
15- nrf54l15pdk/nrf54l15/cpuapp :
16- append :
17- EXTRA_DTC_OVERLAY_FILE : boards/nrf54l15pdk_nrf54l15_cpuapp.overlay
1815 nrf54l15dk/nrf54l15/cpuapp :
1916 append :
2017 EXTRA_DTC_OVERLAY_FILE : boards/nrf54l15dk_nrf54l15_cpuapp.overlay
Original file line number Diff line number Diff line change 1+ /* Copyright (c) 2024 Nordic Semiconductor ASA
2+ *
3+ * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
4+ */
5+
6+ / {
7+ openthread_config: openthread {
8+ compatible = "openthread,config";
9+ diag-gpios = <&gpio0 13 GPIO_ACTIVE_LOW>, // LED 1
10+ <&gpio0 14 GPIO_ACTIVE_LOW>, // LED 2
11+ <&gpio0 15 GPIO_ACTIVE_LOW>, // LED 3
12+ <&gpio0 16 GPIO_ACTIVE_LOW>, // LED 4
13+ <&gpio0 11 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>, // Button 1
14+ <&gpio0 12 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>, // Button 2
15+ <&gpio0 24 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>, // Button 3
16+ <&gpio0 25 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; // Button 4
17+ };
18+ };
Original file line number Diff line number Diff line change 1+ /* Copyright (c) 2024 Nordic Semiconductor ASA
2+ *
3+ * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
4+ */
5+
6+ / {
7+ openthread_config: openthread {
8+ compatible = "openthread,config";
9+ diag-gpios = <&gpio2 9 GPIO_ACTIVE_HIGH>, // LED 0
10+ <&gpio1 10 GPIO_ACTIVE_HIGH>, // LED 1
11+ <&gpio2 7 GPIO_ACTIVE_HIGH>, // LED 2
12+ <&gpio1 14 GPIO_ACTIVE_HIGH>, // LED 3
13+ <&gpio1 13 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>, // Button 0
14+ <&gpio1 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>, // Button 1
15+ <&gpio1 8 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>, // Button 2
16+ <&gpio0 4 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; // Button 3
17+ };
18+ };
Original file line number Diff line number Diff line change @@ -17,3 +17,6 @@ CONFIG_OPENTHREAD_RPC_SERVER=y
1717CONFIG_OPENTHREAD_MANUAL_START=y
1818CONFIG_NET_BUF_RX_COUNT=80
1919CONFIG_NET_BUF_TX_COUNT=80
20+
21+ # OpenThread "diag" command dependencies
22+ CONFIG_GPIO_GET_DIRECTION=y
Original file line number Diff line number Diff line change 77name : openthread
88append :
99 EXTRA_CONF_FILE : openthread.conf
10+
11+ boards :
12+ nrf54l15dk/nrf54l15/cpuapp :
13+ append :
14+ EXTRA_DTC_OVERLAY_FILE : boards/nrf54l15dk_nrf54l15_cpuapp.overlay
15+ nrf52840dk/nrf52840 :
16+ append :
17+ EXTRA_DTC_OVERLAY_FILE : boards/nrf52840dk_nrf52840.overlay
You can’t perform that action at this time.
0 commit comments