annotate src/menu_tree.asm @ 488:63b3f07aac94

docu update
author heinrichsweikamp
date Mon, 27 Mar 2017 15:49:00 +0200
parents 3e643ec05dac
children 0910c227018f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
heinrichsweikamp
parents:
diff changeset
3 ; File menu_tree.asm
heinrichsweikamp
parents:
diff changeset
4 ;
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 269
diff changeset
5 ; OSTC menus
0
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-07-11 : [jDG] Creation.
heinrichsweikamp
parents:
diff changeset
11
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 269
diff changeset
12 #include "hwos.inc" ; Mandatory header
0
heinrichsweikamp
parents:
diff changeset
13 #include "gaslist.inc"
heinrichsweikamp
parents:
diff changeset
14 #include "menu_processor.inc"
heinrichsweikamp
parents:
diff changeset
15 #include "start.inc"
heinrichsweikamp
parents:
diff changeset
16 #include "comm.inc"
heinrichsweikamp
parents:
diff changeset
17 #include "logbook.inc"
heinrichsweikamp
parents:
diff changeset
18 #include "tft.inc"
heinrichsweikamp
parents:
diff changeset
19 #include "eeprom_rs232.inc"
heinrichsweikamp
parents:
diff changeset
20 #include "external_flash.inc"
heinrichsweikamp
parents:
diff changeset
21 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c
heinrichsweikamp
parents:
diff changeset
22 #include "isr.inc"
heinrichsweikamp
parents:
diff changeset
23 #include "ghostwriter.inc"
heinrichsweikamp
parents:
diff changeset
24 #include "adc_lightsensor.inc"
355
093b32bf6db2 hud v3 support
heinrichsweikamp
parents: 345
diff changeset
25 #include "wait.inc"
457
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
26 #include "i2c.inc"
0
heinrichsweikamp
parents:
diff changeset
27
174
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
28 CBLOCK tmp+0x40 ; Keep space for menu processor
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
29 gaslist_gas ; Check ram position in gaslist.asm, too!
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
30 ENDC
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
31
0
heinrichsweikamp
parents:
diff changeset
32 gui CODE
heinrichsweikamp
parents:
diff changeset
33 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
34 ; Main Menu
66
00636132cca6 BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents: 64
diff changeset
35 global do_main_menu,do_main_menu2
0
heinrichsweikamp
parents:
diff changeset
36 do_main_menu:
39
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 23
diff changeset
37 movff menupos3,customview_surfmode; save last customview
66
00636132cca6 BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents: 64
diff changeset
38 do_main_menu2:
0
heinrichsweikamp
parents:
diff changeset
39 bcf sleepmode ; for timeout
heinrichsweikamp
parents:
diff changeset
40 call menu_processor_reset ; restart from first icon.
heinrichsweikamp
parents:
diff changeset
41
heinrichsweikamp
parents:
diff changeset
42 do_continue_main_menu:
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
43 rcall menu_tree_double_pop ; drop exit line and back to last line
0
heinrichsweikamp
parents:
diff changeset
44
heinrichsweikamp
parents:
diff changeset
45 extern do_demo_divemode, restart
heinrichsweikamp
parents:
diff changeset
46 MENU_BEGIN tMainMenu, .7
heinrichsweikamp
parents:
diff changeset
47 MENU_CALL tLogbook, logbook
heinrichsweikamp
parents:
diff changeset
48 MENU_CALL tGasSetup, do_gas_menu
heinrichsweikamp
parents:
diff changeset
49 MENU_CALL tCCRSetup, do_ccr_menu
heinrichsweikamp
parents:
diff changeset
50 MENU_CALL tPlan, do_planner_menu_reset
heinrichsweikamp
parents:
diff changeset
51 MENU_CALL tDiveModeMenu, do_divemode_menu
heinrichsweikamp
parents:
diff changeset
52 MENU_CALL tSystSets, do_settings_menu
heinrichsweikamp
parents:
diff changeset
53 MENU_CALL tExit, restart
heinrichsweikamp
parents:
diff changeset
54 MENU_END
heinrichsweikamp
parents:
diff changeset
55
heinrichsweikamp
parents:
diff changeset
56 do_info_menu:
453
b4f28ab23b87 NEW: Show Uptime (Time since last firmware boot) in information menu
heinrichsweikamp
parents: 451
diff changeset
57 MENU_BEGIN tInfoMenu, .6
0
heinrichsweikamp
parents:
diff changeset
58 MENU_DYNAMIC info_menu_serial, 0
heinrichsweikamp
parents:
diff changeset
59 MENU_DYNAMIC info_menu_firmware, 0
heinrichsweikamp
parents:
diff changeset
60 MENU_DYNAMIC info_menu_total_dives, 0
62
e7c7c7eeea58 show battery voltage in info menu
heinrichsweikamp
parents: 50
diff changeset
61 MENU_DYNAMIC info_menu_battery_volts,0
453
b4f28ab23b87 NEW: Show Uptime (Time since last firmware boot) in information menu
heinrichsweikamp
parents: 451
diff changeset
62 MENU_DYNAMIC info_menu_uptime,0
0
heinrichsweikamp
parents:
diff changeset
63 MENU_CALL tExit, do_return_settings
heinrichsweikamp
parents:
diff changeset
64 MENU_END
heinrichsweikamp
parents:
diff changeset
65
heinrichsweikamp
parents:
diff changeset
66 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
67 ; CCR Setup
heinrichsweikamp
parents:
diff changeset
68
heinrichsweikamp
parents:
diff changeset
69 return_ccr_menu:
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
70 rcall menu_tree_double_pop ; drop exit line and back to last line
0
heinrichsweikamp
parents:
diff changeset
71
heinrichsweikamp
parents:
diff changeset
72 do_ccr_menu:
113
heinrichsweikamp
parents: 104
diff changeset
73 bcf menu_show_sensors ; Clear flag
heinrichsweikamp
parents: 104
diff changeset
74 bcf menu_show_sensors2 ; Clear flag
236
e2ea74646127 configure hardware_flag byte
heinrichsweikamp
parents: 235
diff changeset
75 btfsc analog_o2_input
240
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
76 bra do_ccr_menu_cR
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
77 btfss optical_input
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
78 bra do_ccr_menu_ostc2
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
79
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
80 MENU_BEGIN tCCRSetup, .6 ; OSTC3 menu
174
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
81 MENU_OPTION tCCRMode, oCCRMode, 0
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
82 MENU_CALL tCCRSensor, do_ccr_sensor
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
83 MENU_CALL tDiluentSetup, do_diluent_setup
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
84 MENU_CALL tFixedSetpoints, do_fixed_setpoints
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
85 MENU_CALL tPSCRMenu, do_PSCR_menu
174
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
86 MENU_CALL tExit, do_continue_main_menu
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
87 MENU_END
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
88
240
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
89 do_ccr_menu_cR: ; cR menu
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
90 MENU_BEGIN tCCRSetup, .7
0
heinrichsweikamp
parents:
diff changeset
91 MENU_OPTION tCCRMode, oCCRMode, 0
heinrichsweikamp
parents:
diff changeset
92 MENU_CALL tCCRSensor, do_ccr_sensor
113
heinrichsweikamp
parents: 104
diff changeset
93 MENU_CALL tCalibrateMenu, do_calibrate_menu
0
heinrichsweikamp
parents:
diff changeset
94 MENU_CALL tDiluentSetup, do_diluent_setup
heinrichsweikamp
parents:
diff changeset
95 MENU_CALL tFixedSetpoints, do_fixed_setpoints
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
96 MENU_CALL tPSCRMenu, do_PSCR_menu
0
heinrichsweikamp
parents:
diff changeset
97 MENU_CALL tExit, do_continue_main_menu
heinrichsweikamp
parents:
diff changeset
98 MENU_END
heinrichsweikamp
parents:
diff changeset
99
240
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
100 do_ccr_menu_ostc2:
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
101 MENU_BEGIN tCCRSetup, .5 ; ostc2 menu
359
2be48ccfa9de make AUTO SP available on OSTC2 hardware
heinrichsweikamp
parents: 355
diff changeset
102 MENU_OPTION tCCRMode, oCCRMode, 0
240
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
103 MENU_CALL tDiluentSetup, do_diluent_setup
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
104 MENU_CALL tFixedSetpoints, do_fixed_setpoints
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
105 MENU_CALL tPSCRMenu, do_PSCR_menu
240
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
106 MENU_CALL tExit, do_continue_main_menu
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
107 MENU_END
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
108
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
109 do_PSCR_menu:
481
3e643ec05dac cleanup pscr menu
heinrichsweikamp
parents: 480
diff changeset
110 MENU_BEGIN tPSCRMenu, .3 ; PSCR Menu
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
111 MENU_OPTION tPSCR_O2_drop, oPSCR_drop, 0
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
112 MENU_OPTION tPSCR_lungratio,oPSCR_lungratio, 0
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
113 MENU_CALL tExit, do_ccr_menu
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 477
diff changeset
114 MENU_END
240
633c7a6de5bc auto-select correct ccr menu
heinrichsweikamp
parents: 236
diff changeset
115
113
heinrichsweikamp
parents: 104
diff changeset
116 do_calibrate_menu:
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 174
diff changeset
117 call enable_ir_s8 ; Enable IR/S8-Port
113
heinrichsweikamp
parents: 104
diff changeset
118 bsf menu_show_sensors2 ; Set flag
heinrichsweikamp
parents: 104
diff changeset
119 do_calibrate_menu2:
heinrichsweikamp
parents: 104
diff changeset
120 MENU_BEGIN tCalibrateMenu, .6
heinrichsweikamp
parents: 104
diff changeset
121 MENU_CALL tDiveHudMask1, 0
heinrichsweikamp
parents: 104
diff changeset
122 MENU_CALL tDiveHudMask2, 0
heinrichsweikamp
parents: 104
diff changeset
123 MENU_CALL tDiveHudMask3, 0
heinrichsweikamp
parents: 104
diff changeset
124 MENU_OPTION tCalibrationGas,oCalGasO2, 0
heinrichsweikamp
parents: 104
diff changeset
125 MENU_CALL tCalibrate, do_calibrate_mix
heinrichsweikamp
parents: 104
diff changeset
126 MENU_CALL tExit, return_ccr_menu
heinrichsweikamp
parents: 104
diff changeset
127 MENU_END
heinrichsweikamp
parents: 104
diff changeset
128
heinrichsweikamp
parents: 104
diff changeset
129 do_calibrate_mix:
heinrichsweikamp
parents: 104
diff changeset
130 extern calibrate_mix
heinrichsweikamp
parents: 104
diff changeset
131 call calibrate_mix ; Calibrate with opt_calibration_O2_ratio, also calibrate S8 HUD if connected
355
093b32bf6db2 hud v3 support
heinrichsweikamp
parents: 345
diff changeset
132 WAITMS d'250' ; Wait for HUD v3
113
heinrichsweikamp
parents: 104
diff changeset
133 goto restart ; Restart into surface mode
heinrichsweikamp
parents: 104
diff changeset
134
0
heinrichsweikamp
parents:
diff changeset
135 do_ccr_sensor:
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 174
diff changeset
136 call enable_ir_s8 ; Enable IR/S8-Port
0
heinrichsweikamp
parents:
diff changeset
137 bsf menu_show_sensors ; Set flag
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 144
diff changeset
138 MENU_BEGIN tCCRSensor, .5
0
heinrichsweikamp
parents:
diff changeset
139 MENU_CALL tDiveHudMask1, 0
heinrichsweikamp
parents:
diff changeset
140 MENU_CALL tDiveHudMask2, 0
heinrichsweikamp
parents:
diff changeset
141 MENU_CALL tDiveHudMask3, 0
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 144
diff changeset
142 MENU_OPTION tSensorFallback,oSensorFallback, 0
0
heinrichsweikamp
parents:
diff changeset
143 MENU_CALL tExit, return_ccr_menu
heinrichsweikamp
parents:
diff changeset
144 MENU_END
heinrichsweikamp
parents:
diff changeset
145
heinrichsweikamp
parents:
diff changeset
146 do_diluent_setup:
heinrichsweikamp
parents:
diff changeset
147 bsf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10")
139
e0b758865e91 some cleanup
heinrichsweikamp
parents: 113
diff changeset
148 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint
0
heinrichsweikamp
parents:
diff changeset
149 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth
heinrichsweikamp
parents:
diff changeset
150 MENU_BEGIN tDiluentSetup, .6
heinrichsweikamp
parents:
diff changeset
151 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
152 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
153 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
154 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
155 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
156 MENU_CALL tExit, return_ccr_menu
heinrichsweikamp
parents:
diff changeset
157 MENU_END
heinrichsweikamp
parents:
diff changeset
158
heinrichsweikamp
parents:
diff changeset
159 do_return_fixed_setpoints:
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
160 rcall menu_tree_double_pop ; drop exit line and back to last line
0
heinrichsweikamp
parents:
diff changeset
161
heinrichsweikamp
parents:
diff changeset
162 do_fixed_setpoints:
139
e0b758865e91 some cleanup
heinrichsweikamp
parents: 113
diff changeset
163 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint
0
heinrichsweikamp
parents:
diff changeset
164 MENU_BEGIN tFixedSetpoints, .6
heinrichsweikamp
parents:
diff changeset
165 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu
heinrichsweikamp
parents:
diff changeset
166 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu
heinrichsweikamp
parents:
diff changeset
167 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu
heinrichsweikamp
parents:
diff changeset
168 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu
heinrichsweikamp
parents:
diff changeset
169 MENU_DYNAMIC gaslist_strcat_setpoint, do_edit_sp_menu
heinrichsweikamp
parents:
diff changeset
170 MENU_CALL tExit, return_ccr_menu
heinrichsweikamp
parents:
diff changeset
171 MENU_END
heinrichsweikamp
parents:
diff changeset
172
heinrichsweikamp
parents:
diff changeset
173 do_edit_sp_menu:
heinrichsweikamp
parents:
diff changeset
174 call gaslist_setSP ; Save current item.
heinrichsweikamp
parents:
diff changeset
175 MENU_BEGIN tFixedSetpoints, .5
heinrichsweikamp
parents:
diff changeset
176 MENU_DYNAMIC gaslist_strcat_setpoint_0,0
heinrichsweikamp
parents:
diff changeset
177 MENU_CALL tSPPlus, gaslist_spplus
heinrichsweikamp
parents:
diff changeset
178 MENU_CALL tDepthPlus, gaslist_spdepthplus
heinrichsweikamp
parents:
diff changeset
179 MENU_CALL tDepthMinus, gaslist_spdepthminus
heinrichsweikamp
parents:
diff changeset
180 MENU_CALL tExit, do_return_fixed_setpoints
heinrichsweikamp
parents:
diff changeset
181 MENU_END
heinrichsweikamp
parents:
diff changeset
182
heinrichsweikamp
parents:
diff changeset
183 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
184 ; OC Gas Setup
heinrichsweikamp
parents:
diff changeset
185
heinrichsweikamp
parents:
diff changeset
186 return_gas_menu:
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
187 rcall menu_tree_double_pop ; drop exit line and back to last line
0
heinrichsweikamp
parents:
diff changeset
188
heinrichsweikamp
parents:
diff changeset
189 btfsc ccr_diluent_setup ; Return to CCR-Menu?
heinrichsweikamp
parents:
diff changeset
190 bra do_diluent_setup ; Yes.
heinrichsweikamp
parents:
diff changeset
191 do_gas_menu:
heinrichsweikamp
parents:
diff changeset
192 bcf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10")
139
e0b758865e91 some cleanup
heinrichsweikamp
parents: 113
diff changeset
193 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint
0
heinrichsweikamp
parents:
diff changeset
194 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth
heinrichsweikamp
parents:
diff changeset
195 MENU_BEGIN tGaslist, .6
heinrichsweikamp
parents:
diff changeset
196 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
197 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
198 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
199 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
200 MENU_DYNAMIC gaslist_strcat_gas_mod, do_edit_gas_menu
heinrichsweikamp
parents:
diff changeset
201 MENU_CALL tExit, do_continue_main_menu
heinrichsweikamp
parents:
diff changeset
202 MENU_END
heinrichsweikamp
parents:
diff changeset
203
heinrichsweikamp
parents:
diff changeset
204 return_gas_depth:
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
205 rcall menu_tree_double_pop ; drop exit line and back to last line
0
heinrichsweikamp
parents:
diff changeset
206 bra do_edit_gas_menu_1
heinrichsweikamp
parents:
diff changeset
207
heinrichsweikamp
parents:
diff changeset
208 do_edit_gas_menu:
heinrichsweikamp
parents:
diff changeset
209 call gaslist_setgas ; Save current item.
heinrichsweikamp
parents:
diff changeset
210 do_edit_gas_menu_1: ; Keep current gas.
heinrichsweikamp
parents:
diff changeset
211 MENU_BEGIN tGasEdit, .6
heinrichsweikamp
parents:
diff changeset
212 MENU_DYNAMIC gaslist_gastitle, 0
heinrichsweikamp
parents:
diff changeset
213 MENU_DYNAMIC gaslist_MOD_END, 0
heinrichsweikamp
parents:
diff changeset
214 MENU_DYNAMIC gaslist_show_type, gaslist_toggle_type
heinrichsweikamp
parents:
diff changeset
215 MENU_CALL tSetup_mix, do_setup_mix
heinrichsweikamp
parents:
diff changeset
216 MENU_CALL tGasDepth, do_gas_depth_menu
heinrichsweikamp
parents:
diff changeset
217 MENU_CALL tExit, return_gas_menu
heinrichsweikamp
parents:
diff changeset
218 MENU_END
heinrichsweikamp
parents:
diff changeset
219
heinrichsweikamp
parents:
diff changeset
220 do_setup_mix:
heinrichsweikamp
parents:
diff changeset
221 MENU_BEGIN tGasEdit, .7
heinrichsweikamp
parents:
diff changeset
222 MENU_DYNAMIC gaslist_gastitle, 0
heinrichsweikamp
parents:
diff changeset
223 MENU_DYNAMIC gaslist_MOD_END, 0
heinrichsweikamp
parents:
diff changeset
224 MENU_CALL tO2Plus, gaslist_pO2
heinrichsweikamp
parents:
diff changeset
225 MENU_CALL tO2Minus, gaslist_mO2
heinrichsweikamp
parents:
diff changeset
226 MENU_CALL tHePlus, gaslist_pHe
heinrichsweikamp
parents:
diff changeset
227 MENU_CALL tHeMinus, gaslist_mHe
heinrichsweikamp
parents:
diff changeset
228 MENU_CALL tExit, return_gas_depth
heinrichsweikamp
parents:
diff changeset
229 MENU_END
heinrichsweikamp
parents:
diff changeset
230
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
231 menu_tree_double_pop:
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
232 call menu_processor_pop ; drop exit line.
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
233 goto menu_processor_pop ; back to last gas and return
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
234
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
235
0
heinrichsweikamp
parents:
diff changeset
236 global do_gas_depth_menu
heinrichsweikamp
parents:
diff changeset
237 do_gas_depth_menu:
174
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
238 movff gaslist_gas,WREG
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
239 lfsr FSR1,opt_gas_type ; Read opt_gas_type[WREG]
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
240 movff PLUSW1,lo ; Used as temp
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
241 movlw .3 ; 3=Deco
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
242 btfsc ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10")
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
243 movlw .2 ; 2=Normal
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
244 cpfseq lo
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
245 bra return_gas_depth ; Non-Deco gas or "Normal" Diluent, Return!
932e91074bdb CHANGE: Clarify Travel Gases with "---" as change depth
heinrichsweikamp
parents: 155
diff changeset
246
154
afa31c815f24 NEW: Show ppO2 for change depth during gas setup
heinrichsweikamp
parents: 148
diff changeset
247 MENU_BEGIN tGasEdit, .7
0
heinrichsweikamp
parents:
diff changeset
248 MENU_DYNAMIC gaslist_gastitle, 0
heinrichsweikamp
parents:
diff changeset
249 MENU_DYNAMIC gaslist_MOD_END, 0
154
afa31c815f24 NEW: Show ppO2 for change depth during gas setup
heinrichsweikamp
parents: 148
diff changeset
250 MENU_DYNAMIC gaslist_ppo2, 0 ; ppO2 at change depth
0
heinrichsweikamp
parents:
diff changeset
251 MENU_CALL tDepthPlus, gaslist_pDepth
heinrichsweikamp
parents:
diff changeset
252 MENU_CALL tDepthMinus, gaslist_mDepth
heinrichsweikamp
parents:
diff changeset
253 MENU_DYNAMIC gaslist_reset_mod_title,gaslist_reset_mod
heinrichsweikamp
parents:
diff changeset
254 MENU_CALL tExit, return_gas_depth
heinrichsweikamp
parents:
diff changeset
255 MENU_END
heinrichsweikamp
parents:
diff changeset
256
heinrichsweikamp
parents:
diff changeset
257 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
258 ; Simulator menus
heinrichsweikamp
parents:
diff changeset
259
heinrichsweikamp
parents:
diff changeset
260 global do_planner_menu
heinrichsweikamp
parents:
diff changeset
261
heinrichsweikamp
parents:
diff changeset
262 do_planner_menu_reset:
heinrichsweikamp
parents:
diff changeset
263 extern option_save_all
heinrichsweikamp
parents:
diff changeset
264 call option_save_all
heinrichsweikamp
parents:
diff changeset
265 ;---- Reset dive time/depth to default values
heinrichsweikamp
parents:
diff changeset
266 extern option_reset
heinrichsweikamp
parents:
diff changeset
267 lfsr FSR0,odiveInterval
heinrichsweikamp
parents:
diff changeset
268 call option_reset
heinrichsweikamp
parents:
diff changeset
269 lfsr FSR0,obottomTime
heinrichsweikamp
parents:
diff changeset
270 call option_reset
heinrichsweikamp
parents:
diff changeset
271 lfsr FSR0,obottomDepth
heinrichsweikamp
parents:
diff changeset
272 call option_reset
heinrichsweikamp
parents:
diff changeset
273
heinrichsweikamp
parents:
diff changeset
274 do_planner_menu:
heinrichsweikamp
parents:
diff changeset
275 extern do_demo_planner
298
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
276 MENU_BEGIN tPlan, .7
0
heinrichsweikamp
parents:
diff changeset
277 MENU_CALL tInter, do_demo_divemode
heinrichsweikamp
parents:
diff changeset
278 MENU_OPTION tIntvl, odiveInterval, 0
heinrichsweikamp
parents:
diff changeset
279 MENU_OPTION tBtTm, obottomTime, 0
heinrichsweikamp
parents:
diff changeset
280 MENU_OPTION tMxDep, obottomDepth, 0
heinrichsweikamp
parents:
diff changeset
281 MENU_CALL tDeco, do_demo_planner
298
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
282 MENU_CALL tSystSets, do_planner_config
0
heinrichsweikamp
parents:
diff changeset
283 MENU_CALL tExit, do_continue_main_menu
heinrichsweikamp
parents:
diff changeset
284 MENU_END
heinrichsweikamp
parents:
diff changeset
285
298
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
286 do_planner_config:
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
287 MENU_BEGIN tPlan, .3
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
288 MENU_OPTION tSetBotUse, obottom_usage, 0
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
289 MENU_OPTION tSetDecoUse, odeco_usage, 0
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
290 MENU_CALL tExit, do_planner_menu
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
291 MENU_END
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
292
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 275
diff changeset
293
0
heinrichsweikamp
parents:
diff changeset
294 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
295 ; Divemode menu
heinrichsweikamp
parents:
diff changeset
296
heinrichsweikamp
parents:
diff changeset
297 do_return_divemode_menu:
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
298 rcall menu_tree_double_pop ; drop exit line and back to last line
0
heinrichsweikamp
parents:
diff changeset
299
heinrichsweikamp
parents:
diff changeset
300 do_divemode_menu:
heinrichsweikamp
parents:
diff changeset
301 MENU_BEGIN tDiveModeMenu, .7
heinrichsweikamp
parents:
diff changeset
302 MENU_OPTION tDvMode, oDiveMode, 0
heinrichsweikamp
parents:
diff changeset
303 MENU_OPTION tDkMode, oDecoMode, 0
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 90
diff changeset
304 MENU_CALL tppO2settings, do_ppo2_menu
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 90
diff changeset
305 MENU_OPTION tsafetystopmenu,oSafetyStop, 0
0
heinrichsweikamp
parents:
diff changeset
306 MENU_OPTION tFTTSMenu, oExtraTime,0
heinrichsweikamp
parents:
diff changeset
307 MENU_CALL tDecoparameters, do_decoparameters_menu
heinrichsweikamp
parents:
diff changeset
308 MENU_CALL tExit, do_continue_main_menu
heinrichsweikamp
parents:
diff changeset
309 MENU_END
heinrichsweikamp
parents:
diff changeset
310
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 90
diff changeset
311 do_ppo2_menu:
337
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
312 MENU_BEGIN tppO2settings, .4
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 90
diff changeset
313 MENU_DYNAMIC divesets_ppo2_max, do_toggle_ppo2_max
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 90
diff changeset
314 MENU_DYNAMIC divesets_ppo2_min, do_toggle_ppo2_min
337
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
315 MENU_OPTION tShowppO2, oShowppO2, 0
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 90
diff changeset
316 MENU_CALL tExit, do_return_divemode_menu
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 90
diff changeset
317 MENU_END
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 90
diff changeset
318
0
heinrichsweikamp
parents:
diff changeset
319 do_return_decoparameters_menu:
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
320 rcall menu_tree_double_pop ; drop exit line and back to last line
0
heinrichsweikamp
parents:
diff changeset
321 do_decoparameters_menu:
heinrichsweikamp
parents:
diff changeset
322 MENU_BEGIN tDecoparameters, .7
heinrichsweikamp
parents:
diff changeset
323 MENU_OPTION tGF_low, oGF_low, 0
heinrichsweikamp
parents:
diff changeset
324 MENU_OPTION tGF_high, oGF_high, 0
heinrichsweikamp
parents:
diff changeset
325 MENU_CALL taGFMenu, do_aGF_menu
heinrichsweikamp
parents:
diff changeset
326 MENU_OPTION tSaturationMult,osatmult, 0
heinrichsweikamp
parents:
diff changeset
327 MENU_OPTION tDesaturationMult,odesatmult,0
heinrichsweikamp
parents:
diff changeset
328 MENU_OPTION tLastDecostop,oLastDeco, 0
heinrichsweikamp
parents:
diff changeset
329 MENU_CALL tExit, do_return_divemode_menu
heinrichsweikamp
parents:
diff changeset
330 MENU_END
heinrichsweikamp
parents:
diff changeset
331
heinrichsweikamp
parents:
diff changeset
332 do_aGF_menu:
heinrichsweikamp
parents:
diff changeset
333 MENU_BEGIN taGFMenu, .4
heinrichsweikamp
parents:
diff changeset
334 MENU_OPTION taGF_enable,oEnable_aGF, 0
heinrichsweikamp
parents:
diff changeset
335 MENU_OPTION taGF_low, oaGF_low, 0
heinrichsweikamp
parents:
diff changeset
336 MENU_OPTION taGF_high, oaGF_high, 0
heinrichsweikamp
parents:
diff changeset
337 MENU_CALL tExit, do_return_decoparameters_menu
heinrichsweikamp
parents:
diff changeset
338 MENU_END
heinrichsweikamp
parents:
diff changeset
339 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
340 ; Setup Menu
heinrichsweikamp
parents:
diff changeset
341
heinrichsweikamp
parents:
diff changeset
342 do_return_settings:
heinrichsweikamp
parents:
diff changeset
343 bcf settime_setdate ; Clear flag
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
344 rcall menu_tree_double_pop ; drop exit line and back to last line
0
heinrichsweikamp
parents:
diff changeset
345
heinrichsweikamp
parents:
diff changeset
346 extern compass_calibration_loop
heinrichsweikamp
parents:
diff changeset
347 do_settings_menu:
345
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
348 btfsc ble_available ; ble available
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
349 bra do_settings_menu_ble ; Yes.
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
350 MENU_BEGIN tSystSets, .6
0
heinrichsweikamp
parents:
diff changeset
351 MENU_CALL tInfoMenu, do_info_menu
heinrichsweikamp
parents:
diff changeset
352 MENU_CALL tSetTimeDate, do_date_time_menu
heinrichsweikamp
parents:
diff changeset
353 MENU_CALL tDispSets, do_dispsets_menu
heinrichsweikamp
parents:
diff changeset
354 MENU_OPTION tLanguage, oLanguage, 0
155
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
355 MENU_CALL tMore, do_settings_menu_more
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
356 MENU_CALL tExit, do_continue_main_menu
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
357 MENU_END
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
358
345
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
359 do_settings_menu_ble:
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
360 MENU_BEGIN tSystSets, .7
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
361 MENU_CALL tInfoMenu, do_info_menu
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
362 MENU_CALL tBleTitle, comm_mode0
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
363 MENU_CALL tSetTimeDate, do_date_time_menu
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
364 MENU_CALL tDispSets, do_dispsets_menu
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
365 MENU_OPTION tLanguage, oLanguage, 0
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
366 MENU_CALL tMore, do_settings_menu_more
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
367 MENU_CALL tExit, do_continue_main_menu
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
368 MENU_END
326
d21b172d5a7a VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents: 307
diff changeset
369
d21b172d5a7a VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents: 307
diff changeset
370 do_return_settings_more:
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
371 rcall menu_tree_double_pop ; drop exit line and back to last line
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
372
155
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
373 do_settings_menu_more:
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
374 btfsc battery_gauge_available ; piezo buttons available
269
1207cf9a9408 adjust menu for different hardware versions
heinrichsweikamp
parents: 243
diff changeset
375 bra do_settings_menu_more_piezo
243
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
376 btfsc ble_available ; ble available
269
1207cf9a9408 adjust menu for different hardware versions
heinrichsweikamp
parents: 243
diff changeset
377 bra do_settings_menu_more_ostc3p
345
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
378 MENU_BEGIN tSystSets, .7
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
379 MENU_CALL tCompassMenu, do_compass_menu
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
380 MENU_CALL tLogOffset, do_log_offset_menu
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
381 MENU_OPTION tUnits, oUnits, 0
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
382 MENU_OPTION tSamplingrate,oSamplingRate,0
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
383 MENU_OPTION tDvSalinity,oDiveSalinity, 0
345
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
384 MENU_CALL tResetMenu, do_reset_menu
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
385 MENU_CALL tExit, do_return_settings
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
386 MENU_END
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
387
375
a9e35c1327aa 1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents: 359
diff changeset
388 do_settings_menu_more_piezo_exit:
a9e35c1327aa 1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents: 359
diff changeset
389 call TFT_ClearScreen
a9e35c1327aa 1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents: 359
diff changeset
390 extern piezo_config
a9e35c1327aa 1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents: 359
diff changeset
391 call piezo_config ; Configure buttons
a9e35c1327aa 1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents: 359
diff changeset
392
269
1207cf9a9408 adjust menu for different hardware versions
heinrichsweikamp
parents: 243
diff changeset
393 do_settings_menu_more_piezo:
218
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 200
diff changeset
394 MENU_BEGIN tSystSets, .7
18
4e3f133dfbf4 add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents: 0
diff changeset
395 MENU_CALL tCompassMenu, do_compass_menu
155
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
396 MENU_CALL tLogOffset, do_log_offset_menu
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
397 MENU_OPTION tUnits, oUnits, 0
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
398 MENU_OPTION tSamplingrate,oSamplingRate,0
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
399 MENU_OPTION tDvSalinity,oDiveSalinity, 0
345
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
400 MENU_CALL tMore, do_settings_piezo_menu
155
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 154
diff changeset
401 MENU_CALL tExit, do_return_settings
0
heinrichsweikamp
parents:
diff changeset
402 MENU_END
heinrichsweikamp
parents:
diff changeset
403
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
404 extern comm_mode0
243
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
405
345
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
406 do_settings_piezo_menu:
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
407 ; Menu with features only available in piezo button hardware
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
408 MENU_BEGIN tSystSets, .4
345
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
409 MENU_CALL tResetMenu, do_reset_menu
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
410 MENU_OPTION tButtonleft,ocR_button_left ,0 ; left button sensitivity
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
411 MENU_OPTION tButtonright,ocR_button_right,0 ; right button sensitivity
375
a9e35c1327aa 1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents: 359
diff changeset
412 MENU_CALL tExit, do_settings_menu_more_piezo_exit
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
413 MENU_END
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
414
269
1207cf9a9408 adjust menu for different hardware versions
heinrichsweikamp
parents: 243
diff changeset
415 do_settings_menu_more_ostc3p: ; Menu with BLE feature
243
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
416 MENU_BEGIN tSystSets, .7
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
417 MENU_CALL tCompassMenu, do_compass_menu
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
418 MENU_CALL tLogOffset, do_log_offset_menu
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
419 MENU_OPTION tUnits, oUnits, 0
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
420 MENU_OPTION tSamplingrate,oSamplingRate,0
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
421 MENU_OPTION tDvSalinity,oDiveSalinity, 0
345
3f2d0c0bc101 re-arrange settings menu
heinrichsweikamp
parents: 337
diff changeset
422 MENU_CALL tResetMenu, do_reset_menu
243
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
423 MENU_CALL tExit, do_return_settings
ee81f46714cb auto-select correct settings menu
heinrichsweikamp
parents: 240
diff changeset
424 MENU_END
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
425
18
4e3f133dfbf4 add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents: 0
diff changeset
426 do_compass_menu:
90
3274e87fd027 NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents: 78
diff changeset
427 MENU_BEGIN tSystSets, .2
18
4e3f133dfbf4 add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents: 0
diff changeset
428 MENU_CALL tCompassMenu, compass_calibration_loop
90
3274e87fd027 NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents: 78
diff changeset
429 ; MENU_OPTION tCompassGain, oCompassGain, 0
326
d21b172d5a7a VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents: 307
diff changeset
430 MENU_CALL tExit, do_return_settings_more
18
4e3f133dfbf4 add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents: 0
diff changeset
431 MENU_END
4e3f133dfbf4 add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents: 0
diff changeset
432
0
heinrichsweikamp
parents:
diff changeset
433 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
434 ; Reset and confirmation menu.
heinrichsweikamp
parents:
diff changeset
435
heinrichsweikamp
parents:
diff changeset
436 do_reset_menu:
63
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
437 MENU_BEGIN tResetMenu, .6
0
heinrichsweikamp
parents:
diff changeset
438 MENU_CALL tExit, do_return_settings
heinrichsweikamp
parents:
diff changeset
439 MENU_CALL tReboot, do_reset_menu2 ; Confirm
heinrichsweikamp
parents:
diff changeset
440 MENU_CALL tResetDeco, do_reset_menu3 ; Confirm
heinrichsweikamp
parents:
diff changeset
441 MENU_CALL tResetSettings, do_reset_menu4 ; Confirm
63
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
442 MENU_CALL tResetLogbook, do_reset_menu5 ; Confirm
0
heinrichsweikamp
parents:
diff changeset
443 MENU_CALL tResetBattery, new_battery_menu ; New Battery submenu
heinrichsweikamp
parents:
diff changeset
444 MENU_END
heinrichsweikamp
parents:
diff changeset
445
heinrichsweikamp
parents:
diff changeset
446 do_reset_menu2:
heinrichsweikamp
parents:
diff changeset
447 MENU_BEGIN tResetMenu2, .2
heinrichsweikamp
parents:
diff changeset
448 MENU_CALL tAbort, do_continue_menu_3stack
heinrichsweikamp
parents:
diff changeset
449 MENU_CALL tReboot, do_reboot ; Reboot
heinrichsweikamp
parents:
diff changeset
450 MENU_END
heinrichsweikamp
parents:
diff changeset
451
heinrichsweikamp
parents:
diff changeset
452 do_reset_menu3:
heinrichsweikamp
parents:
diff changeset
453 MENU_BEGIN tResetMenu2, .2
heinrichsweikamp
parents:
diff changeset
454 MENU_CALL tAbort, do_continue_menu_3stack
heinrichsweikamp
parents:
diff changeset
455 MENU_CALL tResetDeco, do_reset_deco ; Reset Deco
heinrichsweikamp
parents:
diff changeset
456 MENU_END
heinrichsweikamp
parents:
diff changeset
457
heinrichsweikamp
parents:
diff changeset
458 do_reset_menu4:
heinrichsweikamp
parents:
diff changeset
459 MENU_BEGIN tResetMenu2, .2
heinrichsweikamp
parents:
diff changeset
460 MENU_CALL tAbort, do_continue_menu_3stack
heinrichsweikamp
parents:
diff changeset
461 MENU_CALL tResetSettings, do_reset_settings ; Reset all settings
heinrichsweikamp
parents:
diff changeset
462 MENU_END
heinrichsweikamp
parents:
diff changeset
463
63
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
464 do_reset_menu5:
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
465 MENU_BEGIN tResetMenu2, .2
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
466 MENU_CALL tAbort, do_continue_menu_3stack
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
467 MENU_CALL tResetLogbook, do_reset_logbook ; Reset logbook
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
468 MENU_END
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
469
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
470 do_reset_logbook:
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
471 clrf EEADRH ; Make sure to select eeprom bank 0
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
472 clrf EEDATA
78
668b432dcae9 BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents: 76
diff changeset
473 read_int_eeprom .2
396
61984f91174a place total dives backup counter in eeprom 16:17
heinrichsweikamp
parents: 375
diff changeset
474 write_int_eeprom .16
78
668b432dcae9 BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents: 76
diff changeset
475 read_int_eeprom .3
396
61984f91174a place total dives backup counter in eeprom 16:17
heinrichsweikamp
parents: 375
diff changeset
476 write_int_eeprom .17 ; Copy number of dives
144
b839972db982 1.45 beta release
heinrichsweikamp
parents: 139
diff changeset
477 clrf EEDATA
78
668b432dcae9 BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents: 76
diff changeset
478 write_int_eeprom .2
668b432dcae9 BUGFIX: Reset Logbook did not reset Logbook TOC properly
mh@mh-THINK.localdomain
parents: 76
diff changeset
479 write_int_eeprom .3 ; Clear total dives
63
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
480 write_int_eeprom .4
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
481 write_int_eeprom .5
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
482 write_int_eeprom .6 ; Reset logbook pointers
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
483 call ext_flash_erase_logbook ; And complete logbook (!)
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
484 goto do_continue_main_menu ; back to menu
5c4d4a42e7a0 allow logbook erase from reset menu
heinrichsweikamp
parents: 50
diff changeset
485
0
heinrichsweikamp
parents:
diff changeset
486
heinrichsweikamp
parents:
diff changeset
487 do_reset_deco:
heinrichsweikamp
parents:
diff changeset
488 movlw d'79' ; 79% N2
heinrichsweikamp
parents:
diff changeset
489 movff WREG,char_I_N2_ratio
heinrichsweikamp
parents:
diff changeset
490 movlw d'0'
heinrichsweikamp
parents:
diff changeset
491 movff WREG,char_I_step_is_1min ; 2 second deco mode
heinrichsweikamp
parents:
diff changeset
492 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy for deco routine
heinrichsweikamp
parents:
diff changeset
493 movff int_I_pres_respiration+0,int_I_pres_surface+0 ; copy for desat routine
heinrichsweikamp
parents:
diff changeset
494 movff int_I_pres_respiration+1,int_I_pres_surface+1
heinrichsweikamp
parents:
diff changeset
495
heinrichsweikamp
parents:
diff changeset
496 extern deco_reset
heinrichsweikamp
parents:
diff changeset
497 call deco_reset
heinrichsweikamp
parents:
diff changeset
498 call deco_calc_desaturation_time ; calculate desaturation time
heinrichsweikamp
parents:
diff changeset
499 banksel common
heinrichsweikamp
parents:
diff changeset
500 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode
heinrichsweikamp
parents:
diff changeset
501 banksel common
heinrichsweikamp
parents:
diff changeset
502 clrf nofly_time+0 ; Reset NoFly
heinrichsweikamp
parents:
diff changeset
503 clrf nofly_time+1
heinrichsweikamp
parents:
diff changeset
504 clrf desaturation_time+0 ; Reset Desat
heinrichsweikamp
parents:
diff changeset
505 clrf desaturation_time+1
heinrichsweikamp
parents:
diff changeset
506 goto do_return_settings ; back to menu
heinrichsweikamp
parents:
diff changeset
507
heinrichsweikamp
parents:
diff changeset
508 do_reset_settings:
470
81faca166e1b minor: clear screen while resetting settings
heinrichsweikamp
parents: 464
diff changeset
509 call TFT_ClearScreen ; Clear screen
139
e0b758865e91 some cleanup
heinrichsweikamp
parents: 113
diff changeset
510 banksel common
0
heinrichsweikamp
parents:
diff changeset
511 extern option_reset_all
heinrichsweikamp
parents:
diff changeset
512 call option_reset_all ; Reset all options to factory default.
76
a5ea132770db 1.21 release
heinrichsweikamp
parents: 66
diff changeset
513 goto restart ; Restart into surfacemode
0
heinrichsweikamp
parents:
diff changeset
514
heinrichsweikamp
parents:
diff changeset
515 do_continue_menu_3stack: ; Return three levels deep
heinrichsweikamp
parents:
diff changeset
516 call menu_processor_pop
heinrichsweikamp
parents:
diff changeset
517 goto do_return_settings
heinrichsweikamp
parents:
diff changeset
518
heinrichsweikamp
parents:
diff changeset
519 do_reboot:
heinrichsweikamp
parents:
diff changeset
520 call ext_flash_enable_protection ; Enables write protection
heinrichsweikamp
parents:
diff changeset
521 reset
heinrichsweikamp
parents:
diff changeset
522
heinrichsweikamp
parents:
diff changeset
523
heinrichsweikamp
parents:
diff changeset
524 do_date_time_menu:
heinrichsweikamp
parents:
diff changeset
525 MENU_BEGIN tSetTimeDate, .4
heinrichsweikamp
parents:
diff changeset
526 MENU_CALL tSetTime, do_time_menu
heinrichsweikamp
parents:
diff changeset
527 MENU_CALL tSetDate, do_date_menu
heinrichsweikamp
parents:
diff changeset
528 MENU_OPTION tDateFormat,oDateFormat, 0
heinrichsweikamp
parents:
diff changeset
529 MENU_CALL tExit, do_return_settings
heinrichsweikamp
parents:
diff changeset
530 MENU_END
heinrichsweikamp
parents:
diff changeset
531
heinrichsweikamp
parents:
diff changeset
532 do_date_menu:
heinrichsweikamp
parents:
diff changeset
533 bsf settime_setdate
heinrichsweikamp
parents:
diff changeset
534 MENU_BEGIN tSetDate, .4
heinrichsweikamp
parents:
diff changeset
535 MENU_OPTION tSetDay, oSetDay, 0
50
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
536 MENU_OPTION tSetMonth, oSetMonth, 0
0
heinrichsweikamp
parents:
diff changeset
537 MENU_OPTION tSetYear, oSetYear, 0
heinrichsweikamp
parents:
diff changeset
538 MENU_CALL tExit, do_continue_menu_3stack
heinrichsweikamp
parents:
diff changeset
539 MENU_END
heinrichsweikamp
parents:
diff changeset
540
heinrichsweikamp
parents:
diff changeset
541
heinrichsweikamp
parents:
diff changeset
542 do_reset_seconds:
heinrichsweikamp
parents:
diff changeset
543 clrf secs
heinrichsweikamp
parents:
diff changeset
544 extern rtc_set_rtc
heinrichsweikamp
parents:
diff changeset
545 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module
heinrichsweikamp
parents:
diff changeset
546 do_time_menu:
heinrichsweikamp
parents:
diff changeset
547 bsf settime_setdate
heinrichsweikamp
parents:
diff changeset
548 MENU_BEGIN tSetTime, .4
heinrichsweikamp
parents:
diff changeset
549 MENU_OPTION tSetHours, oSetHours, 0
heinrichsweikamp
parents:
diff changeset
550 MENU_OPTION tSetMinutes,oSetMinutes, 0
heinrichsweikamp
parents:
diff changeset
551 MENU_CALL tSetSeconds, do_reset_seconds
heinrichsweikamp
parents:
diff changeset
552 MENU_CALL tExit, do_continue_menu_3stack
heinrichsweikamp
parents:
diff changeset
553 MENU_END
heinrichsweikamp
parents:
diff changeset
554
heinrichsweikamp
parents:
diff changeset
555
heinrichsweikamp
parents:
diff changeset
556 do_toggle_ppo2_max: ; add 0.1bar, with hard-coded max.
heinrichsweikamp
parents:
diff changeset
557 movff opt_ppO2_max,lo ; banksafe
heinrichsweikamp
parents:
diff changeset
558 movlw .10
heinrichsweikamp
parents:
diff changeset
559 addwf lo,F
heinrichsweikamp
parents:
diff changeset
560 movlw ppo2_highest_setting
heinrichsweikamp
parents:
diff changeset
561 cpfsgt lo
heinrichsweikamp
parents:
diff changeset
562 bra do_toggle_ppo2_max2
heinrichsweikamp
parents:
diff changeset
563 movlw .120
heinrichsweikamp
parents:
diff changeset
564 movwf lo
heinrichsweikamp
parents:
diff changeset
565 do_toggle_ppo2_max2:
heinrichsweikamp
parents:
diff changeset
566 movff lo,opt_ppO2_max
heinrichsweikamp
parents:
diff changeset
567 return
heinrichsweikamp
parents:
diff changeset
568
heinrichsweikamp
parents:
diff changeset
569 do_toggle_ppo2_min: ; sub 0.1bar, with hard-coded min.
heinrichsweikamp
parents:
diff changeset
570 movff opt_ppO2_min,lo ; banksafe
heinrichsweikamp
parents:
diff changeset
571 incf lo,F
heinrichsweikamp
parents:
diff changeset
572 movlw .21
heinrichsweikamp
parents:
diff changeset
573 cpfsgt lo
heinrichsweikamp
parents:
diff changeset
574 bra do_toggle_ppo2_min2
heinrichsweikamp
parents:
diff changeset
575 movlw ppo2_lowest_setting
heinrichsweikamp
parents:
diff changeset
576 movwf lo
heinrichsweikamp
parents:
diff changeset
577 do_toggle_ppo2_min2:
heinrichsweikamp
parents:
diff changeset
578 movff lo,opt_ppO2_min
heinrichsweikamp
parents:
diff changeset
579 return
heinrichsweikamp
parents:
diff changeset
580
heinrichsweikamp
parents:
diff changeset
581
heinrichsweikamp
parents:
diff changeset
582 ; Logbook offset sub-menu
heinrichsweikamp
parents:
diff changeset
583 do_log_offset_menu:
heinrichsweikamp
parents:
diff changeset
584 MENU_BEGIN tLogOffset, .6
heinrichsweikamp
parents:
diff changeset
585 MENU_DYNAMIC TFT_LogOffset_Logtitle, 0
heinrichsweikamp
parents:
diff changeset
586 MENU_CALL tLogOffsetp1, do_logoffset_plus1
heinrichsweikamp
parents:
diff changeset
587 MENU_CALL tLogOffsetp10, do_logoffset_plus10
heinrichsweikamp
parents:
diff changeset
588 MENU_CALL tLogOffsetm1, do_logoffset_minus1
heinrichsweikamp
parents:
diff changeset
589 MENU_CALL tLogOffsetm10, do_logoffset_minus10
326
d21b172d5a7a VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents: 307
diff changeset
590 MENU_CALL tExit, do_return_settings_more
0
heinrichsweikamp
parents:
diff changeset
591 MENU_END
heinrichsweikamp
parents:
diff changeset
592
heinrichsweikamp
parents:
diff changeset
593
heinrichsweikamp
parents:
diff changeset
594 do_logoffset_minus1:
heinrichsweikamp
parents:
diff changeset
595 call do_logoffset_common_read ; Read into lo:hi
heinrichsweikamp
parents:
diff changeset
596 movlw d'1'
heinrichsweikamp
parents:
diff changeset
597 subwf lo
heinrichsweikamp
parents:
diff changeset
598 movlw d'0'
heinrichsweikamp
parents:
diff changeset
599 subwfb hi
heinrichsweikamp
parents:
diff changeset
600 btfss hi,7 ; <0?
heinrichsweikamp
parents:
diff changeset
601 goto do_logoffset_common_write ; Store and return
heinrichsweikamp
parents:
diff changeset
602 clrf lo
heinrichsweikamp
parents:
diff changeset
603 clrf hi
heinrichsweikamp
parents:
diff changeset
604 goto do_logoffset_common_write ; Store and return
heinrichsweikamp
parents:
diff changeset
605
heinrichsweikamp
parents:
diff changeset
606 do_logoffset_minus10:
heinrichsweikamp
parents:
diff changeset
607 call do_logoffset_common_read ; Read into lo:hi
heinrichsweikamp
parents:
diff changeset
608 movlw d'10'
heinrichsweikamp
parents:
diff changeset
609 subwf lo
heinrichsweikamp
parents:
diff changeset
610 movlw d'0'
heinrichsweikamp
parents:
diff changeset
611 subwfb hi
heinrichsweikamp
parents:
diff changeset
612 btfss hi,7 ; <0?
heinrichsweikamp
parents:
diff changeset
613 goto do_logoffset_common_write ; Store and return
heinrichsweikamp
parents:
diff changeset
614 clrf lo
heinrichsweikamp
parents:
diff changeset
615 clrf hi
heinrichsweikamp
parents:
diff changeset
616 goto do_logoffset_common_write ; Store and return
heinrichsweikamp
parents:
diff changeset
617
heinrichsweikamp
parents:
diff changeset
618 do_logoffset_plus1:
heinrichsweikamp
parents:
diff changeset
619 call do_logoffset_common_read ; Read into lo:hi
148
022b886eddaf some cleanup
heinrichsweikamp
parents: 145
diff changeset
620 infsnz lo,F
022b886eddaf some cleanup
heinrichsweikamp
parents: 145
diff changeset
621 incf hi,F
0
heinrichsweikamp
parents:
diff changeset
622 goto do_logoffset_common_write ; Store and return
heinrichsweikamp
parents:
diff changeset
623
heinrichsweikamp
parents:
diff changeset
624 do_logoffset_plus10:
heinrichsweikamp
parents:
diff changeset
625 call do_logoffset_common_read ; Read into lo:hi
heinrichsweikamp
parents:
diff changeset
626 movlw d'10'
heinrichsweikamp
parents:
diff changeset
627 addwf lo
heinrichsweikamp
parents:
diff changeset
628 movlw d'0'
heinrichsweikamp
parents:
diff changeset
629 addwfc hi
heinrichsweikamp
parents:
diff changeset
630 goto do_logoffset_common_write ; Store and return
heinrichsweikamp
parents:
diff changeset
631
heinrichsweikamp
parents:
diff changeset
632 do_dispsets_menu_3stack:
50
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
633 bcf in_color_menu
428
eccae727702f some cleanup
heinrichsweikamp
parents: 396
diff changeset
634 rcall menu_tree_double_pop ; drop exit line and back to last line
0
heinrichsweikamp
parents:
diff changeset
635
heinrichsweikamp
parents:
diff changeset
636 do_dispsets_menu:
337
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
637 MENU_BEGIN tDispSets, .5
303
9b1b0b32e7d5 Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents: 298
diff changeset
638 MENU_OPTION tBright, oBrightness, 0
9b1b0b32e7d5 Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents: 298
diff changeset
639 MENU_CALL tColorScheme, do_color_scheme
9b1b0b32e7d5 Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents: 298
diff changeset
640 MENU_OPTION tFlip, oFlipScreen, 0
335
3d43da7acfe1 Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents: 333
diff changeset
641 MENU_CALL tMore, do_dispsets_menu_more
3d43da7acfe1 Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents: 333
diff changeset
642 MENU_CALL tExit, do_return_settings
3d43da7acfe1 Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents: 333
diff changeset
643 MENU_END
3d43da7acfe1 Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents: 333
diff changeset
644
3d43da7acfe1 Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents: 333
diff changeset
645 do_dispsets_menu_more:
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
646 MENU_BEGIN tDispSets, .5
337
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
647 MENU_OPTION tMODwarning, oMODwarning, 0
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
648 MENU_OPTION tVSItext2, oVSItextv2, 0
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
649 MENU_OPTION tVSIgraph, oVSIgraph, 0
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
650 MENU_OPTION tTimeoutDive, oDiveTimeout, 0
335
3d43da7acfe1 Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents: 333
diff changeset
651 MENU_CALL tExit, do_dispsets_menu_3stack
0
heinrichsweikamp
parents:
diff changeset
652 MENU_END
heinrichsweikamp
parents:
diff changeset
653
50
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
654 extern oColorSetDive
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
655 do_color_scheme:
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
656 bsf in_color_menu
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
657 MENU_BEGIN tColorScheme, .2
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
658 MENU_OPTION tColorSetDive,oColorSetDive, 0
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
659 MENU_CALL tExit, do_dispsets_menu_3stack
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
660 MENU_END
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
661
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 39
diff changeset
662
0
heinrichsweikamp
parents:
diff changeset
663 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
664
heinrichsweikamp
parents:
diff changeset
665 global new_battery_menu
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
666 extern surfloop
0
heinrichsweikamp
parents:
diff changeset
667 new_battery_menu:
heinrichsweikamp
parents:
diff changeset
668 bsf enable_screen_dumps ; To prevent exiting into COMM mode immediately
heinrichsweikamp
parents:
diff changeset
669 call TFT_boot ; Initialize TFT (includes clear screen)
heinrichsweikamp
parents:
diff changeset
670 call TFT_Display_FadeIn ; Show splash
heinrichsweikamp
parents:
diff changeset
671 movlw .100
heinrichsweikamp
parents:
diff changeset
672 movwf batt_percent ; make sure to reset batt_percent
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
673
0
heinrichsweikamp
parents:
diff changeset
674 ; Default (In cases of timeout or USB): Use old battery
heinrichsweikamp
parents:
diff changeset
675 clrf EEADRH
heinrichsweikamp
parents:
diff changeset
676 read_int_eeprom 0x07
heinrichsweikamp
parents:
diff changeset
677 movff EEDATA,battery_gauge+0
heinrichsweikamp
parents:
diff changeset
678 read_int_eeprom 0x08
heinrichsweikamp
parents:
diff changeset
679 movff EEDATA,battery_gauge+1
heinrichsweikamp
parents:
diff changeset
680 read_int_eeprom 0x09
heinrichsweikamp
parents:
diff changeset
681 movff EEDATA,battery_gauge+2
heinrichsweikamp
parents:
diff changeset
682 read_int_eeprom 0x0A
heinrichsweikamp
parents:
diff changeset
683 movff EEDATA,battery_gauge+3
heinrichsweikamp
parents:
diff changeset
684 read_int_eeprom 0x0B
heinrichsweikamp
parents:
diff changeset
685 movff EEDATA,battery_gauge+4
heinrichsweikamp
parents:
diff changeset
686 read_int_eeprom 0x0C
heinrichsweikamp
parents:
diff changeset
687 movff EEDATA,battery_gauge+5
heinrichsweikamp
parents:
diff changeset
688
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
689 call menu_processor_reset ; restart from first icon.
474
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
690
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
691 MENU_BEGIN tNewBattTitle, .1
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
692 MENU_CALL tEnter, new_battery_menu2
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
693 MENU_END
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
694
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
695 new_battery_menu2:
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
696 ; hardware_flag:
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
697 ; 3: 0x0A or 0x13 (2016)
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
698 ; cR: 0x05
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
699 ; 2 with BLE: 0x11
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
700 ; Sport: 0x12
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
701 ; 3 with BLE: 0x1A
76
a5ea132770db 1.21 release
heinrichsweikamp
parents: 66
diff changeset
702
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
703 movlw 0x0A
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
704 cpfseq hardware_flag
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
705 bra $+4
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
706 bra menu_new_battery_AA
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
707 movlw 0x13
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
708 cpfseq hardware_flag
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
709 bra $+4
474
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
710 bra menu_new_battery_AA_16650
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
711 movlw 0x12
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
712 cpfseq hardware_flag
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
713 bra $+4
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
714 bra menu_new_battery_AA
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
715 movlw 0x1A
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
716 cpfseq hardware_flag
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
717 bra $+4
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
718 bra menu_new_battery_AA
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
719 movlw 0x11
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
720 cpfseq hardware_flag
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
721 bra $+4
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
722 bra menu_new_battery_18650
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
723 movlw 0x05
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
724 cpfseq hardware_flag
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
725 bra $+4
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
726 bra menu_new_battery_18650
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
727 bra use_old_batteries ; any unsupported value
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
728
474
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
729 menu_new_battery_AA_16650:
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
730 MENU_BEGIN tNewBattTitle, .5
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
731 MENU_CALL tNewBattOld, use_old_batteries
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
732 MENU_CALL tNewBattNew36, use_new_36V_batteries
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
733 MENU_CALL tNewBattNew15, use_new_15V_batteries
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
734 MENU_CALL tNewBattAccu, use_36V_rechargeable
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
735 MENU_CALL tNew16650, use_16650_battery
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
736 MENU_END
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
737
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
738 menu_new_battery_AA:
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
739 MENU_BEGIN tNewBattTitle, .4
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
740 MENU_CALL tNewBattOld, use_old_batteries
0
heinrichsweikamp
parents:
diff changeset
741 MENU_CALL tNewBattNew36, use_new_36V_batteries
heinrichsweikamp
parents:
diff changeset
742 MENU_CALL tNewBattNew15, use_new_15V_batteries
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
743 MENU_CALL tNewBattAccu, use_36V_rechargeable
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
744 MENU_END
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
745
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
746 menu_new_battery_18650:
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
747 MENU_BEGIN tNewBattTitle, .2
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
748 MENU_CALL tNewBattOld, use_old_batteries
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
749 MENU_CALL tNew18650, use_18650_battery
0
heinrichsweikamp
parents:
diff changeset
750 MENU_END
heinrichsweikamp
parents:
diff changeset
751
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
752
457
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
753 global use_old_prior_209
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
754 use_old_prior_209:
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
755 clrf EEADRH
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
756 read_int_eeprom 0x0F ; =0:1.5V, =1:3,6V Saft, =2:LiIon 3,7V/0.8Ah, =3:LiIon 3,7V/3.1Ah, =4: LiIon 3,7V/2.3Ah
457
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
757 incfsz EEDATA,F ; Was 0xFF?
477
44b8a826b314 NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents: 474
diff changeset
758 return ; No, done.
44b8a826b314 NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents: 474
diff changeset
759
457
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
760 call lt2942_get_status ; Check for gauge IC
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
761 movlw .3 ; Assume a 18650
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
762 btfss battery_gauge_available ; cR/2 hardware?
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
763 movlw .1 ; Assume a Saft
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
764 movwf EEDATA
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
765 write_int_eeprom 0x0F ; Store the new battery type into EEPROM
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
766 return
b4417044a042 recover old battery status prior 2.09
heinrichsweikamp
parents: 453
diff changeset
767
0
heinrichsweikamp
parents:
diff changeset
768 global use_old_batteries
heinrichsweikamp
parents:
diff changeset
769 use_old_batteries:
heinrichsweikamp
parents:
diff changeset
770 clrf EEADRH
heinrichsweikamp
parents:
diff changeset
771 read_int_eeprom 0x07
heinrichsweikamp
parents:
diff changeset
772 movff EEDATA,battery_gauge+0
heinrichsweikamp
parents:
diff changeset
773 read_int_eeprom 0x08
heinrichsweikamp
parents:
diff changeset
774 movff EEDATA,battery_gauge+1
heinrichsweikamp
parents:
diff changeset
775 read_int_eeprom 0x09
heinrichsweikamp
parents:
diff changeset
776 movff EEDATA,battery_gauge+2
heinrichsweikamp
parents:
diff changeset
777 read_int_eeprom 0x0A
heinrichsweikamp
parents:
diff changeset
778 movff EEDATA,battery_gauge+3
heinrichsweikamp
parents:
diff changeset
779 read_int_eeprom 0x0B
heinrichsweikamp
parents:
diff changeset
780 movff EEDATA,battery_gauge+4
heinrichsweikamp
parents:
diff changeset
781 read_int_eeprom 0x0C
heinrichsweikamp
parents:
diff changeset
782 movff EEDATA,battery_gauge+5
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
783 read_int_eeprom 0x0F
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
784 movff EEDATA,battery_type; =0:1.5V, =1:3,6V Saft, =2:LiIon 3,7V/0.8Ah, =3:LiIon 3,7V/3.1Ah, =4: LiIon 3,7V/2.3Ah
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
785
450
791a25c4aab4 bugfix "old battery" type
heinrichsweikamp
parents: 448
diff changeset
786 rcall setup_new_saft ; Any other value
477
44b8a826b314 NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents: 474
diff changeset
787 incf EEDATA,F ; 1 ... 5
450
791a25c4aab4 bugfix "old battery" type
heinrichsweikamp
parents: 448
diff changeset
788 dcfsnz EEDATA,F
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
789 rcall setup_new_15v ;=0
450
791a25c4aab4 bugfix "old battery" type
heinrichsweikamp
parents: 448
diff changeset
790 dcfsnz EEDATA,F
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
791 rcall setup_new_saft ;=1
450
791a25c4aab4 bugfix "old battery" type
heinrichsweikamp
parents: 448
diff changeset
792 dcfsnz EEDATA,F
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
793 rcall setup_new_panasonic ;=2
477
44b8a826b314 NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents: 474
diff changeset
794 dcfsnz EEDATA,F
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
795 rcall setup_new_18650 ;=3
477
44b8a826b314 NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents: 474
diff changeset
796 dcfsnz EEDATA,F
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
797 rcall setup_new_16650 ;=4
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
798
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
799 bcf use_old_batt_flag ; clear flag
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
800 goto surfloop ; Jump to Surfaceloop!
0
heinrichsweikamp
parents:
diff changeset
801
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
802 setup_new_15v:
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
803 bsf charge_disable
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
804 bcf TRISE,2
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
805 movlw .100
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
806 movwf batt_percent ; To have 1,5V batteries right after firmware update
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
807 movlw .0
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
808 movff WREG,battery_type
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
809 return
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
810
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
811 setup_new_saft:
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
812 banksel battery_capacity
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
813 movlw LOW internal_saft_capacity
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
814 movwf internal_battery_capacity+0
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
815 movlw HIGH internal_saft_capacity
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
816 movwf internal_battery_capacity+1
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
817 movlw LOW saft_capacity
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
818 movwf battery_capacity+0
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
819 movlw HIGH saft_capacity
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
820 movwf battery_capacity+1
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
821 movlw LOW saft_offset
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
822 movwf battery_offset+0
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
823 movlw HIGH saft_offset
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
824 movwf battery_offset+1
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
825 banksel common
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
826 bsf charge_disable
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
827 bcf TRISE,2
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
828 movlw .1
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
829 movff WREG,battery_type
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
830 return
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
831
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
832 setup_new_panasonic:
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
833 banksel battery_capacity
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
834 movlw LOW internal_panasonic_capacity
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
835 movwf internal_battery_capacity+0
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
836 movlw HIGH internal_panasonic_capacity
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
837 movwf internal_battery_capacity+1
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
838 movlw LOW panasonic_capacity
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
839 movwf battery_capacity+0
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
840 movlw HIGH panasonic_capacity
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
841 movwf battery_capacity+1
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
842 movlw LOW panasonic_offset
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
843 movwf battery_offset+0
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
844 movlw HIGH panasonic_offset
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
845 movwf battery_offset+1
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
846 banksel common
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
847 bcf charge_disable
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
848 bsf TRISE,2
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
849 movlw .2
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
850 movff WREG,battery_type
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
851 return
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
852
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
853 setup_new_18650:
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
854 banksel battery_capacity
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
855 clrf internal_battery_capacity+0
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
856 clrf internal_battery_capacity+1
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
857 movlw LOW ncr18650_capacity
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
858 movwf battery_capacity+0
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
859 movlw HIGH ncr18650_capacity
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
860 movwf battery_capacity+1
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
861 movlw LOW ncr18650_offset
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
862 movwf battery_offset+0
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
863 movlw HIGH ncr18650_offset
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
864 movwf battery_offset+1
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
865 banksel common
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
866 bcf charge_disable
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
867 bsf TRISE,2
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
868 movlw .3
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
869 movff WREG,battery_type
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
870 return
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
871
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
872 setup_new_16650:
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
873 banksel battery_capacity
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
874 clrf internal_battery_capacity+0
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
875 clrf internal_battery_capacity+1
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
876 movlw LOW ur16650_capacity
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
877 movwf battery_capacity+0
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
878 movlw HIGH ur16650_capacity
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
879 movwf battery_capacity+1
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
880 movlw LOW ur16650_offset
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
881 movwf battery_offset+0
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
882 movlw HIGH ur16650_offset
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
883 movwf battery_offset+1
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
884 banksel common
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
885 bcf charge_disable
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
886 bsf TRISE,2
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
887 movlw .4
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
888 movff WREG,battery_type
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
889 return
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 470
diff changeset
890
474
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
891 use_16650_battery:
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
892 rcall setup_new_16650
2880aa1264f5 Fix new battery menu on Power-on reset
heinrichsweikamp
parents: 472
diff changeset
893 bra use_new_36V_2
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
894 use_18650_battery:
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
895 rcall setup_new_18650
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
896 bra use_new_36V_2
0
heinrichsweikamp
parents:
diff changeset
897 use_new_36V_batteries:
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
898 rcall setup_new_saft
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
899 bra use_new_36V_2
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
900 use_new_15V_batteries:
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
901 rcall setup_new_15v
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
902 use_new_36V_2:
0
heinrichsweikamp
parents:
diff changeset
903 call reset_battery_pointer ; Resets battery pointer 0x07-0x0C and battery_gauge:5
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
904 goto surfloop ; Jump to Surfaceloop!
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
905 use_36V_rechargeable:
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
906 rcall setup_new_panasonic
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 428
diff changeset
907 call reset_battery_internal_only
464
0491a84fd0b8 CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents: 457
diff changeset
908 goto surfloop ; Jump to Surfaceloop!
0
heinrichsweikamp
parents:
diff changeset
909
heinrichsweikamp
parents:
diff changeset
910 END