Skip to content

Commit cd792a0

Browse files
committed
chore: Test version
1 parent aec294d commit cd792a0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Bluejay.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ Temp_Storage: DS 48 ; Temporary storage
316316
CSEG AT 1A00h
317317
EEPROM_FW_MAIN_REVISION EQU 0 ; Main revision of the firmware
318318
EEPROM_FW_SUB_REVISION EQU 16 ; Sub revision of the firmware
319-
EEPROM_LAYOUT_REVISION EQU 204 ; Revision of the EEPROM layout
319+
EEPROM_LAYOUT_REVISION EQU 205 ; Revision of the EEPROM layout
320320

321321
Eep_FW_Main_Revision: DB EEPROM_FW_MAIN_REVISION ; EEPROM firmware main revision number
322322
Eep_FW_Sub_Revision: DB EEPROM_FW_SUB_REVISION ; EEPROM firmware sub revision number
@@ -364,7 +364,7 @@ Eep_Pgm_LED_Control: DB DEFAULT_PGM_LED_CONTROL ; EEPROM copy of programmed LE
364364
Eep_Dummy: DB 0FFh ; EEPROM address for safety reason
365365

366366
CSEG AT 1A60h
367-
Eep_Name: DB "Bluejay " ; Name tag (16 Bytes)
367+
Eep_Name: DB "Bluejay (TEST) " ; Name tag (16 Bytes)
368368

369369
CSEG AT 1A70h
370370
Eep_Pgm_Beep_Melody: DB 2, 58, 4, 32, 52, 66, 13, 0, 69, 45, 13, 0, 52, 66, 13, 0, 78, 39, 211, 0, 69, 45, 208, 25, 52, 25, 0

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ TAG := $(shell git describe --tags --abbrev=0)
33
VERSION ?= $(TAG)
44

55
# Target parameters
6-
LAYOUTS = A B C D E F G H I J K L M N O P Q R S T U V W Z
7-
MCUS = H L
8-
DEADTIMES = 0 5 10 15 20 25 30 40 50 70 90 120
6+
LAYOUTS = A C F G J M O P Q R S Z
7+
MCUS = H
8+
DEADTIMES = 5 10 15 20 25 30 40 50 70 90
99

1010
# Example single target
1111
LAYOUT ?= A

0 commit comments

Comments
 (0)