Mercurial > public > mk2
comparison code_part1/OSTC_code_asm_part1/menu_reset.asm @ 9:395230c28023
Added CF36: Divemask color
author | heinrichsweikamp |
---|---|
date | Tue, 09 Mar 2010 13:06:26 +0100 |
parents | 3cf8af30b36e |
children | b7ace8994b29 |
comparison
equal
deleted
inserted
replaced
8:d8b426d71282 | 9:395230c28023 |
---|---|
249 #DEFINE timeout_apnoe_mode d'10' ; 8Bit 10min | 249 #DEFINE timeout_apnoe_mode d'10' ; 8Bit 10min |
250 #DEFINE show_voltage_value d'0' ; 1Bit =1 Show value instead of symbol, =0 Show Symbol | 250 #DEFINE show_voltage_value d'0' ; 1Bit =1 Show value instead of symbol, =0 Show Symbol |
251 | 251 |
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 Surfacemode | 254 #DEFINE color_battery_surface d'223' ; 8Bit Color Battery sign: Cyan |
255 #DEFINE color_standard1 d'255' ; 8Bit 1.40Bar | 255 #DEFINE color_standard1 d'255' ; 8Bit Color Standard: White |
256 #DEFINE SP_nom_HUD_default d'120' ; 8Bit 1.20Bar | 256 #DEFINE color_divemask d'224' ; 8Bit Color Divemask: Red |
257 #DEFINE HUD_style d'0' ; 8Bit OSTC Style | 257 #DEFINE HUD_style d'0' ; 8Bit OSTC Style |
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 |
385 rcall reset_customfunction ; saves default and current value | 385 rcall reset_customfunction ; saves default and current value |
386 | 386 |
387 movlw color_standard1 | 387 movlw color_standard1 |
388 rcall reset_customfunction ; saves default and current value | 388 rcall reset_customfunction ; saves default and current value |
389 | 389 |
390 movlw SP_nom_HUD_default | 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 HUD_style |
394 rcall reset_customfunction ; saves default and current value | 394 rcall reset_customfunction ; saves default and current value |
395 | 395 |