Mercurial > public > hwos_code
annotate src/surfmode.asm @ 242:df8beb913ade
expand hardware_flag to 4 bytes
author | heinrichsweikamp |
---|---|
date | Tue, 03 Mar 2015 12:09:24 +0100 |
parents | 23311219dacc |
children | 416723c8ccd8 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File surfmode.asm | |
4 ; | |
5 ; Surfacemode | |
6 ; | |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-08-07 : [mH] moving from OSTC code | |
11 | |
12 #include "ostc3.inc" ; Mandatory header | |
13 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c | |
14 #include "start.inc" | |
15 #include "tft.inc" | |
16 #include "tft_outputs.inc" | |
17 #include "isr.inc" | |
18 #include "adc_lightsensor.inc" | |
19 #include "menu_processor.inc" | |
20 #include "strings.inc" | |
21 #include "sleepmode.inc" | |
22 #include "wait.inc" ; speed_* | |
23 #include "external_flash.inc" | |
24 #include "customview.inc" | |
25 #include "divemode.inc" | |
26 #include "mcp.inc" ; RX | |
27 #include "i2c.inc" | |
28 #include "comm.inc" | |
29 #include "eeprom_rs232.inc" | |
113 | 30 #include "calibrate.inc" |
0 | 31 |
213 | 32 extern do_main_menu |
33 | |
0 | 34 #DEFINE menu_pos_row .215 |
213 | 35 #DEFINE menu_pos_column .1 |
0 | 36 #DEFINE view_row .215 |
37 #DEFINE view_column .124 | |
38 | |
39 gui CODE | |
40 | |
41 | |
42 ;============================================================================= | |
43 ; Boot tasks for all modes | |
44 global surfloop | |
45 surfloop: | |
46 call speed_normal | |
47 bcf no_sensor_int ; Normal pressure mode | |
48 | |
49 clrf CCP1CON ; stop PWM | |
50 bcf PORTC,2 ; Pull PWM output to GND | |
51 call TFT_boot ; Initialize TFT (includes clear screen) | |
52 bcf restore_deco_data | |
53 | |
54 WIN_TOP .50 | |
55 WIN_LEFT .10 | |
56 movlw LOW 0x1E000 | |
57 movwf TBLPTRL | |
58 movlw HIGH 0x1E000 | |
59 movwf TBLPTRH | |
60 movlw UPPER 0x1E000 | |
61 movwf TBLPTRU | |
62 extern color_image | |
63 call color_image ; Show logo | |
64 | |
65 WIN_TOP .100 | |
66 WIN_LEFT .34 | |
67 extern ostc3_logo_block | |
68 movlw LOW(ostc3_logo_block) | |
69 movwf TBLPTRL | |
70 movlw HIGH ostc3_logo_block;&0xFFFF | |
71 movwf TBLPTRH | |
72 movlw UPPER(ostc3_logo_block) | |
73 movwf TBLPTRU | |
74 call color_image | |
75 call TFT_Display_FadeIn ; Show splash | |
76 call TFT_serial ; Show serial and firmware version | |
77 | |
78 ;---- Do any usefull initializes that takes time ------------------------- | |
79 call restart_set_modes_and_flags ; Sets decomode flags | |
80 bcf pressure_refresh | |
81 call I2C_init_compass | |
82 call I2C_init_accelerometer | |
83 clrf ext_flash_address+0 | |
84 clrf ext_flash_address+1 | |
85 clrf ext_flash_address+2 | |
86 | |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
87 btfsc rechargeable |
221
90923a081ae7
minor: configure buttons during splash screen
heinrichsweikamp
parents:
213
diff
changeset
|
88 call piezo_config ; Configure buttons |
90923a081ae7
minor: configure buttons during splash screen
heinrichsweikamp
parents:
213
diff
changeset
|
89 |
0 | 90 clrf timeout_counter2 |
91 clrf timeout_counter3 | |
92 bcf menubit ; clear menu flag | |
93 clrf last_pressure+0 | |
94 clrf last_pressure+1 | |
95 bcf is_bailout ; =1: Bailout | |
96 bcf ccr_diluent_setup ; Use OC gases for gaslist routine | |
97 | |
98 bcf simulatormode_active ; Quit simulator mode (if active) | |
99 bcf switch_left | |
100 bcf switch_right | |
101 bcf LEDg | |
102 bcf LEDr | |
103 | |
104 ;---- Fade to standard surface view -------------------------------------- | |
105 ; Wait 1 second | |
106 bcf onesecupdate | |
107 btfss onesecupdate | |
108 bra $-2 | |
109 ; Wait 1 second | |
110 bcf onesecupdate | |
111 btfss onesecupdate | |
112 bra $-2 | |
113 | |
114 call TFT_Display_FadeOut ; Go to black screen | |
115 call TFT_ClearScreen ; Then change everything | |
116 WIN_TOP .0 | |
117 WIN_LEFT .0 | |
118 WIN_FONT FT_SMALL | |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
119 bcf win_invert ; Reset invert flag |
0 | 120 |
121 WIN_COLOR color_lightblue | |
122 WIN_SMALL menu_pos_column,menu_pos_row | |
123 STRCPY_TEXT_PRINT tMenu ;"<Menu" | |
124 WIN_SMALL view_column,view_row | |
125 STRCPY_TEXT_PRINT tView ;"View>" | |
126 call TFT_standard_color | |
127 | |
48 | 128 ; Logo |
0 | 129 WIN_TOP .0 |
130 WIN_LEFT .70 | |
131 movlw LOW(ostc3_logo_block) | |
132 movwf TBLPTRL | |
133 movlw HIGH ostc3_logo_block;&0xFFFF | |
134 movwf TBLPTRH | |
135 movlw UPPER(ostc3_logo_block) | |
136 movwf TBLPTRU | |
137 call color_image | |
138 | |
158 | 139 call TFT_clock ; display time |
140 call update_surfloop60 | |
141 call get_battery_voltage ; get battery voltage | |
142 call TFT_update_batt_voltage ; display battery voltage | |
143 call TFT_update_surf_press ; display surface pressure | |
144 call TFT_temp_surfmode ; Displays temperature | |
145 call TFT_display_decotype_surface | |
234
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
233
diff
changeset
|
146 |
232 | 147 movff opt_dive_mode,lo ; 0=OC, 1=CC, 2=Gauge, 3=Apnea |
148 tstfsz lo | |
149 bra surfloop_no_oc ; Not OC | |
234
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
233
diff
changeset
|
150 call TFT_show_OC_startgas_surface; Show first gas and "OSTC2-like" active gases |
232 | 151 surfloop_no_oc: |
158 | 152 movff customview_surfmode,menupos3 ; Reload last customview |
153 call surf_customview_mask ; Update #menupos3 view | |
0 | 154 |
155 call TFT_Display_FadeIn ; Display resulting surface screen. | |
156 | |
157 ;---- Late initialisations ----------------------------------------------- | |
158 movff last_surfpressure_30min+0,int_I_pres_respiration+0 ; copy surface air pressure to deco routine | |
159 movff last_surfpressure_30min+1,int_I_pres_respiration+1 ; 30min old values | |
160 movff last_surfpressure_30min+0,int_I_pres_surface+0 ; copy surface air pressure to deco routine | |
161 movff last_surfpressure_30min+1,int_I_pres_surface+1 ; 30min old values | |
162 movff last_surfpressure_30min+0,last_surfpressure+0 ; Use 30min old airpressure | |
163 movff last_surfpressure_30min+1,last_surfpressure+1 ; Use 30min old airpressure | |
164 | |
158 | 165 ; Startup tasks for all modes |
0 | 166 ; Desaturation time needs: |
167 ; int_I_pres_surface | |
168 ; char_I_desaturation_multiplier | |
169 call deco_calc_desaturation_time ; calculate desaturation time | |
170 movlb b'00000001' ; select ram bank 1 | |
171 | |
172 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump) | |
173 call enable_rs232 ; Also sets to speed_normal ... | |
174 | |
175 surfloop_loop: | |
176 btfss onesecupdate ; do every second tasks? | |
177 bra surfloop_loop2 ; no, loop | |
178 | |
179 ; One Second tasks for all modes | |
180 call speed_normal | |
181 call TFT_debug_output | |
182 call TFT_clock ; update clock | |
183 call timeout_surfmode ; check timeout | |
184 call get_battery_voltage ; get battery voltage | |
185 call TFT_update_batt_voltage ; display battery voltage | |
186 call set_dive_modes ; tests if depth>threshold | |
187 btfss secs,0 ; Every two seconds... | |
188 call TFT_temp_surfmode ; Displays temperature | |
189 btfss secs,0 ; Every two seconds... | |
190 call surfmode_check_for_warnings ; ... check for warnings (and display/update) them | |
191 | |
192 bcf onesecupdate ; every second tasks done | |
193 | |
194 surfloop_loop2: | |
195 ; Tasks approx. every 50ms for all modes | |
196 call test_switches_surfmode ; check switches | |
197 | |
198 ; One minute tasks for all modes | |
199 btfsc oneminupdate ; do every minute tasks | |
200 call update_surfloop60 ; yes, e.g. update time and date | |
201 | |
202 ; Mode tasks | |
230
f6548e8f06f5
Bugfix: Check for divemode before checking for menu
mh@mh-THINK
parents:
226
diff
changeset
|
203 btfsc divemode ; Divemode active? |
f6548e8f06f5
Bugfix: Check for divemode before checking for menu
mh@mh-THINK
parents:
226
diff
changeset
|
204 goto diveloop ; Yes, switch into Divemode! |
f6548e8f06f5
Bugfix: Check for divemode before checking for menu
mh@mh-THINK
parents:
226
diff
changeset
|
205 |
0 | 206 btfsc menubit ; Menu? |
207 goto do_main_menu ; Menu! | |
208 | |
209 btfsc pressure_refresh ; new pressure available? | |
210 call TFT_update_surf_press ; display surface pressure | |
211 bcf pressure_refresh ; until new pressure is available | |
212 | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
213 ; Updates every 1/4 second |
0 | 214 btfss quarter_second_update |
215 bra surfloop_loop2a | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
216 |
0 | 217 bcf quarter_second_update |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
218 ; Update Sensors |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
219 |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
220 call compute_ppo2 ; compute mv_sensorX and ppo2_sensorX arrays |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
221 call check_sensors ; Set enable/disable flags |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
222 btfsc FLAG_ccr_mode ; In CCR mode... |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
223 call TFT_surface_sensor ; ...update sensor data in surface mode |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
224 |
0 | 225 movlw .6 |
226 cpfseq menupos3 ; in compass view? | |
227 bra surfloop_loop2a ; No | |
228 call TFT_surface_compass_heading ; Yes, update compass heading value | |
229 | |
230 surfloop_loop2a: | |
231 btfsc toggle_customview ; Next view? | |
232 call surf_customview_toggle ; Yes, show next customview (and delete this flag) | |
233 | |
234 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump) | |
235 bra surfloop_loop3 | |
236 btfsc vusb_in ; USB plugged in? | |
113 | 237 call comm_mode ; Start COMM mode |
0 | 238 bra surfloop_loop4 |
239 surfloop_loop3: | |
240 btfss vusb_in ; USB (still) plugged in? | |
241 bcf enable_screen_dumps ; No, clear flag | |
242 call rs232_get_byte | |
243 btfsc rs232_recieve_overflow | |
244 bra surfloop_loop4 | |
245 movlw "l" | |
246 cpfseq RCREG1 | |
247 bra surfloop_loop4 | |
248 call TFT_dump_screen ; Dump the screen contents | |
249 surfloop_loop4: | |
250 btfsc sleepmode ; Sleepmode active? | |
251 goto sleeploop ; Yes, switch into sleepmode! | |
252 | |
253 bra surfloop_loop ; loop surfacemode | |
254 | |
255 update_surfloop60: | |
256 ; One minute tasks for all modes | |
257 call TFT_date ; Update date | |
258 call calc_deko_surfmode ; calculate desaturation every minute | |
259 bcf oneminupdate | |
260 return | |
261 | |
262 extern check_cns_violation,check_warn_battery,check_and_store_gf_violation | |
263 surfmode_check_for_warnings: | |
264 movf warning_counter_backup,W | |
265 cpfseq warning_counter ; warning_counter_backup = warning_counter? | |
266 call TFT_clear_warning_text ; No, clear all warnings | |
267 movff warning_counter,warning_counter_backup ; copy warning_counter | |
268 | |
269 bcf warning_active ; Clear flag | |
270 clrf warning_counter ; Clear counter | |
271 | |
272 ; Warnings for all modes | |
273 call check_warn_battery ; Check if the battery level should be displayed/warned | |
205 | 274 rcall surfmode_check_for_nofly ; Check if nofly time should be shown |
275 rcall surfmode_check_for_desat ; Check if desat time should be shown | |
276 rcall surfmode_check_for_interval ; Check if surface interval should be shown | |
0 | 277 |
278 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode | |
279 bra surfmode_check_for_warnings2 | |
280 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode | |
281 bra surfmode_check_for_warnings2 | |
282 | |
283 ; Warnings only in deco modes | |
284 call check_cns_violation ; Check CNS value and display it, if required | |
285 call check_and_store_gf_violation ; Check GF value and display it, if required | |
286 | |
287 surfmode_check_for_warnings2: | |
288 ; Setup warning_page number | |
289 incf warning_page,F | |
290 bcf STATUS,C | |
291 rlcf warning_page,W ; *2 | |
292 cpfsgt warning_counter ; > warning_counter | |
293 clrf warning_page ; No, clear | |
294 | |
295 ; Clear 2nd row of warnings if there is nothing to show (on this page) | |
296 btfss second_row_warning ; =1: The second row contains a warning | |
297 call TFT_clear_warning_text_2nd_row ; No, clear this row | |
298 return ; Done. | |
299 | |
300 surfmode_check_for_interval: | |
301 movf surface_interval+0,W ; Is interval null ? | |
133
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
302 iorwf surface_interval+1,W |
0 | 303 bnz surfmode_check_for_interval2 ; No |
304 return | |
305 surfmode_check_for_interval2: | |
306 incf warning_counter,F ; increase counter | |
307 call TFT_interval | |
308 return | |
309 | |
310 | |
311 surfmode_check_for_desat: | |
312 movf desaturation_time+0,W ; Is nofly null ? | |
313 iorwf desaturation_time+1,W | |
314 bnz surfmode_check_for_desat2 ; No | |
315 return | |
316 surfmode_check_for_desat2: | |
317 incf warning_counter,F ; increase counter | |
318 call TFT_desaturation_time | |
319 return | |
320 | |
321 surfmode_check_for_nofly: | |
322 movf nofly_time+0,W ; Is nofly null ? | |
323 iorwf nofly_time+1,W | |
324 bnz surfmode_check_for_nofly2 ; No... | |
325 return | |
326 surfmode_check_for_nofly2: | |
327 incf warning_counter,F ; increase counter | |
328 call TFT_nofly_time | |
329 return | |
330 | |
331 | |
332 ;============================================================================= | |
333 global calc_deko_surfmode | |
334 calc_deko_surfmode: | |
335 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy surface air pressure to deco routine | |
336 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode | |
337 banksel common | |
338 return | |
339 | |
340 test_switches_surfmode: ; checks switches in surfacemode | |
341 btfsc switch_right | |
342 bra test_switches_surfmode2 | |
343 btfsc switch_left | |
344 bra test_switches_surfmode3 | |
345 | |
346 ; No button press | |
347 return | |
348 | |
349 test_switches_surfmode3: | |
350 bcf switch_left | |
351 bsf menubit ; Enter Menu! | |
352 return | |
353 | |
354 test_switches_surfmode2: | |
355 bcf switch_right | |
356 bsf toggle_customview | |
357 clrf timeout_counter2 ; and reset timeout | |
358 return | |
359 | |
360 global timeout_surfmode | |
361 timeout_surfmode: | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
362 movlw timeout_surfacemode ; [s] Default timeout |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
158
diff
changeset
|
363 btfsc menu_show_sensors2 ; In the "Calibrate" menu? |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
364 movlw timeout_calibrate_menu ; [s] CCR Calibrate Menu timeout |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
365 btfsc menubit ; in Menu? |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
366 bra timeout_testmode ; No, done. |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
367 ; Must be in surface mode |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
368 btfss FLAG_ccr_mode ; =1: CCR mode (Fixed ppO2 or Sensor) active |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
369 bra timeout_testmode ; No, not CCR |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
370 movlw timeout_ccr_surface ; [s] CCR Surface mode timeout |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
371 |
0 | 372 global timeout_testmode |
373 timeout_testmode: | |
374 incf timeout_counter2,F ; increase timeout counter | |
375 cpfsgt timeout_counter2 ; Compare with timeout_counter2 | |
376 return ; return, no timeout | |
377 bsf sleepmode ; Set Flag | |
378 return ; Return | |
379 | |
380 END |