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