diff options
author | Elwin <elwinhammer@gmail.com> | 2024-06-24 13:17:55 +0200 |
---|---|---|
committer | Elwin <elwinhammer@gmail.com> | 2024-06-24 13:17:55 +0200 |
commit | 8f1fd935e69c5e303466b2be80bff77f556dead5 (patch) | |
tree | 74a22f1ab374d956f67b0e84c4278065910e8d3c /puzzle/vault/makefile | |
parent | ac40ddb49eb3a65cf928b1dd48e79802f2414c2e (diff) |
Cmake fix and working vault code with pbdrv impl.
Diffstat (limited to 'puzzle/vault/makefile')
-rw-r--r-- | puzzle/vault/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/puzzle/vault/makefile b/puzzle/vault/makefile index e22f546..f33ca7e 100644 --- a/puzzle/vault/makefile +++ b/puzzle/vault/makefile @@ -2,7 +2,7 @@ TARGET = $(BUILD_DIR)/main.elf include ../../lazy.mk -export SERIAL_PORT ?= /dev/ttyACM0 +export SERIAL_PORT ?= /dev/ttyUSB0 flash: upload; -upload-main: $(TARGET) +upload: $(TARGET) |