boards: nrf54l15pdk_nrf54l15_cpuapp: add support for PDK 0.3.0

Add support for the PDK 0.3.0

Signed-off-by: Bartosz Sokolski <bartosz.sokolski@nordicsemi.no>
This commit is contained in:
Bartosz Sokolski 2024-03-21 10:00:31 +01:00 committed by David Leach
parent 2a4332ba5f
commit b1b4dc0694
3 changed files with 44 additions and 9 deletions

View file

@ -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"

View file

@ -0,0 +1,38 @@
/*
* 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)>;
};

View file

@ -1,9 +0,0 @@
#
# 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)