annotate code_part1/OSTC_code_asm_part1/text_table.asm @ 125:2907b42c195b

Altimeter: - use H = 19902 log10(P0/P) - Interface to select sea level mbars. - Average over 32 values, using 1/16 of mbar. - Display in customview area. - Fix display ****m when not yet computed - Fix reset when exiting sleep mode - Fix : edit menu in 1/4 of mbar. - Fix use CF#49 to enable/disable altimeter, also in altimeter menu. - Fix visible in Menu 2
author JeanDo
date Wed, 29 Dec 2010 01:41:13 +0100
parents e0f29e20bd24
children 06c4899ddb4b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
2 ; OSTC - diving computer code
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
5 ; This program is free software: you can redistribute it and/or modify
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
6 ; it under the terms of the GNU General Public License as published by
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
7 ; the Free Software Foundation, either version 3 of the License, or
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
8 ; (at your option) any later version.
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
9
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
10 ; This program is distributed in the hope that it will be useful,
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
13 ; GNU General Public License for more details.
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
15 ; You should have received a copy of the GNU General Public License
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>.
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
17
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
18
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
19 ; hold texts and parameters for the texts
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
21 ; written: 10/13/07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
22 ; last updated: 05/24/08
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
23 ; known bugs:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
24 ; ToDo:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
25
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
26 ; Textlengths
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
27 ; The length table helps to find the texts much faster
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
28
83
3e351e25f5d1 adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents: 75
diff changeset
29 texts code 0x00070
3e351e25f5d1 adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents: 75
diff changeset
30
3e351e25f5d1 adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents: 75
diff changeset
31 textlength_pointer:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
32 DB .0,.18,.16,.24,.6,.6 ; nu, t1, t2, t3, t4, t5
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
33 DB .8,.10,.10,.12,.6,.6 ; t6, t7, t8, t9, t10, t11
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
34 DB .8,.10,.6,.10,.6,.6 ; t12, t13, t14, t15, t16, t17
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
35 DB .8,.8,.6,.14,.6,.6 ; t18, t19, t20, t21, t22, t23
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
36 DB .10,.10,.8,.20,.12,.10 ; t24, t25, t26, t27, t28, t29
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
37 DB .10,.10,.8,.10,.6,.6 ; t30, t31, t32, t33, t34, t35
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
38 ; 32 Custom funtion descriptors with length 16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
39 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
40 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
41 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
42 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
43 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
44 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
45 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
46 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
47 ; Licence
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
48 DB .16,.20,.22,.20 ; t68, t69, t70, t71
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
49 DB .22,.18,.12,.20 ; t72, t73, t74, t75
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
50 DB .14,.20,.20,.20 ; t76, t77, t78, t79
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
51 DB .14,.24 ; t80, t81
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
52 ; end of licence
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
53
68
d0b677e1e9a5 new decoplan (GF mode) debuged
heinrichsweikamp
parents: 63
diff changeset
54 DB .10,.6,.8,.4,.10,.6 ; t82, t83, t84, t85, t86, t87
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
55 DB .12,.10,.8,.8,.8,.8 ; t88, t89, t90, t91, t92, t93
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
56 DB .6,.6,.4,.10,.12,.18 ; t94, t95, t96, t97, t98, t99
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
57 DB .10,.10,.10,.6,.10,.14 ;t100,t101,t102,t103,t104,t105
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 3
diff changeset
58 DB .20,.8,.8,.6,.18,.18 ;t106,t107,t108,t109,t110,t111
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
59 DB .4,.14,.20,.8,.6,.16 ;t112,t113,t114,t115,t116,117
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
60 DB .14,.12,.6,.6,.8,.6 ;t118,t119,t120,t121,t122,123
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
61 DB .6,.6,.6,.6,.8,.8 ;t124,t125,t126,t127,t128,129
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
62 DB .4,.4,.10,.22,.22,.22 ;t130,t131,t132,t133,134,135
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
63 DB .20,.8,.10,.8,.8,.6 ;t136;t137;t138;t139;t140;t141
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
64 DB .6,.10,.8,.8,.4,.6 ;t142;t143;t144;t145;t146;t147
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
65 DB .12,.8,.6,.8,.10,.20 ;t148;t149;t150;t151;t152;t153
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
66 ; 32 Custom funtion descriptors with length 16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
67 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
68 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
69 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
70 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
71 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
72 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
73 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
74 DB .16,.16,.16,.16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
75 ; 32 Custom funtion descriptors with length 16
111
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 104
diff changeset
76 DB .20,.14,.14,.8,.8,.8 ;t186;t187;t188;t189;t190;t191
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
77 DB .6,.20,.20,.20,.20,.20 ;t192;t193;t194;t195;t196;t197
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
78 DB .20,.20,.20,.20,.20,.20 ;t198......t203
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
79 DB .20,.20,.20,.20,.20,.20 ;t204......t209
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
80 DB .20,.20,.20,.20,.20,.20 ;t210......t215
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
81 DB .20,.20,.20,.20,.20,.20 ;t216......t221
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
82 DB .20,.20,.20,.20,.20,.20 ;t222......t227
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
83 DB .20,.20,.20,.20,.20,.20 ;t228......t233
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
84 DB .20,.20,.10,.10,.10,.8 ;t234;t235;t236;t237;t238;t239
111
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 104
diff changeset
85 DB .10,.8,.8,.14,.6,.20 ;t240;t241;t242;t243;t244;t245
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
86 DB .16,.10,.16,.12,.6,.6 ;t246;t247;t248;t249;t250;t251
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
87 DB .6,.6,.6,.6 ;t252;t253;t254;t255
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
88
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
89 ; Text Bank2 (Texts 256-511):
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
90 DB .2,.14,.14,.8,.8,.8 ;t256;t257;t258;t259;t260;t261
85
8b813f67220f renaming "Max Depth" to "max."
heinrichsweikamp
parents: 83
diff changeset
91 DB .6,.6,.6,.6,.10,.6 ;t262;t263;t264;t265;t266;t267
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
92 DB .4,.8,.4,.14,.20,.18 ;t268;t269;t270;t271;t272;t273
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
93 DB .20,.14,.10,.14,.12,.16 ;t274;t275;t276;t277;t278;t279
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
94 DB .14,.10,.12,.10,.14,.12 ;t280;t281;t282;t283;t284;t285
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
95 DB .16 ;t286
125
2907b42c195b Altimeter:
JeanDo
parents: 121
diff changeset
96 DB .10 ;t287 Altimeter
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
97
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
98 ; Textpositions
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
99 ; Example: DB .4,.2 ; COLUMN=4,ROW=2
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
100
83
3e351e25f5d1 adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents: 75
diff changeset
101 ; Textpositions pointer
3e351e25f5d1 adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents: 75
diff changeset
102 textpos_pointer:
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
103 DB .0,.0 ;1
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
104 DB .0,.25 ;2
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
105 DB .0,.2 ;3
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
106 DB .65,.2 ;4
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
107 DB .65,.2 ;5
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
108 DB .20,.35 ;6
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
109 DB .20,.65 ;7
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
110 DB .20,.35 ;8
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
111 DB .20,.95 ;9
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
112 DB .20,.125 ;10
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
113 DB .20,.185 ;11
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
114 DB .115,.2 ;12
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
115 DB .0,.24 ;13
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
116 DB .0,.0 ;14
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
117 DB .50,.2 ;15
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
118 DB .10,.30 ;16
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
119 DB .10,.55 ;17
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
120 DB .10,.80 ;18
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
121 DB .10,.105 ;19
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
122 DB .10,.130 ;20
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
123 DB .20,.35 ;21
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
124 DB .32,.65 ;22
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
125 DB .32,.95 ;23
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
126 DB .32,.155 ;24
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
127 DB .6,.0 ;25
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
128 DB .55,.2 ;26
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
129 DB .14,.2 ;27
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
130 DB .40,.2 ;28
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
131 DB .50,.2 ;29
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
132 DB .100,.50 ;30 ; SetMarker
73
2227459e8ef2 Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents: 69
diff changeset
133 DB .100,.25 ;31 ; Decoplan
2227459e8ef2 Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents: 69
diff changeset
134 DB .100,.0 ;32 ; Gaslist
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
135 DB .100,.50 ;33 ; ResetAvr
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
136 DB .100,.100 ;34
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
137 DB .0,.0 ;35
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
138
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
139 ; 32 Custom funtion descriptors wi.12th Column=5, row=8, Y-scale=1, greyvalue=15
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
140 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
141 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
142 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
143 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
144 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
145 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
146 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
147 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
148 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
149 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
150 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
151 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
152 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
153 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
154 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
155 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
156 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
157 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
158 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
159 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
160 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
161 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
162 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
163 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
164 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
165 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
166 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
167 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
168 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
169 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
170 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
171 DB .40,.35
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
172 ;licence:
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
173 DB .0,.35 ;68
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
174 DB .0,.65 ;69
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
175 DB .0,.95 ;70
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
176 DB .0,.125 ;71
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
177 DB .0,.155 ;72
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
178 DB .0,.185 ;73
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
179 DB .0,.215 ;74
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
180 DB .0,.35 ;75
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
181 DB .0,.65 ;76
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
182 DB .0,.95 ;77
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
183 DB .0,.125 ;78
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
184 DB .0,.155 ;79
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
185 DB .0,.185 ;80
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
186 DB .0,.215 ;81
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
187 ; end of licence
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
188
87
8d3c1bef6551 some preparations for new custom view
heinrichsweikamp
parents: 85
diff changeset
189 DB .102,.54 ;82 Decostop
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
190 DB .0,.0 ;83
87
8d3c1bef6551 some preparations for new custom view
heinrichsweikamp
parents: 85
diff changeset
191 DB .108,.112 ;84 No Stop
8d3c1bef6551 some preparations for new custom view
heinrichsweikamp
parents: 85
diff changeset
192 DB .135,.112 ;85 TTS
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
193 DB .100,.0 ;86 Divetime
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
194 DB .0,.0 ;87 Depth
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
195 DB .0,.0 ;88
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
196 DB .0,.0 ;89
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
197 DB .0,.0 ;90
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
198 DB .0,.0 ;91
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
199 DB .0,.0 ;92
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
200 DB .0,.0 ;93
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
201 DB .0,.0 ;94
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
202 DB .0,.0 ;95
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
203 DB .0,.0 ;96
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
204 DB .0,.0 ;97
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
205 DB .40,.2 ;98
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
206 DB .20,.35 ;99
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
207 DB .20,.125 ;100
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
208 DB .85,.125 ;101
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
209 DB .85,.125 ;102
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
210 DB .85,.125 ;103
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
211 DB .85,.125 ;104
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
212 DB .0,.0 ;105
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
213 DB .10,.2 ;106
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
214 DB .0,.0 ;107
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
215 DB .0,.0 ;108
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
216 DB .20,.35 ;109
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
217 DB .20,.65 ;110
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
218 DB .20,.2 ;111
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
219 DB .0,.0 ;112
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
220 DB .20,.95 ;113
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
221 DB .10,.2 ;114
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
222 DB .0,.9 ;115
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
223 DB .85,.125 ;116
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
224 DB .0,.18 ;117
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
225 DB .0,.27 ;118
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
226 DB .0,.36 ;119
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
227 DB .0,.45 ;120
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
228 DB .0,.54 ;121
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
229 DB .100,.125 ;122 Gas 6.. (Divemode menu)
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
230 DB .100,.25 ;123
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
231 DB .100,.50 ;124
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
232 DB .100,.75 ;125
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
233 DB .100,.100 ;126
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
234 DB .100,.0 ;127
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
235 DB .100,.25 ;128
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
236 DB .20,.65 ;129
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
237 DB .65,.65 ;130
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
238 DB .65,.65 ;131
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
239 DB .100,.50 ;132
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
240 DB .10,.0 ;133 Debug intro
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
241 DB .10,.25 ;134
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
242 DB .10,.50 ;135
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
243 DB .10,.75 ;136 /Debug Intro
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
244 DB .100,.75 ;137 Bailout
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
245 DB .85,.125 ;138
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
246 DB .105,.120 ;139 Descent
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
247 DB .105,.60 ;140 Surface
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
248 DB .65,.2 ;141
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
249 DB .20,.155 ;142
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
250 DB .42,.72 ;143 Confirm:
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
251 DB .60,.2 ;144
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
252 DB .52,.96 ;145 Cancel
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
253 DB .52,.120 ;146 OK!
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
254 DB .20,.35 ;147 More (Gas Setup)
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
255 DB .160,.125 ;148 [12 Spaces...]
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
256 DB .0,.8 ;149
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
257 DB .2,.39 ;150
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
258 DB .108,.216 ;151 Marker?
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
259 DB .85,.125 ;152
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
260 DB .20,.65 ;153
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
261 ; 32 Custom funtion descriptors with Column=5, row=8, Y-scale=1, greyvalue=15
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
262 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
263 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
264 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
265 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
266 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
267 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
268 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
269 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
270 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
271 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
272 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
273 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
274 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
275 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
276 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
277 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
278 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
279 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
280 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
281 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
282 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
283 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
284 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
285 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
286 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
287 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
288 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
289 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
290 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
291 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
292 DB .40,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
293 DB .40,.35 ;185
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
294 ; 32 Custom funtion descriptors with Column=5, row=8, Y-scale=1, greyvalue=15
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
295 DB .13,.2 ;186
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
296 DB .20,.95 ;187
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
297 DB .0,.2 ;188
111
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 104
diff changeset
298 DB .90,.25 ;189 Surface (Interval)
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
299 DB .0,.0 ;190
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
300 DB .0,.0 ;191
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
301 DB .0,.0 ;192
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
302 ; Mode descriptions (6x)
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
303 DB .0,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
304 DB .0,.65
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
305 DB .0,.95
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
306 DB .0,.125
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
307 DB .0,.155
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
308 DB .0,.185
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
309 DB .0,.215
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
310
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
311 DB .0,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
312 DB .0,.65
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
313 DB .0,.95
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
314 DB .0,.125
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
315 DB .0,.155
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
316 DB .0,.185
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
317 DB .0,.215
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
318
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
319 DB .0,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
320 DB .0,.65
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
321 DB .0,.95
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
322 DB .0,.125
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
323 DB .0,.155
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
324 DB .0,.185
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
325 DB .0,.215
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
326
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
327 DB .0,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
328 DB .0,.65
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
329 DB .0,.95
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
330 DB .0,.125
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
331 DB .0,.155
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
332 DB .0,.185
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
333 DB .0,.215
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
334
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
335 DB .0,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
336 DB .0,.65
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
337 DB .0,.95
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
338 DB .0,.125
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
339 DB .0,.155
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
340 DB .0,.185
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
341 DB .0,.215
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
342
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
343 DB .0,.35
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
344 DB .0,.65
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
345 DB .0,.95
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
346 DB .0,.125
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
347 DB .0,.155
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
348 DB .0,.185
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
349 DB .0,.215 ;234
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
350
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
351 DB .10,.2 ;235
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
352 DB .85,.125 ;236
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
353 DB .2,.12 ;237
73
2227459e8ef2 Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents: 69
diff changeset
354 DB .100,.0 ;238 SetPoint
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
355 DB .100,.0 ;239 No Deco (non-GF)
111
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 104
diff changeset
356 DB .90,.50 ;240 (Surface) Interval:
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
357 DB .100,.75 ;241 Display (Divemode Menu)
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
358 DB .100,.0 ;242 No Deco (GF)
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
359 DB .2,.12 ;243
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
360 DB .100,.100 ;244 Exit
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
361 DB .20,.65 ;245
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
362 DB .2,.30 ;246
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
363 DB .20,.125 ;247 Simulator
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
364 DB .30,.2 ;248
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
365 DB .20,.35 ;249
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
366 DB .100,.25 ;250 Divemode_Simulator_Menu
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
367 DB .100,.50 ;251
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
368 DB .100,.75 ;252
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
369 DB .100,.100 ;253
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
370 DB .100,.0 ;254 Divemode_Simulator_Menu
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
371 DB .131,.170 ;255 Time
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
372
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
373 ; Text Bank2 (Texts 256-511):
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
374 DB .0,.0 ;256
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
375 DB .20,.35 ;257
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
376 DB .40,.2 ;258
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
377 DB .105,.35 ;259
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
378 DB .105,.35 ;260
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
379 DB .105,.35 ;261
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
380 DB .1,.1 ;262
83
3e351e25f5d1 adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents: 75
diff changeset
381 DB .65,.168 ;263 Bail
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
382 DB .7,.48 ;264
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
383 DB .120,.135 ;265
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
384 DB .2,.39 ;266
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
385 DB .0,.216 ;267
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
386 DB .10,.8 ;268
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
387 DB .10,.16 ;269
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
388 DB .0,.0 ;270
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
389
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
390 DB .24,.2 ;271
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
391 DB .0,.35 ;272
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
392 DB .0,.65 ;273
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
393 DB .0,.95 ;274
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
394 DB .0,.125 ;275
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
395 DB .20,.95 ;276
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
396
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
397 DB .20,.65 ;277
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
398 DB .20,.95 ;278
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
399 DB .20,.125 ;279
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
400 DB .20,.155 ;280
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
401
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
402 DB .100,.50 ;281
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
403 DB .90,.170 ;282 Lead Tiss.
104
2a2606e9db5f some fixes with the onboard simulator
heinrichsweikamp
parents: 98
diff changeset
404 DB .93,.170 ;283 Stopwatch
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
405 DB .20,.95 ;284
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
406 DB .20,.125 ;285
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
407
51
ceeeb5e49348 1.70....
heinrichsweikamp
parents: 50
diff changeset
408 DB .20,.155 ;286
125
2907b42c195b Altimeter:
JeanDo
parents: 121
diff changeset
409 DB .20,.155 ;287 Altimeter
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
410
83
3e351e25f5d1 adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents: 75
diff changeset
411 ; stores texts, texts must have even length and must end with "}"
3e351e25f5d1 adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents: 75
diff changeset
412 text_pointer:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
413 DA "Building MD2 Hash}" ;1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
414 DA "Please Wait...}}" ;2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
415 DA "HeinrichsWeikamp OSTC2}}";3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
416 DA "Menu?}" ;4 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
417 DA "Menu:}" ;5
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
418 DA "Logbook}" ;6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
419 DA "Gas Setup}" ;7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
420 DA "Set Time}}" ;8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
421 DA "Reset Menu}}" ;9 l=12
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
422 DA "Setup}" ;10 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
423 DA "Exit}}" ;11
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
424 DA "Wait..}}" ;12
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
425 DA "MD2 Hash:}" ;13
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
426 DA "Desat}" ;14 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
427 DA "Interface}" ;15
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
428 DA "Start}" ;16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
429 DA "Data}}" ;17
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
430 DA "Header}}" ;18
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
431 DA "Profile}" ;19
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
432 DA "Done.}" ;20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
433 DA "Cancel Reset}}" ;21 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
434 DA "Time:}" ;22
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
435 DA "Date:}" ;23
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
436 DA "Set Hours}" ;24
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
437 DA "Reset...}}" ;25
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
438 DA "Logbook}" ;26
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
439 DA "Custom Functions I}}" ;27 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
440 DA "Reset Menu}}" ;28 l=12
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
441 DA "Set Time:}" ;29
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
442 DA "SetMarker}" ;30 l=10
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
443 DA "Decoplan}}" ;31
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
444 DA "Gaslist}" ;32 l=8
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
445 DA "ResetAvr}}" ;33 l=10
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
446 DA "Exit}}" ;34
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
447 DA "NoFly}" ;35 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
448 ; 32 custom function descriptors with length=16!
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
449 DA "Start Dive [m]}" ;36 l=16
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
450 DA "End Dive [m]}" ;37
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
451 DA "End Delay [min]}" ;38
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
452 DA "Power Off [min]}" ;39
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
453 DA "Pre-menu [min]}" ;40
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
454 DA "velocity[m/min]}" ;41
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
455 DA "Wake-up [mBar]}" ;42
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
456 DA "max.Surf.[mBar]}" ;43
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
457 DA "GF display [%]}" ;44
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
458 DA "min. O2 Dis.[%]}" ;45
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
459 DA "Dive menus[min]}" ;46
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
460 DA "Saturate x [%]}" ;47
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
461 DA "Desaturate x[%]}" ;48
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
462 DA "NoFly Ratio [%]}" ;49
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
463 DA "GF alarm 1 [%]}" ;50
43
65d5b0c8da41 New CF48, changed CF15
heinrichsweikamp
parents: 34
diff changeset
464 DA "CNSshow surf[%]}" ;51
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
465 DA "Deco Offset [m]}" ;52
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
466 DA "ppO2 low [Bar]}" ;53
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
467 DA "ppO2 high [Bar]}" ;54
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
468 DA "ppO2 show [Bar]}" ;55
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
469 DA "sampling rate }" ;56
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
470 DA "Divisor Temp }" ;57
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
471 DA "Divisor Decodat}" ;58
10
b7ace8994b29 1.52 beta
heinrichsweikamp
parents: 9
diff changeset
472 DA "Divisor NotUse1}" ;59
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
473 DA "Divisor ppO2 }" ;60
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
474 DA "Divisor Debug }" ;61
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
475 DA "Divisor NotUse2}" ;62
43
65d5b0c8da41 New CF48, changed CF15
heinrichsweikamp
parents: 34
diff changeset
476 DA "CNSshow dive[%]}" ;63
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
477 DA "Logbook offset }" ;64
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
478 DA "Last Deco at[m]}" ;65
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
479 DA "End Apnoe [h]}" ;66
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
480 DA "Show Batt.Volts}" ;67
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
481 ;licence
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
482 DA "This program is}" ;68 l=16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
483 DA "distributed in the}}" ;69 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
484 DA "hope that it will be}}";70 l=22
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
485 DA "useful, but WITHOUT}" ;71 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
486 DA "ANY WARRANTY; without}";72 l=22
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
487 DA "even the implied}}" ;73 l=18
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
488 DA "warranty of}" ;74 l=12
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
489 DA "MERCHANTABILITY or}}" ;75 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
490 DA "FITNESS FOR A}" ;76 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
491 DA "PARTICULAR PURPOSE.}" ;77 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
492 DA "See the GNU General}" ;78 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
493 DA "Public License for}}" ;79 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
494 DA "more details:}" ;80 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
495 DA "www.heinrichsweikamp.de}";81 l=24
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
496 ; end of licence
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
497 DA "Decostop}}" ;82 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
498 DA "m/min}" ;83 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
499 DA "No Stop}" ;84 l=8
68
d0b677e1e9a5 new decoplan (GF mode) debuged
heinrichsweikamp
parents: 63
diff changeset
500 DA "TTS}" ;85 l=4
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
501 DA "Divetime}}" ;86 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
502 DA "Depth}" ;87 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
503 DA "First Gas?}}" ;88 l=12
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
504 DA "Default:}}" ;89 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
505 DA "Minutes}" ;90 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
506 DA "Month }" ;91 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
507 DA "Day }" ;92 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
508 DA "Year }" ;93 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
509 DA "Set }}" ;94 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
510 DA "Gas# }" ;95 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
511 DA "Yes}" ;96 l=4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
512 DA "Current:}}" ;97 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
513 DA "Setup Menu:}" ;98 l=12
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
514 DA "Custom FunctionsI}" ;99 l=18
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
515 DA "Decotype:}" ;100 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
516 DA "ZH-L16 OC}" ;101 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
517 DA "Gauge }" ;102 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
518 DA "Gauge}" ;103 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
519 DA "ZH-L16 CC}" ;104 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
520 DA "Active Gas? }}" ;105 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
521 DA "Gas Setup - Gaslist}" ;106 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
522 DA "Depth +}" ;107 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
523 DA "Depth -}" ;108 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
524 DA "Back}}" ;109 l=6
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 3
diff changeset
525 DA "CCR SetPoint Menu}" ;110 l=18
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 3
diff changeset
526 DA "CCR SetPoint Menu}" ;111 l=18
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
527 DA "SP#}" ;112 l=4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
528 DA "Battery Info}}" ;113 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
529 DA "Battery Information}" ;114 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
530 DA "Cycles:}" ;115 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
531 DA "Apnoe}" ;116 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
532 DA "Last Complete:}}" ;117 l=16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
533 DA "Lowest Vbatt:}" ;118 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
534 DA "Lowest at:}}" ;119 l=12
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
535 DA "Tmin:}" ;120 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
536 DA "Tmax:}" ;121 l=6
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
537 DA "Gas 6..}" ;122 l=8
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
538 DA "O2 +}}" ;123 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
539 DA "O2 -}}" ;124 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
540 DA "He +}}" ;125 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
541 DA "He -}}" ;126 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
542 DA "Exit}}" ;127 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
543 DA "Delete}}" ;128 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
544 DA "Debug:}}" ;129 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
545 DA "ON }" ;130 l=4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
546 DA "OFF}" ;131 l=4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
547 DA "Del. all}}" ;132 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
548 DA "Unexpected reset from}";133 l=22
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
549 DA "Divemode! Please help}";134 l=22
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
550 DA "and report the Debug }";135 l=22
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
551 DA "Information below!}}" ;136 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
552 DA "Bailout}" ;137 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
553 DA "Apnoe }" ;138 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
554 DA "Descent}" ;139 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
555 DA "Surface}" ;140 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
556 DA "Quit?}" ;141 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
557 DA "More}}" ;142 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
558 DA "Confirm:}}" ;143 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
559 DA "Menu 2:}" ;144 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
560 DA "Cancel}}" ;145 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
561 DA "OK!}" ;146 l=4
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
562 DA "More}}" ;147 l=6
27
29341afd2060 NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents: 25
diff changeset
563 DA ":.........:}" ;148 l=12
50
heinrichsweikamp
parents: 43
diff changeset
564 DA "(ppO2:}}" ;149 l=8
heinrichsweikamp
parents: 43
diff changeset
565 DA "Bar) }" ;150 l=6
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
566 DA "Marker?}" ;151 l=8
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
567 DA "L16-GF OC}" ;152 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
568 DA "Custom FunctionsII}}" ;153 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
569
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
570
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
571 ; 32 custom function descriptors with length=16!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
572 DA "GF Low [%]}" ;154
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
573 DA "GF High [%]}" ;155
3
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
574 DA "Color# Battery }" ;156
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
575 DA "Color# Standard}" ;157
9
395230c28023 Added CF36: Divemask color
heinrichsweikamp
parents: 8
diff changeset
576 DA "Color# Divemask}" ;158
25
99512945c7a1 1.61 beta rc2
heinrichsweikamp
parents: 17
diff changeset
577 DA "Color# Warnings}" ;159
85
8b813f67220f renaming "Max Depth" to "max."
heinrichsweikamp
parents: 83
diff changeset
578 DA "Divemode secs. }" ;160
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
579 DA "not used }" ;161
85
8b813f67220f renaming "Max Depth" to "max."
heinrichsweikamp
parents: 83
diff changeset
580 DA "Warn Ceiling }" ;162
121
e0f29e20bd24 Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents: 115
diff changeset
581 DA "Mix type icons }" ;163
85
8b813f67220f renaming "Max Depth" to "max."
heinrichsweikamp
parents: 83
diff changeset
582 DA "Blink BetterGas}" ;164
27
29341afd2060 NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents: 25
diff changeset
583 DA "DepthWarn[mBar]}" ;165
29341afd2060 NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents: 25
diff changeset
584 DA "CNS warning [%]}" ;166
29341afd2060 NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents: 25
diff changeset
585 DA "GF warning [%]}" ;167
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
586 DA "ppO2 warn [Bar]}" ;168
27
29341afd2060 NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents: 25
diff changeset
587 DA "Vel.warn[m/min]}" ;169
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
588 DA "Time offset/day}" ;170
125
2907b42c195b Altimeter:
JeanDo
parents: 121
diff changeset
589 DA "Show altimeter }" ;171
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
590 DA "not used }" ;172
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
591 DA "not used }" ;173
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
592 DA "not used }" ;174
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
593 DA "not used }" ;175
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
594 DA "not used }" ;176
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
595 DA "not used }" ;177
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
596 DA "not used }" ;178
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
597 DA "not used }" ;179
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
598 DA "not used }" ;180
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
599 DA "not used }" ;181
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
600 DA "not used }" ;182
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
601 DA "not used }" ;183
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
602 DA "not used }" ;184
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
603 DA "not used }" ;185
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
604 ; 32 custom function descriptors with length=16!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
605
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
606
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
607 DA "Custom Functions II}" ;186 l=20
12
588a969a0cae 1.53 beta rc
heinrichsweikamp
parents: 10
diff changeset
608 DA "Show License}}" ;187 l=14
34
5dbdc08e5460 New Simulator results screen
heinrichsweikamp
parents: 27
diff changeset
609 DA "Sim. Results:}" ;188 l=14
111
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 104
diff changeset
610 DA "Surface}" ;189 l=8
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
611 DA "ppO2 +}}" ;190 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
612 DA "ppO2 -}}" ;191 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
613 DA "Dil.}}" ;192 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
614 ; ZH-L16 mode description
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
615 DA "Decotype: ZH-L16 OC}" ;193 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
616 DA "For Open Circuit }" ;194 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
617 DA "Divers. Supports 5 }" ;195 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
618 DA "Trimix Gases. }" ;196 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
619 DA "Configure your gas }" ;197 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
620 DA "in Gassetup menu. }" ;198 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
621 DA "Check CF11 & CF12 !}" ;199 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
622 ; Gaugemode description
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
623 DA "Decotype: Gauge }" ;200 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
624 DA "Divetime will be in}" ;201 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
625 DA "Minutes:Seconds. }" ;202 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
626 DA "OSTC2 will not }" ;203 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
627 DA "compute Deco, NoFly}" ;204 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
628 DA "time and Desat.- }" ;205 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
629 DA "time at all! }" ;206 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
630 ; Const.ppO2 description
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
631 DA "Decotype:ZH-L16 CC }" ;207 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
632 DA "For (Semi-)Closed }" ;208 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
633 DA "Circuit rebreathers}" ;209 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
634 DA "Configure the 3 }" ;210 l=20
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 3
diff changeset
635 DA "SetPoints in CCR - }" ;211 l=20
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
636 DA "Setup menu. 5 bail-}" ;212 l=20
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 3
diff changeset
637 DA "outs are available.}" ;213 l=20
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
638 ; Apnoemode description
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
639 DA "Decotype: Apnoe }" ;214 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
640 DA "OSTC2 will display }" ;215 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
641 DA "each descent separ-}" ;216 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
642 DA "ately in Min:Sec. }" ;217 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
643 DA "Will temporally set}" ;218 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
644 DA "samplerate to 1 sec}" ;219 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
645 DA "No Deco calculation}" ;220 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
646 ; Multi GF OC mode description
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
647 DA "Decotype: L16-GF OC}" ;221 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
648 DA "Decompression cal- }" ;222 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
649 DA "culations with the }" ;223 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
650 DA "GF-Method (GF_lo/GF}" ;224 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
651 DA "_hi). Check CF32 & }" ;225 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
652 DA "CF33! Open Circuit }" ;226 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
653 DA "with Deep Stops. }" ;227 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
654 ; Multi GF CC mode description
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
655 DA "Decotype: L16-GF CC}" ;228 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
656 DA "Decompression cal- }" ;229 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
657 DA "culations with the }" ;230 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
658 DA "GF-Method (GF_lo/GF}" ;231 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
659 DA "_hi). Check CF32 & }" ;232 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
660 DA "CF33!Closed Circuit}" ;233 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
661 DA "with Deep Stops. }" ;234 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
662
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
663 DA "Decomode changed! }" ;235 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
664 DA "L16-GF CC}" ;236 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
665 DA "Not found}" ;237 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
666 DA "SetPoint}}" ;238 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
667 DA "No Deco}" ;239 l=8
111
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 104
diff changeset
668 DA "Interval:}" ;240 l=10
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
669 DA "Display}" ;241 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
670 DA "No deco}" ;242 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
671 DA "Search module}" ;243 l=14
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
672 DA "unuse}" ;244 l=6
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
673 DA "Reset CF,Gas & Deco}" ;245 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
674 DA "Disable module}}" ;246 l=16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
675 DA "Simulator}" ;247 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
676 DA "OSTC Simulator}}" ;248 l=16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
677 DA "Start Dive}}" ;249 l=12
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
678 DA "+ 1m}}" ;250 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
679 DA "- 1m}}" ;251 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
680 DA "+10m}}" ;252 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
681 DA "-10m}}" ;253 l=6
104
2a2606e9db5f some fixes with the onboard simulator
heinrichsweikamp
parents: 98
diff changeset
682 DA "Close}" ;254 l=6
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
683 DA "Time}}" ;255 l=6
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
684
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
685 ; Text Bank2 (Texts 256-511):
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
686 DA "x}" ;256 l=2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
687 DA "Date format:}}" ;257 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
688 DA "Setup Menu 2:}" ;258 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
689 DA "MMDDYY}}" ;259 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
690 DA "DDMMYY}}" ;260 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
691 DA "YYMMDD}}" ;261 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
692 DA "OSTC }" ;262 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
693 DA "Bail}}" ;263 l=6
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 3
diff changeset
694 DA "Air }}" ;264 l=6
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
695 DA "Air }" ;265 l=6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
696 DA "Calibrate}" ;266 l=10
85
8b813f67220f renaming "Max Depth" to "max."
heinrichsweikamp
parents: 83
diff changeset
697 DA "Max.}}" ;267 l=6
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
698 DA "not}" ;268 l=4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
699 DA "found!}}" ;269 l=8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
700 DA "mV:}" ;270 l=4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
701 ; New CFs Warning
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
702 DA "New CF added!}" ;271 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
703 DA "New CustomFunctions}" ;272 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
704 DA "were added! Check}" ;273 l=18
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
705 DA "CF I and CF II Menu}" ;274 l=20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
706 DA "for Details!}}" ;275 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
707 DA "Salinity:}" ;276 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
708 DA "Bottom Time:}}" ;277 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
709 DA "Max. Depth:}" ;278 l=12
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
710 DA "Calculate Deco}}" ;279 l=16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
711 DA "Show Decoplan}" ;280 l=14
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
712 DA "unused }" ;281 l=10
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 87
diff changeset
713 DA "Lead Tiss.}}" ;282 l=12
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
714 DA "Stopwatch}" ;283 l=10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
715 DA "Reset Logbook}" ;284 l=14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
716 DA "Reboot OSTC}" ;285 l=12
125
2907b42c195b Altimeter:
JeanDo
parents: 121
diff changeset
717 DA "Reset Decodata}}" ;286 l=16
2907b42c195b Altimeter:
JeanDo
parents: 121
diff changeset
718 DA "Altimeter}" ;287 l=10