Commit d58792d3 authored by Jonas Berg's avatar Jonas Berg Committed by Anas Nashif
Browse files

boards: Add Waveshare RP2040 Matrix

Product image from https://www.waveshare.com/wiki/RP2040-Matrix



Tested with the samples mentioned in the index.rst page.

Signed-off-by: default avatarJonas Berg <jonas.s.t.berg@gmail.com>
parent c96dbf48
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
# Copyright (c) 2025 Jonas Berg
# SPDX-License-Identifier: Apache-2.0

config BOARD_RP2040_MATRIX
	select RP2_FLASH_W25Q080
+16 −0
Original line number Diff line number Diff line
# Copyright (c) 2022 Peter Johanson
# SPDX-License-Identifier: Apache-2.0

if BOARD_RP2040_MATRIX

if I2C_DW

config I2C_DW_CLOCK_SPEED
	default 125

endif # I2C_DW

config USB_SELF_POWERED
	default n

endif # BOARD_RP2040_MATRIX
+5 −0
Original line number Diff line number Diff line
# Copyright (c) 2025 Jonas Berg
# SPDX-License-Identifier: Apache-2.0

config BOARD_RP2040_MATRIX
	select SOC_RP2040
+6 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2023 TOKITA Hiroshi

board_runner_args(uf2 "--board-id=RPI-RP2")

include(${ZEPHYR_BASE}/boards/common/uf2.board.cmake)
+6 −0
Original line number Diff line number Diff line
board:
  name: rp2040_matrix
  full_name: RP2040-Matrix
  vendor: waveshare
  socs:
  - name: rp2040
Loading