Skip to content

Commit b204f9d

Browse files
Bootloader: Put bootloader name and version in hex filename
1 parent ed9e4b0 commit b204f9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ifdef CURRENT_HW_REVISION
5757
CURRENT_HW_REVISION_MAJOR=$(shell echo $$(($(CURRENT_HW_REVISION) / 0x10)))
5858
CURRENT_HW_REVISION_MINOR=$(shell echo $$(($(CURRENT_HW_REVISION) % 0x10)))
5959

60-
FILE_NAME=$(BOARD_TYPE)-$(CURRENT_HW_REVISION_MAJOR).$(CURRENT_HW_REVISION_MINOR)
60+
FILE_NAME=attinybootloader-v$(BL_VERSION)-$(BOARD_TYPE)-$(CURRENT_HW_REVISION_MAJOR).$(CURRENT_HW_REVISION_MINOR)
6161
endif
6262

6363
# Make sure that .o files are deleted after building, so we can build for multiple

0 commit comments

Comments
 (0)