Commit e31d66a1 authored by Sadik Ozer's avatar Sadik Ozer Committed by Henrik Brix Andersen
Browse files

boards: Add MAX32690EVKit board

Added MAX32690EVKit board
For more information about this board please check
https://www.analog.com/



MAX32690 has two core, Cortex-M4 and Risc-V.

Examples can be build by below command for cortex-m4

west build -b max32690evkit/max32690/m4 samples/hello_world

As a shorthand, the soc may be omitted from the build command and
keeping the corresponding forward slashes:

west build -b max32690evkit//m4 samples/hello_world

Co-authored-by: default avatarJason Murphy <jason.murphy@analog.com>
Co-authored-by: default avatarMaureen Helm <maureen.helm@analog.com>
Signed-off-by: default avatarSadik Ozer <sadik.ozer@analog.com>
parent d33d5b3a
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
# MAX32690 board configuration

# Copyright (c) 2023-2024 Analog Devices, Inc.
# SPDX-License-Identifier: Apache-2.0

config BOARD_MAX32690EVKIT
	select SOC_MAX32690_M4 if BOARD_MAX32690EVKIT_MAX32690_M4
+9 −0
Original line number Diff line number Diff line
# Copyright (c) 2023-2024 Analog Devices, Inc.
# SPDX-License-Identifier: Apache-2.0

board_runner_args(openocd --cmd-pre-init "source [find interface/cmsis-dap.cfg]")
board_runner_args(openocd --cmd-pre-init "source [find target/max32690.cfg]")
board_runner_args(jlink "--device=MAX32690" "--reset-after-load")

include(${ZEPHYR_BASE}/boards/common/openocd.board.cmake)
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
+8 −0
Original line number Diff line number Diff line
# Copyright (c) 2023-2024 Analog Devices, Inc.
# SPDX-License-Identifier: Apache-2.0

board:
  name: max32690evkit
  vendor: adi
  socs:
    - name: max32690
+64 KiB
Loading image diff...
+55.8 KiB
Loading image diff...
Loading