annotate src/gaslist.inc @ 623:c40025d8e750

3.03 beta released
author heinrichsweikamp
date Mon, 03 Jun 2019 14:01:48 +0200
parents ca4556fb60b9
children 185ba2f91f59
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
3 ; File gaslist.inc combined next generation V3.03.1
0
heinrichsweikamp
parents:
diff changeset
4 ;
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 154
diff changeset
5 ; Interface to OSTC gas list management.
0
heinrichsweikamp
parents:
diff changeset
6 ;
heinrichsweikamp
parents:
diff changeset
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
heinrichsweikamp
parents:
diff changeset
8 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
9 ; HISTORY
heinrichsweikamp
parents:
diff changeset
10 ; 2011-08-11 : [jDG] Creation.
heinrichsweikamp
parents:
diff changeset
11
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
12 ; Utils
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
13 extern gaslist_strcat_gas
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
14 extern gaslist_strcat_gas_WREG
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
15 extern gaslist_strcat_gas_cd
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
16 extern gaslist_show_mix ; put "Nxlo", "Txlo/hi", "Air" or "O2" into Postinc2
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
17 extern do_toggle_gf_label
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
18
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
19 IFDEF _cave_mode
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
20 extern do_turn_dive_label
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
21 ENDIF
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
22
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
23
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
24 ; Setpoints and Diluents
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
25 IFDEF _ccr_pscr
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
26 extern gaslist_strcat_setpoint
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
27 extern gaslist_spplus
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
28 extern gaslist_spdepthplus
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
29 extern gaslist_spdepthminus
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
30 extern gaslist_copy_dil_to_oc
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
31 ENDIF
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
32
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
33
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
34 ; Select currently edited Gas
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
35 extern gaslist_gastitle
0
heinrichsweikamp
parents:
diff changeset
36
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
37
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
38 ; Main Gaslist Menu
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
39 extern gaslist_pO2
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
40 extern gaslist_mO2
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
41 extern gaslist_GasDepth
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
42 extern gaslist_show_type
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
43 extern gaslist_toggle_type
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
44 extern gaslist_cleanup_list
0
heinrichsweikamp
parents:
diff changeset
45
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
46 IFDEF _helium
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
47 extern gaslist_pHe
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
48 extern gaslist_mHe
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
49 ENDIF
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
50
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
51
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
52 ; Depth Sub-Menu
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
53 extern gaslist_pDepth
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
54 extern gaslist_mDepth
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
55 extern gaslist_MOD_END
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
56 extern gaslist_ppo2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
57 extern gaslist_reset_mod_title
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 275
diff changeset
58 extern gaslist_reset_mod
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
59
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
60
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
61 ; Tank Sub-Menu
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
62 extern gaslist_tank_size_pres
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
63 extern gaslist_tank_size
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
64 extern gaslist_tank_pres
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
65
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
66 IFDEF _rx_functions
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
67 extern gaslist_tank_id_pres
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
68 extern gaslist_tank_pairing
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 604
diff changeset
69 extern do_toggle_max_pres_diff_label
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
70 ENDIF