Mercurial > public > mk2
comparison code_part1/OSTC_code_asm_part1/menu_reset.asm @ 63:fee7c62b4de1
1.71beta - clock in divemode (CF39)
author | heinrichsweikamp |
---|---|
date | Wed, 29 Sep 2010 15:25:53 +0200 |
parents | 985607cfb813 |
children | df2d3b28947f |
comparison
equal
deleted
inserted
replaced
62:2972a06b0785 | 63:fee7c62b4de1 |
---|---|
255 #DEFINE color_standard1 d'255' ; 8Bit Color Standard: White | 255 #DEFINE color_standard1 d'255' ; 8Bit Color Standard: White |
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 not_used_cf39_binary d'0' ; 1Bit =1 Flip Display | 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 not_used_cf40_binary d'0' ; 1Bit =1 Use alternative outputs for ppO2 sensor |
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 |
403 rcall reset_customfunction ; saves default and current value | 403 rcall reset_customfunction ; saves default and current value |
404 | 404 |
405 movlw show_seconds_divemode | 405 movlw show_seconds_divemode |
406 rcall reset_customfunction ; saves default and current value | 406 rcall reset_customfunction ; saves default and current value |
407 | 407 |
408 movlw not_used_cf39_binary | 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 not_used_cf40_binary |
412 rcall reset_customfunction ; saves default and current value | 412 rcall reset_customfunction ; saves default and current value |
413 | 413 |