boards: nrf54l15pdk: set default pdk to 0.3.0

Replace default pdk board from 0.2.1 to 0.3.0

Signed-off-by: Bartosz Sokolski <bartosz.sokolski@nordicsemi.no>
This commit is contained in:
Bartosz Sokolski 2024-05-21 02:16:37 +02:00 committed by Anas Nashif
commit 852f452b03
7 changed files with 26 additions and 39 deletions

View file

@ -8,7 +8,7 @@ board:
cpucluster: cpuflpr cpucluster: cpuflpr
revision: revision:
format: major.minor.patch format: major.minor.patch
default: "0.2.1" default: "0.3.0"
revisions: revisions:
- name: "0.2.1" - name: "0.2.1"
- name: "0.3.0" - name: "0.3.0"

View file

@ -10,15 +10,15 @@
leds { leds {
compatible = "gpio-leds"; compatible = "gpio-leds";
led0: led_0 { led0: led_0 {
gpios = <&gpio0 4 GPIO_ACTIVE_HIGH>; gpios = <&gpio2 9 GPIO_ACTIVE_HIGH>;
label = "Green LED 0"; label = "Green LED 0";
}; };
led1: led_1 { led1: led_1 {
gpios = <&gpio1 8 GPIO_ACTIVE_HIGH>; gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>;
label = "Green LED 1"; label = "Green LED 1";
}; };
led2: led_2 { led2: led_2 {
gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>; gpios = <&gpio2 7 GPIO_ACTIVE_HIGH>;
label = "Green LED 2"; label = "Green LED 2";
}; };
led3: led_3 { led3: led_3 {
@ -30,22 +30,22 @@
buttons { buttons {
compatible = "gpio-keys"; compatible = "gpio-keys";
button0: button_0 { button0: button_0 {
gpios = <&gpio1 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; gpios = <&gpio1 13 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "Push button 0"; label = "Push button 0";
zephyr,code = <INPUT_KEY_0>; zephyr,code = <INPUT_KEY_0>;
}; };
button1: button_1 { button1: button_1 {
gpios = <&gpio1 10 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; gpios = <&gpio1 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "Push button 1"; label = "Push button 1";
zephyr,code = <INPUT_KEY_1>; zephyr,code = <INPUT_KEY_1>;
}; };
button2: button_2 { button2: button_2 {
gpios = <&gpio2 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; gpios = <&gpio1 8 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "Push button 2"; label = "Push button 2";
zephyr,code = <INPUT_KEY_2>; zephyr,code = <INPUT_KEY_2>;
}; };
button3: button_3 { button3: button_3 {
gpios = <&gpio2 10 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; gpios = <&gpio0 4 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "Push button 3"; label = "Push button 3";
zephyr,code = <INPUT_KEY_3>; zephyr,code = <INPUT_KEY_3>;
}; };

View file

@ -5,15 +5,15 @@
*/ */
&led0 { &led0 {
gpios = <&gpio2 9 GPIO_ACTIVE_HIGH>; gpios = <&gpio0 4 GPIO_ACTIVE_HIGH>;
}; };
&led1 { &led1 {
gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>; gpios = <&gpio1 8 GPIO_ACTIVE_HIGH>;
}; };
&led2 { &led2 {
gpios = <&gpio2 7 GPIO_ACTIVE_HIGH>; gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
}; };
&led3 { &led3 {
@ -21,17 +21,17 @@
}; };
&button0 { &button0 {
gpios = <&gpio1 13 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
};
&button1 {
gpios = <&gpio1 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; gpios = <&gpio1 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
}; };
&button1 {
gpios = <&gpio1 10 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
};
&button2 { &button2 {
gpios = <&gpio1 8 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; gpios = <&gpio2 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
}; };
&button3 { &button3 {
gpios = <&gpio0 4 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; gpios = <&gpio2 10 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
}; };

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
#include "nrf54l15pdk_nrf54l15_common_0_3_0.dtsi" #include "nrf54l15pdk_nrf54l15_common_0_2_1.dtsi"

View file

@ -1,20 +0,0 @@
# Copyright (c) 2024 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
identifier: nrf54l15pdk@0.3.0/nrf54l15/cpuapp
name: nRF54l15-PDK-nRF54l15-Application
type: mcu
arch: arm
toolchain:
- gnuarmemb
- xtools
- zephyr
ram: 256
flash: 1536
supported:
- counter
- gpio
- i2c
- spi
- watchdog
- i2s

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
#include "nrf54l15pdk_nrf54l15_common_0_3_0.dtsi" #include "nrf54l15pdk_nrf54l15_common_0_2_1.dtsi"

View file

@ -0,0 +1,7 @@
/*
* Copyright (c) 2024 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "nrf54l15pdk_nrf54l15_common_0_2_1.dtsi"