comparison code_part1/OSTC_code_asm_part1/menu_reset.asm @ 25:99512945c7a1

1.61 beta rc2
author heinrichsweikamp
date Thu, 13 May 2010 23:24:55 +0200
parents b7ace8994b29
children 29341afd2060
comparison
equal deleted inserted replaced
22:70ce5847324c 25:99512945c7a1
252 #DEFINE GF_low_default d'30' ; 8Bit 30% 252 #DEFINE GF_low_default d'30' ; 8Bit 30%
253 #DEFINE GF_high_default d'90' ; 8Bit 90% 253 #DEFINE GF_high_default d'90' ; 8Bit 90%
254 #DEFINE color_battery_surface d'223' ; 8Bit Color Battery sign: Cyan 254 #DEFINE color_battery_surface d'223' ; 8Bit Color Battery sign: Cyan
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'224' ; 8Bit Color Divemask: Red 256 #DEFINE color_divemask d'224' ; 8Bit Color Divemask: Red
257 #DEFINE HUD_style d'0' ; 8Bit OSTC Style 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 flip_display_default d'0' ; 1Bit =1 Flip Display 260 #DEFINE flip_display_default d'0' ; 1Bit =1 Flip Display
261 #DEFINE use_ppo2_screen_default d'0' ; 1Bit =1 Use alternative outputs for ppO2 sensor 261 #DEFINE use_ppo2_screen_default d'0' ; 1Bit =1 Use alternative outputs for ppO2 sensor
262 #DEFINE replace_temp_with_avr_depth d'0' ; 1Bit =1 Show (resetable) average Depth instead of temperature 262 #DEFINE replace_temp_with_avr_depth d'0' ; 1Bit =1 Show (resetable) average Depth instead of temperature
388 rcall reset_customfunction ; saves default and current value 388 rcall reset_customfunction ; saves default and current value
389 389
390 movlw color_divemask 390 movlw color_divemask
391 rcall reset_customfunction ; saves default and current value 391 rcall reset_customfunction ; saves default and current value
392 392
393 movlw HUD_style 393 movlw color_warnings
394 rcall reset_customfunction ; saves default and current value 394 rcall reset_customfunction ; saves default and current value
395 395
396 movlw show_seconds_divemode 396 movlw show_seconds_divemode
397 rcall reset_customfunction ; saves default and current value 397 rcall reset_customfunction ; saves default and current value
398 398