1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/rpi-pico: specify needed args when using jlink flasher

Signed-off-by: dylad <dylan.laduranty@mesotic.com>
This commit is contained in:
dylad 2023-05-02 19:12:26 +02:00 committed by Dylan Laduranty
parent c4b27d8241
commit bd5cff5748

View File

@ -1,2 +1,7 @@
CPU_MODEL := RP2040
PORT_LINUX ?= /dev/ttyUSB0
ifeq ($(PROGRAMMER),jlink)
JLINK_DEVICE = RP2040_M0_0
FLASHFILE = $(ELFFILE)
endif