Commit 852f452b authored by Bartosz Sokolski's avatar Bartosz Sokolski Committed by Anas Nashif
Browse files

boards: nrf54l15pdk: set default pdk to 0.3.0



Replace default pdk board from 0.2.1 to 0.3.0

Signed-off-by: default avatarBartosz Sokolski <bartosz.sokolski@nordicsemi.no>
parent ed025b2f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ board:
      cpucluster: cpuflpr
  revision:
    format: major.minor.patch
    default: "0.2.1"
    default: "0.3.0"
    revisions:
    - name: "0.2.1"
    - name: "0.3.0"
+7 −7
Original line number Diff line number Diff line
@@ -10,15 +10,15 @@
	leds {
		compatible = "gpio-leds";
		led0: led_0 {
			gpios = <&gpio0 4 GPIO_ACTIVE_HIGH>;
			gpios = <&gpio2 9 GPIO_ACTIVE_HIGH>;
			label = "Green LED 0";
		};
		led1: led_1 {
			gpios = <&gpio1 8 GPIO_ACTIVE_HIGH>;
			gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>;
			label = "Green LED 1";
		};
		led2: led_2 {
			gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
			gpios = <&gpio2 7 GPIO_ACTIVE_HIGH>;
			label = "Green LED 2";
		};
		led3: led_3 {
@@ -30,22 +30,22 @@
	buttons {
		compatible = "gpio-keys";
		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";
			zephyr,code = <INPUT_KEY_0>;
		};
		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";
			zephyr,code = <INPUT_KEY_1>;
		};
		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";
			zephyr,code = <INPUT_KEY_2>;
		};
		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";
			zephyr,code = <INPUT_KEY_3>;
		};
+7 −7
Original line number Diff line number Diff line
@@ -5,15 +5,15 @@
 */

&led0 {
	gpios = <&gpio2 9 GPIO_ACTIVE_HIGH>;
	gpios = <&gpio0 4 GPIO_ACTIVE_HIGH>;
};

&led1 {
	gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>;
	gpios = <&gpio1 8 GPIO_ACTIVE_HIGH>;
};

&led2 {
	gpios = <&gpio2 7 GPIO_ACTIVE_HIGH>;
	gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
};

&led3 {
@@ -21,17 +21,17 @@
};

&button0 {
	gpios = <&gpio1 13 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
	gpios = <&gpio1 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
};

&button1 {
	gpios = <&gpio1 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
	gpios = <&gpio1 10 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
};

&button2 {
	gpios = <&gpio1 8 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
	gpios = <&gpio2 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
};

&button3 {
	gpios = <&gpio0 4 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
	gpios = <&gpio2 10 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
};
+1 −1
Original line number Diff line number Diff line
@@ -4,4 +4,4 @@
 * SPDX-License-Identifier: Apache-2.0
 */

#include "nrf54l15pdk_nrf54l15_common_0_3_0.dtsi"
#include "nrf54l15pdk_nrf54l15_common_0_2_1.dtsi"
+0 −20
Original line number Diff line number Diff line
# 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
Loading