From c6ce2617d2da9810dbf46a5e66a05288a567c56d Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Thu, 2 Dec 2021 06:31:52 +0100 Subject: [PATCH] Remove stlink dev from st-flash cmd For some reason it is not needed now --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4def1c0..20c4f2a 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,6 @@ CPU_FLAGS := -mthumb -mcpu=cortex-m3 -msoft-float -mfix-cortex-m3-ldrd arm-none-eabi-objcopy -Obinary $*.elf $*.bin flash: main.bin - st-flash write /dev/stlinkv1_4 main.bin 0x08000000 + st-flash write main.bin 0x08000000 .PHONY: flash