annotate src/surfmode.asm @ 576:690bfb76911c

Italian update
author heinrichsweikamp
date Fri, 16 Feb 2018 12:15:43 +0100
parents 54346c651b6a
children b455b31ce022
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
3 ; File surfmode.asm REFACTORED VERSION V2.94
0
heinrichsweikamp
parents:
diff changeset
4 ;
heinrichsweikamp
parents:
diff changeset
5 ; Surfacemode
heinrichsweikamp
parents:
diff changeset
6 ;
heinrichsweikamp
parents:
diff changeset
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
heinrichsweikamp
parents:
diff changeset
8 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
9 ; HISTORY
heinrichsweikamp
parents:
diff changeset
10 ; 2011-08-07 : [mH] moving from OSTC code
heinrichsweikamp
parents:
diff changeset
11
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
12 #include "hwos.inc" ; Mandatory header
505
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
13 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
14 #include "start.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
15 #include "tft.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
16 #include "tft_outputs.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
17 #include "isr.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
18 #include "adc_lightsensor.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
19 #include "menu_processor.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
20 #include "strings.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
21 #include "sleepmode.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
22 #include "wait.inc" ; speed_*
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
23 #include "external_flash.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
24 #include "customview.inc"
bef07a837a60 BUGFIX: Reset to MOD in Diluent Menu did reset Setpoint change depth
heinrichsweikamp
parents: 487
diff changeset
25 #include "divemode.inc"
0
heinrichsweikamp
parents:
diff changeset
26 #include "mcp.inc" ; RX
heinrichsweikamp
parents:
diff changeset
27 #include "i2c.inc"
heinrichsweikamp
parents:
diff changeset
28 #include "comm.inc"
heinrichsweikamp
parents:
diff changeset
29 #include "eeprom_rs232.inc"
113
heinrichsweikamp
parents: 76
diff changeset
30 #include "calibrate.inc"
0
heinrichsweikamp
parents:
diff changeset
31
213
3b5df65d53fc layout changes
heinrichsweikamp
parents: 205
diff changeset
32 extern do_main_menu
3b5df65d53fc layout changes
heinrichsweikamp
parents: 205
diff changeset
33
0
heinrichsweikamp
parents:
diff changeset
34 #DEFINE menu_pos_row .215
213
3b5df65d53fc layout changes
heinrichsweikamp
parents: 205
diff changeset
35 #DEFINE menu_pos_column .1
0
heinrichsweikamp
parents:
diff changeset
36 #DEFINE view_row .215
heinrichsweikamp
parents:
diff changeset
37 #DEFINE view_column .124
heinrichsweikamp
parents:
diff changeset
38
heinrichsweikamp
parents:
diff changeset
39 gui CODE
heinrichsweikamp
parents:
diff changeset
40
heinrichsweikamp
parents:
diff changeset
41
heinrichsweikamp
parents:
diff changeset
42 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
43 ; Boot tasks for all modes
heinrichsweikamp
parents:
diff changeset
44 global surfloop
heinrichsweikamp
parents:
diff changeset
45 surfloop:
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
46 call speed_normal
0
heinrichsweikamp
parents:
diff changeset
47 bcf no_sensor_int ; Normal pressure mode
heinrichsweikamp
parents:
diff changeset
48
245
416723c8ccd8 use single-byte hardware flag (again)
heinrichsweikamp
parents: 235
diff changeset
49 bcf LEDr
416723c8ccd8 use single-byte hardware flag (again)
heinrichsweikamp
parents: 235
diff changeset
50
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
51 clrf CCP1CON ; stop PWM
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
52 bcf PORTC,2 ; Pull PWM output to GND
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
53 call TFT_boot ; Initialize TFT (includes clear screen)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
54 bcf restore_deco_data
0
heinrichsweikamp
parents:
diff changeset
55
heinrichsweikamp
parents:
diff changeset
56 WIN_TOP .50
heinrichsweikamp
parents:
diff changeset
57 WIN_LEFT .10
heinrichsweikamp
parents:
diff changeset
58 movlw LOW 0x1E000
heinrichsweikamp
parents:
diff changeset
59 movwf TBLPTRL
heinrichsweikamp
parents:
diff changeset
60 movlw HIGH 0x1E000
heinrichsweikamp
parents:
diff changeset
61 movwf TBLPTRH
heinrichsweikamp
parents:
diff changeset
62 movlw UPPER 0x1E000
heinrichsweikamp
parents:
diff changeset
63 movwf TBLPTRU
heinrichsweikamp
parents:
diff changeset
64 extern color_image
heinrichsweikamp
parents:
diff changeset
65 call color_image ; Show logo
heinrichsweikamp
parents:
diff changeset
66
heinrichsweikamp
parents:
diff changeset
67 WIN_TOP .100
heinrichsweikamp
parents:
diff changeset
68 WIN_LEFT .34
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 256
diff changeset
69 extern ostc_logo_block
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 256
diff changeset
70 movlw LOW(ostc_logo_block)
0
heinrichsweikamp
parents:
diff changeset
71 movwf TBLPTRL
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 256
diff changeset
72 movlw HIGH ostc_logo_block;&0xFFFF
0
heinrichsweikamp
parents:
diff changeset
73 movwf TBLPTRH
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 256
diff changeset
74 movlw UPPER(ostc_logo_block)
0
heinrichsweikamp
parents:
diff changeset
75 movwf TBLPTRU
heinrichsweikamp
parents:
diff changeset
76 call color_image
heinrichsweikamp
parents:
diff changeset
77 call TFT_Display_FadeIn ; Show splash
heinrichsweikamp
parents:
diff changeset
78 call TFT_serial ; Show serial and firmware version
heinrichsweikamp
parents:
diff changeset
79
heinrichsweikamp
parents:
diff changeset
80 ;---- Do any usefull initializes that takes time -------------------------
heinrichsweikamp
parents:
diff changeset
81 call restart_set_modes_and_flags ; Sets decomode flags
heinrichsweikamp
parents:
diff changeset
82 bcf pressure_refresh
heinrichsweikamp
parents:
diff changeset
83 call I2C_init_compass
heinrichsweikamp
parents:
diff changeset
84 call I2C_init_accelerometer
heinrichsweikamp
parents:
diff changeset
85 clrf ext_flash_address+0
heinrichsweikamp
parents:
diff changeset
86 clrf ext_flash_address+1
heinrichsweikamp
parents:
diff changeset
87 clrf ext_flash_address+2
heinrichsweikamp
parents:
diff changeset
88
354
043890f06bce some cleanups
heinrichsweikamp
parents: 352
diff changeset
89 movlw surface_sp ; in cbar
043890f06bce some cleanups
heinrichsweikamp
parents: 352
diff changeset
90 call transmit_setpoint ; Transmit current setpoint from WREG (in cbar) to external electronics
221
90923a081ae7 minor: configure buttons during splash screen
heinrichsweikamp
parents: 213
diff changeset
91
0
heinrichsweikamp
parents:
diff changeset
92 clrf timeout_counter2
heinrichsweikamp
parents:
diff changeset
93 clrf timeout_counter3
heinrichsweikamp
parents:
diff changeset
94 bcf menubit ; clear menu flag
382
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
95 bcf premenu
0
heinrichsweikamp
parents:
diff changeset
96 clrf last_pressure+0
heinrichsweikamp
parents:
diff changeset
97 clrf last_pressure+1
heinrichsweikamp
parents:
diff changeset
98 bcf is_bailout ; =1: Bailout
heinrichsweikamp
parents:
diff changeset
99 bcf ccr_diluent_setup ; Use OC gases for gaslist routine
heinrichsweikamp
parents:
diff changeset
100
heinrichsweikamp
parents:
diff changeset
101 bcf simulatormode_active ; Quit simulator mode (if active)
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
102
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
103 ; MOVE from here to below ## V2.94
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
104 ; bcf switch_left
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
105 ; bcf switch_right
0
heinrichsweikamp
parents:
diff changeset
106
heinrichsweikamp
parents:
diff changeset
107 ;---- Fade to standard surface view --------------------------------------
heinrichsweikamp
parents:
diff changeset
108 ; Wait 1 second
heinrichsweikamp
parents:
diff changeset
109 bcf onesecupdate
heinrichsweikamp
parents:
diff changeset
110 btfss onesecupdate
heinrichsweikamp
parents:
diff changeset
111 bra $-2
heinrichsweikamp
parents:
diff changeset
112 ; Wait 1 second
heinrichsweikamp
parents:
diff changeset
113 bcf onesecupdate
heinrichsweikamp
parents:
diff changeset
114 btfss onesecupdate
heinrichsweikamp
parents:
diff changeset
115 bra $-2
heinrichsweikamp
parents:
diff changeset
116
heinrichsweikamp
parents:
diff changeset
117 call TFT_Display_FadeOut ; Go to black screen
heinrichsweikamp
parents:
diff changeset
118 call TFT_ClearScreen ; Then change everything
heinrichsweikamp
parents:
diff changeset
119 WIN_TOP .0
heinrichsweikamp
parents:
diff changeset
120 WIN_LEFT .0
heinrichsweikamp
parents:
diff changeset
121 WIN_FONT FT_SMALL
189
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 188
diff changeset
122 bcf win_invert ; Reset invert flag
0
heinrichsweikamp
parents:
diff changeset
123
heinrichsweikamp
parents:
diff changeset
124 WIN_COLOR color_lightblue
heinrichsweikamp
parents:
diff changeset
125 WIN_SMALL menu_pos_column,menu_pos_row
heinrichsweikamp
parents:
diff changeset
126 STRCPY_TEXT_PRINT tMenu ;"<Menu"
heinrichsweikamp
parents:
diff changeset
127 WIN_SMALL view_column,view_row
heinrichsweikamp
parents:
diff changeset
128 STRCPY_TEXT_PRINT tView ;"View>"
heinrichsweikamp
parents:
diff changeset
129 call TFT_standard_color
heinrichsweikamp
parents:
diff changeset
130
48
7c7d7644ca37 Time and Date in normal (Not tiny) font
heinrichsweikamp
parents: 39
diff changeset
131 ; Logo
0
heinrichsweikamp
parents:
diff changeset
132 WIN_TOP .0
heinrichsweikamp
parents:
diff changeset
133 WIN_LEFT .70
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 256
diff changeset
134 movlw LOW(ostc_logo_block)
0
heinrichsweikamp
parents:
diff changeset
135 movwf TBLPTRL
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 256
diff changeset
136 movlw HIGH ostc_logo_block;&0xFFFF
0
heinrichsweikamp
parents:
diff changeset
137 movwf TBLPTRH
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 256
diff changeset
138 movlw UPPER(ostc_logo_block)
0
heinrichsweikamp
parents:
diff changeset
139 movwf TBLPTRU
heinrichsweikamp
parents:
diff changeset
140 call color_image
heinrichsweikamp
parents:
diff changeset
141
158
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
142 call TFT_clock ; display time
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
143 call update_surfloop60
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
144 call get_battery_voltage ; get battery voltage
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
145 call TFT_update_batt_voltage ; display battery voltage
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
146 call TFT_update_surf_press ; display surface pressure
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
147 call TFT_temp_surfmode ; Displays temperature
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
148 call TFT_display_decotype_surface
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
149
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
150 call calc_deko_divemode_sensor
234
57155164faad Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents: 233
diff changeset
151
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 476
diff changeset
152 movff opt_dive_mode,lo ; 0=OC, 1=CC, 2=Gauge, 3=Apnea, 4=PSCR
232
fe9d88fee09f show start gas in OC mode permanently
mh@mh-THINK
parents: 230
diff changeset
153 tstfsz lo
fe9d88fee09f show start gas in OC mode permanently
mh@mh-THINK
parents: 230
diff changeset
154 bra surfloop_no_oc ; Not OC
234
57155164faad Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents: 233
diff changeset
155 call TFT_show_OC_startgas_surface; Show first gas and "OSTC2-like" active gases
232
fe9d88fee09f show start gas in OC mode permanently
mh@mh-THINK
parents: 230
diff changeset
156 surfloop_no_oc:
158
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
157 movff customview_surfmode,menupos3 ; Reload last customview
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
158 call surf_customview_mask ; Update #menupos3 view
0
heinrichsweikamp
parents:
diff changeset
159
heinrichsweikamp
parents:
diff changeset
160 call TFT_Display_FadeIn ; Display resulting surface screen.
heinrichsweikamp
parents:
diff changeset
161
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
162 ; MOVED from above to here ## V2.94
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
163 bcf switch_left
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
164 bcf switch_right
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
165
0
heinrichsweikamp
parents:
diff changeset
166 ;---- Late initialisations -----------------------------------------------
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
167 movff last_surfpressure_30min+0,int_I_pres_respiration+0 ; copy surface air pressure to deco routine ## not used any more (!?)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
168 movff last_surfpressure_30min+1,int_I_pres_respiration+1 ; 30min old values ## not used any more (!?)
0
heinrichsweikamp
parents:
diff changeset
169 movff last_surfpressure_30min+0,int_I_pres_surface+0 ; copy surface air pressure to deco routine
heinrichsweikamp
parents:
diff changeset
170 movff last_surfpressure_30min+1,int_I_pres_surface+1 ; 30min old values
heinrichsweikamp
parents:
diff changeset
171 movff last_surfpressure_30min+0,last_surfpressure+0 ; Use 30min old airpressure
heinrichsweikamp
parents:
diff changeset
172 movff last_surfpressure_30min+1,last_surfpressure+1 ; Use 30min old airpressure
heinrichsweikamp
parents:
diff changeset
173
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
174 ; NEW ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
175 movff opt_GF_low,char_I_GF_Low_percentage
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
176 movff opt_GF_high,char_I_GF_High_percentage
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
177
158
683321c09cfa nicer boot into surfacemode
heinrichsweikamp
parents: 145
diff changeset
178 ; Startup tasks for all modes
0
heinrichsweikamp
parents:
diff changeset
179 ; Desaturation time needs:
heinrichsweikamp
parents:
diff changeset
180 ; int_I_pres_surface
heinrichsweikamp
parents:
diff changeset
181 ; char_I_desaturation_multiplier
heinrichsweikamp
parents:
diff changeset
182 call deco_calc_desaturation_time ; calculate desaturation time
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
183
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
184 ; REPLACE ## (code unification)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
185 ; movlb b'00000001' ; select ram bank 1
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
186 ; BY
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
187 banksel common
0
heinrichsweikamp
parents:
diff changeset
188
heinrichsweikamp
parents:
diff changeset
189 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump)
heinrichsweikamp
parents:
diff changeset
190 call enable_rs232 ; Also sets to speed_normal ...
heinrichsweikamp
parents:
diff changeset
191
heinrichsweikamp
parents:
diff changeset
192 surfloop_loop:
heinrichsweikamp
parents:
diff changeset
193 btfss onesecupdate ; do every second tasks?
heinrichsweikamp
parents:
diff changeset
194 bra surfloop_loop2 ; no, loop
heinrichsweikamp
parents:
diff changeset
195
heinrichsweikamp
parents:
diff changeset
196 ; One Second tasks for all modes
heinrichsweikamp
parents:
diff changeset
197 call speed_normal
487
heinrichsweikamp
parents: 485
diff changeset
198 ;call TFT_debug_output
0
heinrichsweikamp
parents:
diff changeset
199 call TFT_clock ; update clock
heinrichsweikamp
parents:
diff changeset
200 call timeout_surfmode ; check timeout
heinrichsweikamp
parents:
diff changeset
201 call get_battery_voltage ; get battery voltage
heinrichsweikamp
parents:
diff changeset
202 call TFT_update_batt_voltage ; display battery voltage
heinrichsweikamp
parents:
diff changeset
203 call set_dive_modes ; tests if depth>threshold
heinrichsweikamp
parents:
diff changeset
204 btfss secs,0 ; Every two seconds...
heinrichsweikamp
parents:
diff changeset
205 call TFT_temp_surfmode ; Displays temperature
heinrichsweikamp
parents:
diff changeset
206 btfss secs,0 ; Every two seconds...
heinrichsweikamp
parents:
diff changeset
207 call surfmode_check_for_warnings ; ... check for warnings (and display/update) them
heinrichsweikamp
parents:
diff changeset
208 bcf onesecupdate ; every second tasks done
heinrichsweikamp
parents:
diff changeset
209
heinrichsweikamp
parents:
diff changeset
210 surfloop_loop2:
heinrichsweikamp
parents:
diff changeset
211 ; Tasks approx. every 50ms for all modes
heinrichsweikamp
parents:
diff changeset
212 call test_switches_surfmode ; check switches
487
heinrichsweikamp
parents: 485
diff changeset
213 call TFT_debug_output
0
heinrichsweikamp
parents:
diff changeset
214
heinrichsweikamp
parents:
diff changeset
215 ; One minute tasks for all modes
heinrichsweikamp
parents:
diff changeset
216 btfsc oneminupdate ; do every minute tasks
heinrichsweikamp
parents:
diff changeset
217 call update_surfloop60 ; yes, e.g. update time and date
heinrichsweikamp
parents:
diff changeset
218
heinrichsweikamp
parents:
diff changeset
219 ; Mode tasks
230
f6548e8f06f5 Bugfix: Check for divemode before checking for menu
mh@mh-THINK
parents: 226
diff changeset
220 btfsc divemode ; Divemode active?
f6548e8f06f5 Bugfix: Check for divemode before checking for menu
mh@mh-THINK
parents: 226
diff changeset
221 goto diveloop ; Yes, switch into Divemode!
f6548e8f06f5 Bugfix: Check for divemode before checking for menu
mh@mh-THINK
parents: 226
diff changeset
222
0
heinrichsweikamp
parents:
diff changeset
223 btfsc menubit ; Menu?
heinrichsweikamp
parents:
diff changeset
224 goto do_main_menu ; Menu!
heinrichsweikamp
parents:
diff changeset
225
heinrichsweikamp
parents:
diff changeset
226 btfsc pressure_refresh ; new pressure available?
heinrichsweikamp
parents:
diff changeset
227 call TFT_update_surf_press ; display surface pressure
heinrichsweikamp
parents:
diff changeset
228 bcf pressure_refresh ; until new pressure is available
heinrichsweikamp
parents:
diff changeset
229
188
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
230 ; Updates every 1/4 second
0
heinrichsweikamp
parents:
diff changeset
231 btfss quarter_second_update
476
7c10557c248e no sensors in surface mode if the computer has no sensor inputs
heinrichsweikamp
parents: 382
diff changeset
232 bra surfloop_loop2b
188
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
233
0
heinrichsweikamp
parents:
diff changeset
234 bcf quarter_second_update
476
7c10557c248e no sensors in surface mode if the computer has no sensor inputs
heinrichsweikamp
parents: 382
diff changeset
235
564
54346c651b6a bring digital S8 HUD back to life...
heinrichsweikamp
parents: 560
diff changeset
236 call calc_deko_divemode_sensor
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
237
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 480
diff changeset
238 btfsc FLAG_ccr_mode ; In CCR mode?
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
239 bra surfloop_loop2a1 ; Yes.
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 480
diff changeset
240 btfss FLAG_pscr_mode ; In PSCR mode?
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
241 bra surfloop_loop2a ; No, skip
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 480
diff changeset
242
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 480
diff changeset
243 surfloop_loop2a1:
476
7c10557c248e no sensors in surface mode if the computer has no sensor inputs
heinrichsweikamp
parents: 382
diff changeset
244 movff opt_ccr_mode,WREG ; =0: Fixed SP, =1: Sensor, =2: Auto SP
7c10557c248e no sensors in surface mode if the computer has no sensor inputs
heinrichsweikamp
parents: 382
diff changeset
245 sublw .1 ; opt_ccr_mode = 1 (Sensor)?
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
246 bnz surfloop_loop2a ; No, skip
476
7c10557c248e no sensors in surface mode if the computer has no sensor inputs
heinrichsweikamp
parents: 382
diff changeset
247
188
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
248 call TFT_surface_sensor ; ...update sensor data in surface mode
535
cf68fe0c3002 NEW: Show a warning for each sensor if the sensor is end-of-life after calibration (Less then 8mV in Air at sea level)
heinrichsweikamp
parents: 530
diff changeset
249 call TFT_sensor_surface_warning ; Show a warning arrow-down behind sensor readings when sensor is end-of-life
530
d36f9fca10ae 2.20beta release
heinrichsweikamp
parents: 505
diff changeset
250 movlw .9
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
251 cpfseq menupos3 ; in Sensor mV surface custom view?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
252 bra surfloop_loop2a ; No
530
d36f9fca10ae 2.20beta release
heinrichsweikamp
parents: 505
diff changeset
253 extern TFT_sensor_mV
d36f9fca10ae 2.20beta release
heinrichsweikamp
parents: 505
diff changeset
254 call TFT_sensor_mV ; Yes, update mV readings (Each 1/4 second and not each second as in customview.asm)
188
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
255
476
7c10557c248e no sensors in surface mode if the computer has no sensor inputs
heinrichsweikamp
parents: 382
diff changeset
256 surfloop_loop2a:
0
heinrichsweikamp
parents:
diff changeset
257 movlw .6
heinrichsweikamp
parents:
diff changeset
258 cpfseq menupos3 ; in compass view?
476
7c10557c248e no sensors in surface mode if the computer has no sensor inputs
heinrichsweikamp
parents: 382
diff changeset
259 bra surfloop_loop2b ; No
256
5b4ef0b9090d place compass display code into compass_ops.asm
heinrichsweikamp
parents: 245
diff changeset
260 extern TFT_surface_compass_heading
0
heinrichsweikamp
parents:
diff changeset
261 call TFT_surface_compass_heading ; Yes, update compass heading value
heinrichsweikamp
parents:
diff changeset
262
476
7c10557c248e no sensors in surface mode if the computer has no sensor inputs
heinrichsweikamp
parents: 382
diff changeset
263 surfloop_loop2b:
0
heinrichsweikamp
parents:
diff changeset
264 btfsc toggle_customview ; Next view?
heinrichsweikamp
parents:
diff changeset
265 call surf_customview_toggle ; Yes, show next customview (and delete this flag)
heinrichsweikamp
parents:
diff changeset
266
heinrichsweikamp
parents:
diff changeset
267 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump)
heinrichsweikamp
parents:
diff changeset
268 bra surfloop_loop3
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
269
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
270 ; DELETE - In surface mode, only charing is available now - but now you can see the charging status :-) ## USB
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
271 ; To do USB communication, you now need to be in menu or logbook mode
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
272 ;btfsc vusb_in ; USB plugged in?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
273 ;call comm_mode ; Start COMM mode
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
274
0
heinrichsweikamp
parents:
diff changeset
275 bra surfloop_loop4
heinrichsweikamp
parents:
diff changeset
276 surfloop_loop3:
heinrichsweikamp
parents:
diff changeset
277 btfss vusb_in ; USB (still) plugged in?
heinrichsweikamp
parents:
diff changeset
278 bcf enable_screen_dumps ; No, clear flag
heinrichsweikamp
parents:
diff changeset
279 call rs232_get_byte
heinrichsweikamp
parents:
diff changeset
280 btfsc rs232_recieve_overflow
heinrichsweikamp
parents:
diff changeset
281 bra surfloop_loop4
heinrichsweikamp
parents:
diff changeset
282 movlw "l"
heinrichsweikamp
parents:
diff changeset
283 cpfseq RCREG1
heinrichsweikamp
parents:
diff changeset
284 bra surfloop_loop4
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
285 call TFT_dump_screen ; Dump the screen contents
0
heinrichsweikamp
parents:
diff changeset
286 surfloop_loop4:
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
287 btfsc sleepmode ; Sleepmode active?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
288 goto sleeploop ; Yes, switch into sleepmode!
0
heinrichsweikamp
parents:
diff changeset
289
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
290 bra surfloop_loop ; loop surfacemode
0
heinrichsweikamp
parents:
diff changeset
291
heinrichsweikamp
parents:
diff changeset
292 update_surfloop60:
heinrichsweikamp
parents:
diff changeset
293 ; One minute tasks for all modes
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
294 call TFT_date ; Update date
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
295
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
296 ; REPLACE ## no fly 2
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
297 ; call calc_deko_surfmode ; calculate desaturation time every minute
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
298 ; BY
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
299 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode. int_I_pres_surface gets updated by
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
300 call deco_calc_desaturation_time ; TFT_update_surf_press when amb_pressure has changed by >= 10 mbar
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
301 banksel common
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
302
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
303 ; NEW ## deco engine
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
304 ; update tissue diagram if it is on display
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
305 movlw .5 ; number of tissue custom view
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
306 cpfseq menupos3 ; is this the current customview?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
307 bra update_surfloop60_1 ; NO
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
308 call TFT_standard_color ; YES - set standard color
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
309 call TFT_surface_tissues ; show tissue diagram
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
310 update_surfloop60_1:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
311
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
312 ; NEW ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
313 ; update last dive info if it is on display
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
314 movlw .8 ; number of the last dive info customview
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
315 cpfseq menupos3 ; is this the current customview?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
316 bra update_surfloop60_2 ; NO
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
317 call TFT_standard_color ; YES - set standard color
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
318 call TFT_surface_lastdive ; show last dive infos
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
319 update_surfloop60_2:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
320
0
heinrichsweikamp
parents:
diff changeset
321 bcf oneminupdate
heinrichsweikamp
parents:
diff changeset
322 return
heinrichsweikamp
parents:
diff changeset
323
heinrichsweikamp
parents:
diff changeset
324 extern check_cns_violation,check_warn_battery,check_and_store_gf_violation
heinrichsweikamp
parents:
diff changeset
325 surfmode_check_for_warnings:
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
326
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
327 ; DELETE ## (screen flicker)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
328 ; movf warning_counter_backup,W
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
329 ; cpfseq warning_counter ; warning_counter_backup = warning_counter?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
330 ; call TFT_clear_warning_text ; No, clear all warnings
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
331 ; movff warning_counter,warning_counter_backup ; copy warning_counter
0
heinrichsweikamp
parents:
diff changeset
332
heinrichsweikamp
parents:
diff changeset
333 bcf warning_active ; Clear flag
heinrichsweikamp
parents:
diff changeset
334 clrf warning_counter ; Clear counter
heinrichsweikamp
parents:
diff changeset
335
heinrichsweikamp
parents:
diff changeset
336 ; Warnings for all modes
heinrichsweikamp
parents:
diff changeset
337 call check_warn_battery ; Check if the battery level should be displayed/warned
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
338
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
339 ; DELETE HERE... ## (general fix)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
340 ; rcall surfmode_check_for_nofly ; Check if nofly time should be shown
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
341 ; rcall surfmode_check_for_desat ; Check if desat time should be shown
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
342
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
343 ; DELETE - surface interval is now shown in last dive custom view, not as "warning" any more ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
344 ; rcall surfmode_check_for_interval ; Check if surface interval should be shown
0
heinrichsweikamp
parents:
diff changeset
345
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
346 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode
0
heinrichsweikamp
parents:
diff changeset
347 bra surfmode_check_for_warnings2
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
348 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode
0
heinrichsweikamp
parents:
diff changeset
349 bra surfmode_check_for_warnings2
heinrichsweikamp
parents:
diff changeset
350
heinrichsweikamp
parents:
diff changeset
351 ; Warnings only in deco modes
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
352
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
353 ; ...INSERT HERE ## (general fix) - desat and no-fly time belong to deco modes
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
354 rcall surfmode_check_for_desat ; Check if desat time should be shown
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
355 rcall surfmode_check_for_nofly ; Check if nofly time should be shown
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
356
0
heinrichsweikamp
parents:
diff changeset
357 call check_cns_violation ; Check CNS value and display it, if required
heinrichsweikamp
parents:
diff changeset
358 call check_and_store_gf_violation ; Check GF value and display it, if required
heinrichsweikamp
parents:
diff changeset
359
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
360 ; NEW ## microbubbles
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
361 movff char_O_deco_warnings,WREG ; bank-safe copy for deco warnings
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
362 btfsc WREG,mbubble_warning_lock ; do we have a microbubbles warning?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
363 extern warn_mbubbles
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
364 call warn_mbubbles ; YES
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
365
0
heinrichsweikamp
parents:
diff changeset
366 surfmode_check_for_warnings2:
heinrichsweikamp
parents:
diff changeset
367 ; Setup warning_page number
heinrichsweikamp
parents:
diff changeset
368 incf warning_page,F
heinrichsweikamp
parents:
diff changeset
369 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
370 rlcf warning_page,W ; *2
heinrichsweikamp
parents:
diff changeset
371 cpfsgt warning_counter ; > warning_counter
heinrichsweikamp
parents:
diff changeset
372 clrf warning_page ; No, clear
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
373
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
374 ; NEW ## (screen flicker)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
375 ; Clear both rows of warnings if there is nothing to show at all
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
376 tstfsz warning_counter ; any warnings?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
377 bra surfmode_check_for_warnings3 ; YES - look if second row needs to be cleared
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
378 call TFT_clear_warning_text ; NO - clear complete warnings area
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
379 return
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
380 surfmode_check_for_warnings3:
0
heinrichsweikamp
parents:
diff changeset
381
heinrichsweikamp
parents:
diff changeset
382 ; Clear 2nd row of warnings if there is nothing to show (on this page)
heinrichsweikamp
parents:
diff changeset
383 btfss second_row_warning ; =1: The second row contains a warning
heinrichsweikamp
parents:
diff changeset
384 call TFT_clear_warning_text_2nd_row ; No, clear this row
heinrichsweikamp
parents:
diff changeset
385 return ; Done.
heinrichsweikamp
parents:
diff changeset
386
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
387 ; DELETE - surface interval is now shown in last dive custom view, not as "warning" any more ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
388 ;
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
389 ;surfmode_check_for_interval:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
390 ; movf surface_interval+0,W ; Is interval null ?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
391 ; iorwf surface_interval+1,W
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
392 ; bnz surfmode_check_for_interval2 ; No
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
393 ; return
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
394 ;surfmode_check_for_interval2:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
395 ; incf warning_counter,F ; increase counter
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
396 ; call TFT_interval
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
397 ; return
0
heinrichsweikamp
parents:
diff changeset
398
heinrichsweikamp
parents:
diff changeset
399
heinrichsweikamp
parents:
diff changeset
400 surfmode_check_for_desat:
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
401 ; REPLACE ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
402 ; movf desaturation_time+0,W ; Is nofly null ?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
403 ; iorwf desaturation_time+1,W
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
404 ; BY
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
405 banksel int_O_desaturation_time
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
406 movf int_O_desaturation_time+0,W ; Is nofly null ?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
407 iorwf int_O_desaturation_time+1,W
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
408
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
409 bnz surfmode_check_for_desat2 ; No
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
410
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
411 ; NEW ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
412 banksel common
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
413
0
heinrichsweikamp
parents:
diff changeset
414 return
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
415
0
heinrichsweikamp
parents:
diff changeset
416 surfmode_check_for_desat2:
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
417 ; NEW ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
418 banksel common
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
419
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
420 incf warning_counter,F ; increase counter
0
heinrichsweikamp
parents:
diff changeset
421 call TFT_desaturation_time
heinrichsweikamp
parents:
diff changeset
422 return
heinrichsweikamp
parents:
diff changeset
423
heinrichsweikamp
parents:
diff changeset
424 surfmode_check_for_nofly:
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
425 ; REPLACE ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
426 ; movf nofly_time+0,W ; Is nofly null ?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
427 ; iorwf nofly_time+1,W
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
428 ; BY
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
429 banksel int_O_nofly_time
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
430 movf int_O_nofly_time+0,W ; Is nofly null ?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
431 iorwf int_O_nofly_time+1,W
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
432
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
433 bnz surfmode_check_for_nofly2 ; No...
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
434
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
435 ; NEW ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
436 banksel common
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
437
0
heinrichsweikamp
parents:
diff changeset
438 return
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
439
0
heinrichsweikamp
parents:
diff changeset
440 surfmode_check_for_nofly2:
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
441 ; NEW ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
442 banksel common
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
443
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
444 incf warning_counter,F ; increase counter
0
heinrichsweikamp
parents:
diff changeset
445 call TFT_nofly_time
heinrichsweikamp
parents:
diff changeset
446 return
heinrichsweikamp
parents:
diff changeset
447
heinrichsweikamp
parents:
diff changeset
448
heinrichsweikamp
parents:
diff changeset
449 ;=============================================================================
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
450
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
451 ; DELETE - not used any more ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
452 ; global calc_deko_surfmode
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
453 ;calc_deko_surfmode:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
454 ;
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
455 ; ; DELETE - deco_calc_wo_deco_step_1_min uses int_I_pres_surface, not int_I_pres_respiration ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
456 ; ; SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy surface air pressure to deco routine
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
457 ;
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
458 ; call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
459 ;
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
460 ; ; NEW ## no fly
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
461 ; ; call deco_calc_desaturation_time
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
462 ;
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
463 ; banksel common
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
464 ; return
0
heinrichsweikamp
parents:
diff changeset
465
heinrichsweikamp
parents:
diff changeset
466 test_switches_surfmode: ; checks switches in surfacemode
heinrichsweikamp
parents:
diff changeset
467 btfsc switch_right
heinrichsweikamp
parents:
diff changeset
468 bra test_switches_surfmode2
heinrichsweikamp
parents:
diff changeset
469 btfsc switch_left
heinrichsweikamp
parents:
diff changeset
470 bra test_switches_surfmode3
heinrichsweikamp
parents:
diff changeset
471
heinrichsweikamp
parents:
diff changeset
472 ; No button press
heinrichsweikamp
parents:
diff changeset
473 return
heinrichsweikamp
parents:
diff changeset
474
heinrichsweikamp
parents:
diff changeset
475 test_switches_surfmode3:
382
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
476 movlw .6
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
477 cpfseq menupos3 ; in compass view?
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
478 bra test_switches_surfmode3a ; No
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
479
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
480 btfsc premenu ; already shown "Bearing"
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
481 bra test_switches_surfmode3b ; Yes, remove it
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
482
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
483 extern TFT_surf_set_bearing
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
484 call TFT_surf_set_bearing ; Yes.
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
485 bcf switch_left
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
486 return
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
487
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
488 test_switches_surfmode3a:
0
heinrichsweikamp
parents:
diff changeset
489 bcf switch_left
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 535
diff changeset
490 bsf menubit ; Enter Menu!
0
heinrichsweikamp
parents:
diff changeset
491 return
heinrichsweikamp
parents:
diff changeset
492
382
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
493 test_switches_surfmode3b:
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
494 ; Clear "Heading?"
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
495 WIN_BOX_BLACK .158,.190, .15, .99 ; top, bottom, left, right
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
496 bcf premenu
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
497 bcf switch_left
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
498 return
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
499
0
heinrichsweikamp
parents:
diff changeset
500 test_switches_surfmode2:
382
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
501 movlw .6
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
502 cpfseq menupos3 ; in compass view?
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
503 bra test_switches_surfmode2a ; No
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
504 btfss premenu ; "Heading?" shown?
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
505 bra test_switches_surfmode2a ; No
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
506 ; Set new heading
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
507 bcf premenu
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
508 bsf compass_bearing_set
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
509 movff compass_heading_shown+0,compass_bearing+0
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
510 movff compass_heading_shown+1,compass_bearing+1
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
511 bcf switch_right
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
512 return
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
513
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
514 test_switches_surfmode2a:
0
heinrichsweikamp
parents:
diff changeset
515 bcf switch_right
heinrichsweikamp
parents:
diff changeset
516 bsf toggle_customview
382
6f3530eb48f9 allow compass bearing on surface
heinrichsweikamp
parents: 375
diff changeset
517 bcf premenu
0
heinrichsweikamp
parents:
diff changeset
518 clrf timeout_counter2 ; and reset timeout
heinrichsweikamp
parents:
diff changeset
519 return
heinrichsweikamp
parents:
diff changeset
520
heinrichsweikamp
parents:
diff changeset
521 global timeout_surfmode
heinrichsweikamp
parents:
diff changeset
522 timeout_surfmode:
188
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
523 movlw timeout_surfacemode ; [s] Default timeout
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
524 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
525 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
526 btfsc menubit ; in Menu?
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
527 bra timeout_testmode ; No, done.
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
528 ; Must be in surface mode
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
529 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
530 bra timeout_testmode ; No, not CCR
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
531 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
532
0
heinrichsweikamp
parents:
diff changeset
533 global timeout_testmode
heinrichsweikamp
parents:
diff changeset
534 timeout_testmode:
heinrichsweikamp
parents:
diff changeset
535 incf timeout_counter2,F ; increase timeout counter
heinrichsweikamp
parents:
diff changeset
536 cpfsgt timeout_counter2 ; Compare with timeout_counter2
heinrichsweikamp
parents:
diff changeset
537 return ; return, no timeout
heinrichsweikamp
parents:
diff changeset
538 bsf sleepmode ; Set Flag
heinrichsweikamp
parents:
diff changeset
539 return ; Return
heinrichsweikamp
parents:
diff changeset
540
heinrichsweikamp
parents:
diff changeset
541 END