Adds a new board definition for the ADI MAX32690FTHR board. This board uses the same SoC as the MAX32690EVKIT board, but with a smaller feather form factor. Tested on hardware with the following samples: - samples/hello_world - samples/basic/blinky - samples/basic/threads - samples/subsys/shell/shell_module - samples/subsys/input/input_dump Signed-off-by: Maureen Helm <maureen.helm@analog.com>
9 lines
427 B
CMake
9 lines
427 B
CMake
# 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)
|