comparison code_part1/OSTC_code_asm_part1/menu_reset.asm @ 69:df2d3b28947f

1.71beta for Mk.2
author heinrichsweikamp
date Tue, 19 Oct 2010 15:35:23 +0200
parents fee7c62b4de1
children 69c462400279
comparison
equal deleted inserted replaced
68:d0b677e1e9a5 69:df2d3b28947f
256 #DEFINE color_divemask d'62' ; 8Bit Color Divemask: Light green 256 #DEFINE color_divemask d'62' ; 8Bit Color Divemask: Light green
257 #DEFINE color_warnings d'224' ; 8Bit Color Warnings: Red 257 #DEFINE color_warnings d'224' ; 8Bit Color Warnings: Red
258 258
259 #DEFINE show_seconds_divemode d'0' ; 1Bit =1 Show the seconds in Divemode 259 #DEFINE show_seconds_divemode d'0' ; 1Bit =1 Show the seconds in Divemode
260 #DEFINE show_clock_divemode d'0' ; 1Bit =1 Show the clock in Divemode 260 #DEFINE show_clock_divemode d'0' ; 1Bit =1 Show the clock in Divemode
261 #DEFINE not_used_cf40_binary d'0' ; 1Bit =1 Use alternative outputs for ppO2 sensor 261 #DEFINE warn_ceiling_divemode d'1' ; 1Bit =1 Warn ceiling violation in divemode
262 #DEFINE start_with_stopwatch d'0' ; 1Bit =1 start with stopwatch 262 #DEFINE start_with_stopwatch d'0' ; 1Bit =1 start with stopwatch
263 #DEFINE blink_gas_divemode d'0' ; 1Bit =1 Show (resetable) average Depth instead of temperature 263 #DEFINE blink_gas_divemode d'0' ; 1Bit =1 Show (resetable) average Depth instead of temperature
264 264
265 #DEFINE color_warn_depth_mBar d'13000' ; 15Bit Warn depths 265 #DEFINE color_warn_depth_mBar d'13000' ; 15Bit Warn depths
266 #DEFINE color_warn_cns_percent d'101' ; 8Bit Warn-% 266 #DEFINE color_warn_cns_percent d'101' ; 8Bit Warn-%
406 rcall reset_customfunction ; saves default and current value 406 rcall reset_customfunction ; saves default and current value
407 407
408 movlw show_clock_divemode 408 movlw show_clock_divemode
409 rcall reset_customfunction ; saves default and current value 409 rcall reset_customfunction ; saves default and current value
410 410
411 movlw not_used_cf40_binary 411 movlw warn_ceiling_divemode
412 rcall reset_customfunction ; saves default and current value 412 rcall reset_customfunction ; saves default and current value
413 413
414 movlw start_with_stopwatch 414 movlw start_with_stopwatch
415 rcall reset_customfunction ; saves default and current value 415 rcall reset_customfunction ; saves default and current value
416 416