Skip to content

Commit

Permalink
[nrf fromlist] boards: nrf54l15pdk_nrf54l15_cpuapp: add support for P…
Browse files Browse the repository at this point in the history
…DK 0.3.0

Add support for the PDK 0.3.0

Upstream PR: zephyrproject-rtos/zephyr#70543

Signed-off-by: Bartosz Sokolski <[email protected]>
  • Loading branch information
barsok authored and gmarull committed Apr 5, 2024
1 parent a503870 commit 93f8406
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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)>;
};
2 changes: 1 addition & 1 deletion boards/arm/nrf54l15pdk_nrf54l15/revision.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
#

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

0 comments on commit 93f8406

Please sign in to comment.