Commit 09520bc4 authored by Andrzej Kaczmarek's avatar Andrzej Kaczmarek Committed by Carles Cufi
Browse files

boards: Add DA1469x Pro DK



This adds support for DA1469x Pro DK which is an official development
kit for DA1469x SoC series provided by Renesas.

Signed-off-by: default avatarAndrzej Kaczmarek <andrzej.kaczmarek@codecoup.pl>
Signed-off-by: default avatarBen Lauret <ben.lauret.wm@renesas.com>
parent bd5edb67
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
# DA1469x series Development Kit Pro board configuration

# Copyright (c) 2022 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0
+8 −0
Original line number Diff line number Diff line
# DA1469x series Development Kit Pro board configuration

# Copyright (c) 2022 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0

config BOARD_DA1469X_DK_PRO
	bool "DA1469x series Development Kit Pro board"
	depends on SOC_SERIES_DA1469X
+11 −0
Original line number Diff line number Diff line
# DA1469x series Development Kit Pro board configuration

# Copyright (c) 2022 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0

if BOARD_DA1469X_DK_PRO

config BOARD
	default "da1469x_dk_pro"

endif # BOARD_DA1469X_DK_PRO
+10 −0
Original line number Diff line number Diff line
#
# Copyright (c) 2022 Renesas Electronics Corporation
#
# SPDX-License-Identifier: Apache-2.0
#

board_runner_args(ezflashcli)
board_runner_args(jlink --device=DA14699)
include(${ZEPHYR_BASE}/boards/common/ezflashcli.board.cmake)
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
+18 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2022 Renesas Electronics Corporation
 * SPDX-License-Identifier: Apache-2.0
 */

#include <zephyr/dt-bindings/pinctrl/smartbond-pinctrl.h>

&pinctrl {
	uart_default: uart_default {
		group1 {
			pinmux = <SMARTBOND_PINMUX(UART_TX, 0, 9)>;
		};
		group2 {
			pinmux = <SMARTBOND_PINMUX(UART_RX, 0, 8)>;
			bias-pull-up;
		};
	};
};
Loading