mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
2997e78da3
We now have SAMD21 and SAMD11 variants of LUNA; so we'll rename the existing LUNA BSP to be more specific / reflect its version.
12 lines
251 B
Makefile
12 lines
251 B
Makefile
CFLAGS += -D__SAMD21G18A__
|
|
|
|
LD_FILE = $(BOARD_PATH)/samd21g18a_flash.ld
|
|
|
|
# For flash-jlink target
|
|
JLINK_DEVICE = ATSAMD21G18
|
|
|
|
# flash using dfu-util
|
|
flash: $(BUILD)/$(PROJECT).bin
|
|
dfu-util -a 0 -d 1d50:615c -D $< || dfu-util -a 0 -d 16d0:05a5 -D $<
|
|
|