Mercurial > public > hwos_code
comparison src/customview.asm @ 502:0910c227018f
BUGFIX: PSCR mode showed bailout gaslist instead of diluent gaslist
NEW: More customviews in surface mode for PSCR mode
BUGFIX: several minor graphic issues in logbook fixed
author | heinrichsweikamp |
---|---|
date | Fri, 09 Jun 2017 14:47:02 +0200 |
parents | 18e047102e49 |
children | 4542d03f748a |
comparison
equal
deleted
inserted
replaced
501:69a98f3f3b84 | 502:0910c227018f |
---|---|
157 btfsc FLAG_gauge_mode | 157 btfsc FLAG_gauge_mode |
158 bra surf_customview_toggle | 158 bra surf_customview_toggle |
159 btfsc FLAG_apnoe_mode | 159 btfsc FLAG_apnoe_mode |
160 bra surf_customview_toggle | 160 bra surf_customview_toggle |
161 btfsc FLAG_ccr_mode | 161 btfsc FLAG_ccr_mode |
162 bra surf_customview_init_view1_bail ; Bailoutversion | 162 bra surf_customview_init_view1_bail ; Bailout version of "OC Gas List" |
163 btfsc FLAG_pscr_mode | |
164 bra surf_customview_init_view1_bail ; Bailout version of "OC Gas List" | |
163 STRCPY_TEXT_PRINT tGaslist ; Title of customview | 165 STRCPY_TEXT_PRINT tGaslist ; Title of customview |
164 call TFT_standard_color | 166 call TFT_standard_color |
165 call TFT_gaslist_surfmode ; Show gas list | 167 call TFT_gaslist_surfmode ; Show gas list |
166 bra customview_toggle_exit ; Done. | 168 bra customview_toggle_exit ; Done. |
167 | 169 |
170 call TFT_standard_color | 172 call TFT_standard_color |
171 call TFT_gaslist_surfmode ; Show gas list | 173 call TFT_gaslist_surfmode ; Show gas list |
172 bra customview_toggle_exit ; Done. | 174 bra customview_toggle_exit ; Done. |
173 | 175 |
174 surf_customview_init_view2: ; View2: CC Dil list | 176 surf_customview_init_view2: ; View2: CC Dil list |
177 btfsc FLAG_pscr_mode | |
178 bra surf_customview_init_view2_2 | |
175 btfss FLAG_ccr_mode | 179 btfss FLAG_ccr_mode |
176 bra surf_customview_toggle | 180 bra surf_customview_toggle |
177 btfsc FLAG_gauge_mode | 181 btfsc FLAG_gauge_mode |
178 bra surf_customview_toggle | 182 bra surf_customview_toggle |
179 btfsc FLAG_apnoe_mode | 183 btfsc FLAG_apnoe_mode |
180 bra surf_customview_toggle | 184 bra surf_customview_toggle |
185 surf_customview_init_view2_2: | |
181 STRCPY_TEXT_PRINT tGaslistCC ; Title of customview | 186 STRCPY_TEXT_PRINT tGaslistCC ; Title of customview |
182 call TFT_standard_color | 187 call TFT_standard_color |
183 call TFT_dillist_surfmode ; Show diluent list | 188 call TFT_dillist_surfmode ; Show diluent list |
184 bra customview_toggle_exit ; Done. | 189 bra customview_toggle_exit ; Done. |
185 | 190 |