Commit b1b4dc06 authored by Bartosz Sokolski's avatar Bartosz Sokolski Committed by David Leach
Browse files

boards: nrf54l15pdk_nrf54l15_cpuapp: add support for PDK 0.3.0



Add support for the PDK 0.3.0

Signed-off-by: default avatarBartosz Sokolski <bartosz.sokolski@nordicsemi.no>
parent 2a4332ba
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -3,3 +3,9 @@ board:
  vendor: nordic
  socs:
  - name: nrf54l15
  revision:
    format: major.minor.patch
    default: "0.2.1"
    revisions:
    - name: "0.2.1"
    - name: "0.3.0"
+38 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2024 Nordic Semiconductor ASA
 *
 * SPDX-License-Identifier: Apache-2.0
 */


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

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

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

&led3 {
	gpios = <&gpio1 14 GPIO_ACTIVE_HIGH>;
};

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

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

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

&button3 {
	gpios = <&gpio0 4 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
};
+0 −9
Original line number Diff line number Diff line
#
# Copyright (c) 2024 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
#

board_check_revision(FORMAT MAJOR.MINOR.PATCH
                     VALID_REVISIONS 0.2.0
                     DEFAULT_REVISION 0.2.0)