Mercurial > public > mk2
changeset 842:454ef5c2e6aa default tip
Bugfix: Auto-SP did not show >9m for some 2C hardware versions in German language firmware
Make year settings until 2040 possible (This is likely the final release for this model)
| author | heinrichsweikamp |
|---|---|
| date | Sat, 29 Nov 2025 14:11:07 +0100 |
| parents | 8d73c9dcf851 |
| children | |
| files | code_part1/OSTC_code_asm_part1/definitions.asm code_part1/OSTC_code_asm_part1/german_text.asm code_part1/OSTC_code_asm_part1/menu_settime.asm |
| diffstat | 3 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/code_part1/OSTC_code_asm_part1/definitions.asm Tue Oct 24 10:38:04 2023 +0200 +++ b/code_part1/OSTC_code_asm_part1/definitions.asm Sat Nov 29 14:11:07 2025 +0100 @@ -22,7 +22,7 @@ ; ToDo: #DEFINE softwareversion_x d'3' ; Software version XX.YY -#DEFINE softwareversion_y d'16' ; Software version XX.YY +#DEFINE softwareversion_y d'17' ; Software version XX.YY #DEFINE softwareversion_beta 0 ; (and 0 for release)
--- a/code_part1/OSTC_code_asm_part1/german_text.asm Tue Oct 24 10:38:04 2023 +0200 +++ b/code_part1/OSTC_code_asm_part1/german_text.asm Sat Nov 29 14:11:07 2025 +0100 @@ -227,7 +227,7 @@ TCODE .0, .0, "Einst." ;094 Set TCODE .0, .0, "Gas# " ;095 Gas# TCODE .0, .0, "Ja" ;096 Yes - TCODE .0, .0, "Aktuell: " ;097 Current: + TCODE .0, .0, "Aktuell:" ;097 Current: TCODE .14, .2, "Einstellungs-Menü:" ;098 Setup Menu: TCODE .20, .35, "Custom FunktionenI" ;099 Custom FunctionsI TCODE .20, .125, "Dekomod.:" ;100 Decotype:
--- a/code_part1/OSTC_code_asm_part1/menu_settime.asm Tue Oct 24 10:38:04 2023 +0200 +++ b/code_part1/OSTC_code_asm_part1/menu_settime.asm Sat Nov 29 14:11:07 2025 +0100 @@ -262,11 +262,11 @@ bra set_time_refresh_x add_year: incf year,F - movlw d'31' ; calendar until 2031 + movlw d'40' ; calendar until 2040 cpfsgt year bra set_time_refresh_x - movlw d'23' - movwf year ; Set Year to 2023 + movlw d'25' + movwf year ; Set Year to 2025 set_time_refresh_x: call set_time_refresh
