Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/pled_outputs.asm @ 129:06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Total Average Depth (Non-Resetable)
Some Display fixes in Divemode
Bugfix Timeout reset in Surfacemode
author | Heinrichsweikamp |
---|---|
date | Tue, 04 Jan 2011 16:32:28 +0100 |
parents | 245de99d1d15 |
children | 03df42de03e1 |
rev | line source |
---|---|
0 | 1 |
2 ; OSTC - diving computer code | |
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
4 | |
5 ; This program is free software: you can redistribute it and/or modify | |
6 ; it under the terms of the GNU General Public License as published by | |
7 ; the Free Software Foundation, either version 3 of the License, or | |
8 ; (at your option) any later version. | |
9 | |
10 ; This program is distributed in the hope that it will be useful, | |
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ; GNU General Public License for more details. | |
14 | |
15 ; You should have received a copy of the GNU General Public License | |
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | |
18 | |
19 ; routines for display outputs | |
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
21 ; written: 15/01/05 | |
124 | 22 ; |
23 ; History: | |
24 ; 2008-06-06 [MH] last updated | |
25 ; 2010-12-31 [jDG] Multi-page display for GF decoplan | |
26 ; | |
0 | 27 ; known bugs: |
28 ; ToDo: More comments | |
29 | |
9 | 30 PLED_divemask_color: |
25 | 31 GETCUSTOM8 d'36' ; Divemask output color |
29 | 32 bra PLED_standard_color_0 |
9 | 33 |
25 | 34 PLED_warnings_color: |
35 GETCUSTOM8 d'37' ; Warnings output color | |
29 | 36 bra PLED_standard_color_0 |
37 | |
38 PLED_standard_color: | |
39 GETCUSTOM8 d'35' ; Standard output color | |
40 PLED_standard_color_0: ; Common entry point | |
41 movwf oled1_temp ; copy | |
42 movlw d'0' | |
43 cpfseq oled1_temp | |
44 bra PLED_standard_color_1 | |
45 bra PLED_standard_color2 | |
46 PLED_standard_color_1: | |
47 movlw d'4' | |
48 cpfseq oled1_temp | |
49 bra PLED_standard_color_2 | |
50 bra PLED_standard_color2 | |
51 PLED_standard_color_2: | |
52 movlw d'8' | |
53 cpfseq oled1_temp | |
54 bra PLED_standard_color_3 | |
55 bra PLED_standard_color2 | |
56 PLED_standard_color_3: | |
57 movlw d'192' | |
58 cpfseq oled1_temp | |
59 bra PLED_standard_color_4 | |
60 bra PLED_standard_color2 | |
61 PLED_standard_color_4: | |
62 movlw d'196' | |
63 cpfseq oled1_temp | |
64 bra PLED_standard_color_5 | |
65 bra PLED_standard_color2 | |
66 PLED_standard_color_5: | |
67 movlw d'200' | |
68 cpfseq oled1_temp | |
69 bra PLED_standard_color_6 | |
70 bra PLED_standard_color2 | |
71 PLED_standard_color_6: | |
72 movf oled1_temp,W ; Color should be OK... | |
73 call PLED_set_color | |
74 return | |
75 PLED_standard_color2: | |
77 | 76 movlw 0xFF ; Force full white. |
25 | 77 call PLED_set_color |
78 return | |
3 | 79 |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
80 PLED_color_code macro color_code_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
81 movlw color_code_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
82 call PLED_color_code1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
83 endm |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
84 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
85 PLED_color_code1: ; Color-codes the output, if required |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
86 movwf debug_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
87 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
88 bra PLED_color_code_depth ; CF43 [mBar], 16Bit |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
89 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
90 bra PLED_color_code_cns ; CF44 [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
91 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
92 bra PLED_color_code_gf ; CF45 [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
93 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
94 bra PLED_color_code_ppo2 ; CF46 [cBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
95 dcfsnz debug_temp,F |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
96 bra PLED_color_code_velocity ; CF47 [m/min] |
69 | 97 dcfsnz debug_temp,F |
98 bra PLED_color_code_ceiling ; Show warning if CF41=1 and current depth>shown ceiling | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
99 dcfsnz debug_temp,F |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
100 bra PLED_color_code_gaslist ; Color-code current row in Gaslist (%O2 in "EEDATA") |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
101 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
102 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
103 PLED_color_code_gaslist: ; %O2 in "EEDATA" |
74 | 104 ; Check very high ppO2 manually |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
105 movff amb_pressure+0,xA+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
106 movff amb_pressure+1,xA+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
107 movlw d'10' |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
108 movwf xB+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
109 clrf xB+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
110 call div16x16 ; xC=p_amb/10 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
111 movff xC+0,xA+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
112 movff xC+1,xA+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
113 movff EEDATA,xB+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
114 clrf xB+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
115 call mult16x16 ; EEDATA * p_amb/10 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
116 |
74 | 117 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar? |
118 bra PLED_color_code_gaslist1 ; Yes, warn in warning color | |
119 | |
120 movff xC+0,sub_a+0 | |
121 movff xC+1,sub_a+1 | |
122 GETCUSTOM8 d'46' ; color-code ppO2 warning [cBar] | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
123 mullw d'100' ; ppo2_warning_high*100 |
74 | 124 movff PRODL,sub_b+0 |
125 movff PRODH,sub_b+1 | |
126 call sub16 ; sub_c = sub_a - sub_b | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
127 btfss neg_flag |
74 | 128 bra PLED_color_code_gaslist1; too high -> Warning Color! |
129 call PLED_standard_color | |
130 return | |
131 | |
132 PLED_color_code_gaslist1: | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
133 call PLED_warnings_color |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
134 return |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
135 |
69 | 136 |
137 PLED_color_code_ceiling: | |
138 GETCUSTOM8 d'40' ; =1: Warn at all? | |
139 movwf lo | |
140 movlw d'1' | |
141 cpfseq lo ; =1? | |
142 bra PLED_color_code_ceiling1 ; No, Set to default color | |
143 | |
144 movff char_O_array_decodepth+0,lo ; Ceiling in m | |
145 decf lo,F ; -1 | |
146 movff rel_pressure+1,xA+1 | |
147 movff rel_pressure+0,xA+0 | |
148 movlw LOW d'100' | |
149 movwf xB+0 | |
150 clrf xB+1 ; Devide/100 -> xC+0 = Depth in m | |
151 call div16x16 ; xA/xB=xC with xA as remainder | |
152 movf xC+0,W ; Depth in m | |
153 subwf lo,W | |
154 btfsc STATUS,C | |
155 bra PLED_color_code_ceiling2 ; Set to warning color | |
156 PLED_color_code_ceiling1: | |
157 call PLED_standard_color | |
158 return | |
159 PLED_color_code_ceiling2: | |
160 call PLED_warnings_color | |
161 return | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
162 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
163 PLED_color_code_depth: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
164 movff hi,hi_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
165 movff lo,lo_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
166 movff rel_pressure+1,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
167 movff rel_pressure+0,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
168 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
169 movff lo,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
170 movff hi,sub_a+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
171 GETCUSTOM15 d'43' ; Depth warn [mBar] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
172 movff lo,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
173 movff hi,sub_b+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
174 call sub16 ; sub_c = sub_a - sub_b |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
175 btfss neg_flag |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
176 bra PLED_color_code_depth2; Set to warning color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
177 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
178 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
179 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
180 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
181 PLED_color_code_depth2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
182 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
183 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
184 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
185 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
186 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
187 PLED_color_code_cns: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
188 movff char_O_CNS_fraction,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
189 GETCUSTOM8 d'44' ; CNS Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
190 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
191 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
192 bra PLED_color_code_cns2 ; Set to warning color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
193 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
194 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
195 PLED_color_code_cns2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
196 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
197 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
198 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
199 PLED_color_code_gf: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
200 movff char_O_gradient_factor,lo ; gradient factor |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
201 GETCUSTOM8 d'45' ; GF Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
202 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
203 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
204 bra PLED_color_code_gf2 ; Set to warning color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
205 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
206 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
207 PLED_color_code_gf2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
208 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
209 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
210 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
211 PLED_color_code_ppo2: |
74 | 212 ; Check very high ppO2 manually |
213 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar? | |
214 bra PLED_color_code_ppo22 ; Yes, warn in warning color | |
215 | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
216 movff xC+0,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
217 movff xC+1,sub_a+1 |
74 | 218 GETCUSTOM8 d'46' ; color-code ppO2 warning [cBar] |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
219 mullw d'100' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
220 movff PRODL,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
221 movff PRODH,sub_b+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
222 call sub16 ; sub_c = sub_a - sub_b |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
223 btfss neg_flag |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
224 bra PLED_color_code_ppo22; Set to warning color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
225 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
226 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
227 PLED_color_code_ppo22: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
228 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
229 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
230 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
231 PLED_color_code_velocity: |
47 | 232 btfss neg_flag ; Ignore for ascend! |
233 bra PLED_color_code_velocity1 ; Skip check! | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
234 movff divA+0,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
235 GETCUSTOM8 d'47' ; Velocity warn [m/min] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
236 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
237 btfsc STATUS,C |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
238 bra PLED_color_code_velocity2 ; Set to warning color |
47 | 239 PLED_color_code_velocity1: |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
240 call PLED_standard_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
241 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
242 PLED_color_code_velocity2: |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
243 call PLED_warnings_color |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
244 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
245 |
0 | 246 ostc_debug macro debug_temp |
247 movlw debug_temp | |
248 call ostc_debug1 | |
249 endm | |
250 | |
251 ostc_debug1: | |
252 movwf debug_temp | |
253 | |
254 movff debug_char+4,debug_char+5 ; Save for background debugger | |
255 movff debug_char+3,debug_char+4 | |
256 movff debug_char+2,debug_char+3 | |
257 movff debug_char+1,debug_char+2 | |
258 movff debug_char+0,debug_char+1 | |
259 movff debug_temp,debug_char+0 | |
260 | |
261 btfss debug_mode ; Are we in debugmode? | |
262 return ; No, return! | |
263 | |
264 WIN_TOP .200 | |
265 WIN_LEFT .100 | |
266 WIN_FONT FT_SMALL | |
267 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 268 call PLED_standard_color |
0 | 269 lfsr FSR2,letter |
270 movf debug_char+0,W | |
271 movwf POSTINC2 | |
272 movf debug_char+1,W | |
273 movwf POSTINC2 | |
274 movf debug_char+2,W | |
275 movwf POSTINC2 | |
276 movf debug_char+3,W | |
277 movwf POSTINC2 | |
278 movf debug_char+4,W | |
279 movwf POSTINC2 | |
280 movf debug_char+5,W | |
281 movwf POSTINC2 | |
123 | 282 |
283 STRCAT_PRINT " " | |
0 | 284 return |
285 | |
286 | |
287 PLED_resetdebugger: | |
288 call PLED_boot ; PLED boot | |
289 call PLED_ClearScreen ; clean up OLED | |
3 | 290 call PLED_standard_color |
47 | 291 WIN_INVERT .0 ; Init new Wordprocessor |
0 | 292 |
293 DISPLAYTEXT .133 | |
294 DISPLAYTEXT .134 | |
295 DISPLAYTEXT .135 | |
296 DISPLAYTEXT .136 ; Display Debug intro | |
297 | |
298 WIN_TOP .100 | |
299 WIN_LEFT .10 | |
300 WIN_FONT FT_SMALL | |
301 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 302 call PLED_standard_color |
0 | 303 lfsr FSR2,letter |
119 | 304 movff temp10,lo |
305 output_8 | |
306 movlw ' ' | |
307 movwf POSTINC2 | |
0 | 308 movf debug_char+0,W |
309 movwf POSTINC2 | |
310 movf debug_char+1,W | |
311 movwf POSTINC2 | |
312 movf debug_char+2,W | |
313 movwf POSTINC2 | |
314 movf debug_char+3,W | |
315 movwf POSTINC2 | |
316 movf debug_char+4,W | |
317 movwf POSTINC2 | |
318 movf debug_char+5,W | |
319 movwf POSTINC2 | |
123 | 320 STRCAT ". " |
0 | 321 movff flag1,lo |
322 output_8 | |
123 | 323 PUTC ' ' |
0 | 324 movff flag2,lo |
325 output_8 | |
326 call word_processor | |
327 | |
328 WIN_TOP .125 | |
329 WIN_LEFT .10 | |
330 WIN_FONT FT_SMALL | |
331 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 332 call PLED_standard_color |
0 | 333 |
334 lfsr FSR2,letter | |
335 movff flag3,lo | |
336 output_8 | |
123 | 337 PUTC ' ' |
0 | 338 movff flag4,lo |
339 output_8 | |
123 | 340 PUTC ' ' |
0 | 341 movff flag5,lo |
342 output_8 | |
123 | 343 PUTC ' ' |
0 | 344 movff flag6,lo |
345 output_8 | |
123 | 346 PUTC ' ' |
0 | 347 movff flag7,lo |
348 output_8 | |
349 call word_processor | |
350 | |
351 WIN_TOP .150 | |
352 WIN_LEFT .10 | |
353 WIN_FONT FT_SMALL | |
354 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 355 call PLED_standard_color |
0 | 356 |
357 lfsr FSR2,letter | |
358 movff flag8,lo | |
359 output_8 | |
123 | 360 PUTC ' ' |
0 | 361 movff flag9,lo |
362 output_8 | |
123 | 363 PUTC ' ' |
0 | 364 movff flag10,lo |
365 output_8 | |
123 | 366 PUTC ' ' |
0 | 367 movff flag11,lo |
368 output_8 | |
123 | 369 PUTC ' ' |
0 | 370 movff flag12,lo |
371 output_8 | |
372 call word_processor | |
373 | |
119 | 374 bcf switch_left |
0 | 375 PLED_resetdebugger_loop: |
376 btfss switch_left | |
377 bra PLED_resetdebugger_loop ; Loop | |
378 return | |
379 | |
380 PLED_divemode_mask: ; Displays mask in Dive-Mode | |
9 | 381 call PLED_divemask_color ; Set Color for Divemode mask |
75 | 382 DISPLAYTEXTH .267 ; Max. |
0 | 383 DISPLAYTEXT .86 ; Divetime |
384 DISPLAYTEXT .87 ; Depth | |
3 | 385 call PLED_standard_color |
0 | 386 return |
387 | |
87 | 388 PLED_clear_customview_divemode: |
123 | 389 WIN_BOX_BLACK .168, .239, .90, .159 |
87 | 390 return |
391 | |
115 | 392 PLED_clear_customview_surfmode: |
123 | 393 WIN_BOX_BLACK .25, .121, .82, .159 |
107 | 394 return |
395 | |
87 | 396 PLED_clear_decoarea: |
123 | 397 WIN_BOX_BLACK .54, .168, .90, .159 |
0 | 398 return |
399 | |
400 PLED_display_ndl_mask: | |
401 ; Clear Dekostop and Dekosum | |
402 rcall PLED_clear_decoarea | |
403 | |
87 | 404 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 405 DISPLAYTEXT d'84' ; NoStop |
3 | 406 call PLED_standard_color |
0 | 407 |
408 PLED_display_ndl_mask2: | |
409 ; Clears Gradient Factor | |
410 movlw d'8' | |
411 movwf temp1 | |
412 WIN_TOP .145 | |
413 WIN_LEFT .0 | |
414 call PLED_display_clear_common_y1 | |
415 return | |
416 | |
417 PLED_display_ndl: | |
87 | 418 btfsc menubit ; Divemode menu active? |
419 return ; Yes, return | |
0 | 420 |
421 ostc_debug 'z' ; Sends debug-information to screen if debugmode active | |
422 | |
87 | 423 WIN_TOP .136 |
0 | 424 WIN_LEFT .119 |
425 WIN_FONT FT_MEDIUM | |
426 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 427 call PLED_standard_color |
428 | |
0 | 429 lfsr FSR2,letter |
430 movff char_O_nullzeit,lo ; NDL in minutes | |
431 output_8 | |
123 | 432 STRCAT_PRINT "'" |
433 | |
0 | 434 WIN_FONT FT_SMALL |
435 return | |
436 | |
437 PLED_display_deko_mask: | |
124 | 438 rcall PLED_clear_decoarea |
439 ; total deco time word | |
440 call PLED_divemask_color ; Set Color for Divemode mask | |
441 DISPLAYTEXT d'85' ; TTS | |
442 call PLED_standard_color | |
443 return | |
0 | 444 |
445 PLED_display_deko: | |
446 btfsc menubit ; Divemode menu active? | |
87 | 447 bra PLED_display_deko1 ; Yes, do not display deco, only GF (if required) |
0 | 448 |
449 ostc_debug 'y' ; Sends debug-information to screen if debugmode active | |
450 ; deco stop word | |
9 | 451 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 452 DISPLAYTEXT d'82' ; DEKOSTOP |
3 | 453 call PLED_standard_color |
0 | 454 |
87 | 455 WIN_TOP .80 |
0 | 456 WIN_LEFT .94 |
457 WIN_FONT FT_MEDIUM | |
458 WIN_INVERT .0 ; Init new Wordprocessor | |
69 | 459 PLED_color_code warn_ceiling ; Color-code Output |
0 | 460 lfsr FSR2,letter |
461 movff char_O_array_decodepth+0,lo ; Ceiling in m | |
462 output_99 | |
123 | 463 PUTC 'm' |
0 | 464 movff char_O_array_decotime,lo ; length of first stop in m |
465 output_99 | |
123 | 466 STRCAT_PRINT "'" |
0 | 467 WIN_FONT FT_SMALL |
468 | |
87 | 469 ;PLED_display_deko1: |
0 | 470 ostc_debug 'x' ; Sends debug-information to screen if debugmode active |
471 | |
87 | 472 WIN_TOP .136 |
0 | 473 WIN_LEFT .119 |
474 WIN_FONT FT_MEDIUM | |
475 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 476 call PLED_standard_color |
0 | 477 lfsr FSR2,letter |
478 movff char_O_ascenttime,lo ; complete ascend time | |
479 movlw d'199' ; limit display of total ascend time to 99mins.... | |
480 cpfslt lo ; skip if 199 (WREG) > lo | |
481 movwf lo | |
482 bcf leftbind | |
483 output_8 | |
123 | 484 STRCAT_PRINT "'" |
0 | 485 |
87 | 486 PLED_display_deko1: |
0 | 487 movff char_O_gradient_factor,lo ; gradient factor |
488 GETCUSTOM8 d'8' ; threshold for display | |
489 cpfslt lo ; show value? | |
490 bra PLED_display_deko2 ; Yes | |
491 ; No | |
492 bra PLED_display_ndl_mask2 ; Clear gradient factor | |
493 | |
494 PLED_display_deko2: | |
495 ostc_debug 'w' ; Sends debug-information to screen if debugmode active | |
496 ;GF | |
497 WIN_TOP .145 | |
498 WIN_LEFT .0 | |
499 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
500 PLED_color_code warn_gf ; Color-code Output |
123 | 501 |
502 STRCPY "GF:" | |
0 | 503 movff char_O_gradient_factor,lo ; gradient factor |
504 output_8 | |
123 | 505 STRCAT_PRINT "% " |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
506 call PLED_standard_color |
0 | 507 return |
508 | |
509 PLED_simulator_data: | |
510 WIN_TOP .65 | |
511 WIN_LEFT .105 | |
512 WIN_FONT FT_SMALL | |
3 | 513 call PLED_standard_color |
0 | 514 lfsr FSR2,letter |
515 movff logbook_temp1,lo | |
516 bsf leftbind | |
517 output_8 | |
518 bcf leftbind | |
123 | 519 STRCAT_PRINT "min " |
0 | 520 |
521 WIN_TOP .95 | |
522 WIN_LEFT .100 | |
523 WIN_FONT FT_SMALL | |
3 | 524 call PLED_standard_color |
0 | 525 lfsr FSR2,letter |
526 movff logbook_temp2,lo | |
527 bsf leftbind | |
528 output_8 | |
529 bcf leftbind | |
123 | 530 STRCAT_PRINT "m " |
0 | 531 return |
532 | |
533 PLED_display_velocity: | |
534 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
535 return ; Yes, No update and return! | |
536 | |
537 ostc_debug 'v' ; Sends debug-information to screen if debugmode active | |
538 WIN_TOP .90 | |
539 WIN_LEFT .0 | |
540 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
541 PLED_color_code warn_velocity ; Color code output |
0 | 542 lfsr FSR2,letter |
543 movlw '-' | |
544 btfsc neg_flag | |
545 movlw '+' | |
546 movwf POSTINC2 | |
547 movff divA+0,lo | |
548 output_99 | |
549 OUTPUTTEXT d'83' ; m/min | |
550 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
551 call PLED_standard_color |
0 | 552 bsf pled_velocity_display |
553 return | |
554 | |
555 PLED_display_velocity_clear: | |
556 movlw d'8' | |
557 movwf temp1 | |
558 WIN_TOP .90 | |
559 WIN_LEFT .0 | |
560 bcf pled_velocity_display | |
561 bra PLED_display_clear_common_y1 | |
562 | |
563 PLED_display_wait_clear | |
564 movlw d'6' | |
565 movwf temp1 | |
566 WIN_TOP .2 | |
567 WIN_LEFT .115 | |
568 bra PLED_display_clear_common_y1 | |
569 | |
570 PLED_display_clear_common_y2: ; Clears with y-scale=2 | |
571 WIN_FONT FT_MEDIUM | |
572 bra PLED_display_clear_common1 | |
573 | |
574 PLED_display_clear_common_y1: ; Clears with y-scale=1 | |
575 WIN_FONT FT_SMALL | |
576 PLED_display_clear_common1: | |
577 lfsr FSR2,letter | |
578 PLED_display_clear_common2: | |
123 | 579 PUTC ' ' |
0 | 580 decfsz temp1,F |
581 bra PLED_display_clear_common2 | |
582 call word_processor | |
583 WIN_FONT FT_SMALL | |
584 return | |
585 | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
586 |
63 | 587 PLED_diveclock: |
119 | 588 call PLED_divemask_color ; Set Color for Divemode mask |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
589 DISPLAYTEXT d'255' ; Clock |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
590 call PLED_standard_color |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
591 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
592 PLED_diveclock2: |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
593 WIN_TOP .192 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
594 WIN_LEFT .123 |
63 | 595 WIN_FONT FT_SMALL |
596 WIN_INVERT .0 ; Init new Wordprocessor | |
597 call PLED_standard_color | |
598 lfsr FSR2,letter | |
599 movff hours,lo | |
600 output_99x | |
123 | 601 PUTC ':' |
63 | 602 movff mins,lo |
603 output_99x | |
604 call word_processor | |
605 return | |
606 | |
0 | 607 PLED_clock: |
608 ostc_debug 'c' | |
609 WIN_TOP .50 | |
56 | 610 WIN_LEFT .1 |
0 | 611 WIN_FONT FT_SMALL |
612 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 613 call PLED_standard_color |
0 | 614 lfsr FSR2,letter |
615 movff hours,lo | |
616 output_99x | |
123 | 617 PUTC ':' |
0 | 618 movff mins,lo |
619 output_99x | |
123 | 620 PUTC ':' |
0 | 621 movff secs,lo |
622 output_99x | |
123 | 623 STRCAT_PRINT " " |
0 | 624 return |
625 | |
111 | 626 PLED_interval: |
627 WIN_TOP .75 | |
628 WIN_LEFT .90 | |
629 WIN_FONT FT_SMALL | |
630 WIN_INVERT .0 ; Init new Wordprocessor | |
631 call PLED_standard_color | |
632 lfsr FSR2,letter | |
633 | |
634 movff surface_interval+0,lo | |
635 movff surface_interval+1,hi | |
636 call convert_time ; lo=mins, hi=hours | |
637 | |
638 movf hi,W | |
639 movff lo,hi | |
640 movwf lo ; exchange lo and hi | |
641 output_99x | |
123 | 642 PUTC ':' |
111 | 643 movff hi,lo |
644 output_99x | |
123 | 645 STRCAT_PRINT " " |
111 | 646 return |
647 | |
648 | |
649 PLED_show_cf11_cf12_cf29:; Display saturations/desaturation multiplier and last deco in the customview field | |
650 WIN_TOP .25 | |
651 WIN_LEFT .90 | |
652 WIN_FONT FT_SMALL | |
653 WIN_INVERT .0 ; Init new Wordprocessor | |
654 call PLED_standard_color | |
123 | 655 STRCPY "CF11:" |
656 | |
111 | 657 GETCUSTOM8 d'11' |
658 movwf lo | |
659 bsf leftbind | |
660 output_8 | |
123 | 661 STRCAT_PRINT "%" |
111 | 662 |
663 WIN_TOP .50 | |
123 | 664 STRCPY "CF12:" |
665 | |
111 | 666 GETCUSTOM8 d'12' |
667 movwf lo | |
668 bsf leftbind | |
669 output_8 | |
123 | 670 STRCAT_PRINT "%" |
111 | 671 |
672 PLED_show_cf11_cf12_cf29_2: | |
673 WIN_TOP .75 | |
123 | 674 STRCPY "CF29:" |
111 | 675 GETCUSTOM8 d'29' |
676 movwf lo | |
677 bsf leftbind | |
678 output_8 | |
123 | 679 STRCAT_PRINT "m" |
680 | |
111 | 681 bcf leftbind |
682 return | |
683 | |
684 PLED_show_cf32_cf33_cf29:; Display GF_LOW, GF_HIGH and last deco in the customview field | |
685 WIN_TOP .25 | |
686 WIN_LEFT .90 | |
687 WIN_FONT FT_SMALL | |
688 WIN_INVERT .0 ; Init new Wordprocessor | |
689 call PLED_standard_color | |
690 GETCUSTOM8 d'32' | |
691 movwf lo | |
123 | 692 |
693 STRCPY "GF_lo:" | |
111 | 694 bsf leftbind |
695 output_8 | |
123 | 696 STRCAT_PRINT "%" |
111 | 697 |
698 WIN_TOP .50 | |
699 GETCUSTOM8 d'33' | |
700 movwf lo | |
123 | 701 STRCPY "GF_hi:" |
111 | 702 bsf leftbind |
703 output_8 | |
123 | 704 STRCAT_PRINT "%" |
111 | 705 |
706 bra PLED_show_cf11_cf12_cf29_2 ; Display CF29 in the third row and RETURN | |
707 | |
708 | |
0 | 709 PLED_logbook_cursor: |
710 | |
711 PLED_menu_cursor: | |
123 | 712 WIN_BOX_BLACK .35, .239, .0, .16 |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
713 |
0 | 714 WIN_LEFT .0 |
715 WIN_FONT FT_SMALL | |
716 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 717 call PLED_standard_color |
718 | |
0 | 719 movff menupos,temp1 |
720 dcfsnz temp1,F | |
721 movlw d'35' | |
722 dcfsnz temp1,F | |
723 movlw d'65' | |
724 dcfsnz temp1,F | |
725 movlw d'95' | |
726 dcfsnz temp1,F | |
727 movlw d'125' | |
728 dcfsnz temp1,F | |
729 movlw d'155' | |
730 dcfsnz temp1,F | |
731 movlw d'185' | |
732 | |
733 movff WREG,win_top | |
123 | 734 STRCPY_PRINT "\xB7" |
0 | 735 return |
736 | |
737 PLED_menu_mask: | |
738 call PLED_topline_box | |
739 WIN_INVERT .1 ; Init new Wordprocessor | |
740 DISPLAYTEXT .5 ; Menu: | |
741 WIN_INVERT .0 ; Init new Wordprocessor | |
742 DISPLAYTEXT .6 ; Logbook | |
743 DISPLAYTEXT .7 ; Gas Setup | |
744 DISPLAYTEXT .9 ; Reset all | |
745 DISPLAYTEXT .10 ; Setup... | |
746 DISPLAYTEXT .142 ; More... | |
747 DISPLAYTEXT .11 ; Exit | |
748 return | |
749 | |
750 PLED_setup_menu_mask: | |
751 call PLED_topline_box | |
752 WIN_INVERT .1 ; Init new Wordprocessor | |
753 DISPLAYTEXT .98 ; Setup Menu: | |
754 WIN_INVERT .0 ; Init new Wordprocessor | |
755 DISPLAYTEXT .99 ; Custom FunctionsI | |
756 DISPLAYTEXT .153 ; Custom FunctionsII | |
757 DISPLAYTEXTH .276 ; Salinity: | |
758 DISPLAYTEXT .100 ; Decotype: | |
759 DISPLAYTEXT .142 ; More... | |
760 DISPLAYTEXT .11 ; Exit | |
761 return | |
762 | |
763 PLED_more_setup_menu_mask: | |
764 call PLED_topline_box | |
765 WIN_INVERT .1 ; Init new Wordprocessor | |
766 DISPLAYTEXTH .258 ; Setup Menu 2: | |
767 WIN_INVERT .0 ; Init new Wordprocessor | |
768 DISPLAYTEXTH .257 ; Date format: | |
769 DISPLAYTEXT .129 ; Debug: | |
12 | 770 DISPLAYTEXT .187 ; Show License |
0 | 771 |
772 DISPLAYTEXT .11 ; Exit | |
773 return | |
774 | |
775 PLED_more_menu_mask: | |
776 call PLED_topline_box | |
777 WIN_INVERT .1 ; Init new Wordprocessor | |
778 DISPLAYTEXT .144 ; Menu 2: | |
779 WIN_INVERT .0 ; Init new Wordprocessor | |
780 DISPLAYTEXT .8 ; Set Time | |
781 DISPLAYTEXT .110 ; Const. ppO2 Setup | |
782 DISPLAYTEXT .113 ; Battery Info | |
783 DISPLAYTEXT .247 ; Simulator | |
125 | 784 DISPLAYTEXTH .287 ; Altimeter |
0 | 785 DISPLAYTEXT .11 ; Exit |
786 return | |
787 | |
788 PLED_reset_menu_mask: | |
789 call PLED_topline_box | |
790 WIN_INVERT .1 ; Init new Wordprocessor | |
791 DISPLAYTEXT .28 ; Reset Menu | |
792 WIN_INVERT .0 ; Init new Wordprocessor | |
793 DISPLAYTEXT .21 ; Cancel Reset | |
794 DISPLAYTEXT .245 ; Reset CF,Gases & Deco | |
795 DISPLAYTEXTH .284 ; Reset Logbook | |
796 DISPLAYTEXTH .285 ; Reboot OSTC | |
797 DISPLAYTEXTH .286 ; Reset Decodata | |
798 DISPLAYTEXT .11 ; Exit | |
799 return | |
800 | |
801 PLED_simulator_mask: | |
802 call PLED_topline_box | |
803 WIN_INVERT .1 ; Init new Wordprocessor | |
804 DISPLAYTEXT .248 ; OSTC Simulator | |
805 WIN_INVERT .0 ; Init new Wordprocessor | |
806 DISPLAYTEXT .249 ; Start Dive | |
807 DISPLAYTEXTH .277 ; Bottom Time: | |
808 DISPLAYTEXTH .278 ; Max. Depth: | |
809 DISPLAYTEXTH .279 ; Calculate Deco | |
810 DISPLAYTEXTH .280 ; Show Decoplan | |
811 DISPLAYTEXT .11 ; Exit | |
812 return | |
813 | |
814 PLED_temp_surfmode: | |
815 ostc_debug 'e' | |
816 movff temperature+0,last_temperature+0 | |
817 movff temperature+1,last_temperature+1 | |
818 WIN_TOP .100 | |
56 | 819 WIN_LEFT .1 |
0 | 820 WIN_FONT FT_SMALL |
821 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 822 call PLED_standard_color |
823 | |
0 | 824 lfsr FSR2,letter |
825 movlw '-' | |
826 btfsc neg_temp ; Show "-"? | |
827 movwf POSTINC2 ; Yes | |
828 movff temperature+0,lo | |
829 movff temperature+1,hi | |
830 movlw d'3' | |
831 movwf ignore_digits | |
832 bsf leftbind ; left orientated output | |
833 output_16dp d'2' | |
834 bcf leftbind | |
123 | 835 STRCAT_PRINT "°C " |
0 | 836 return |
837 | |
838 PLED_temp_divemode: | |
839 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
840 return ; Yes, No update and return! | |
841 | |
842 ostc_debug 'u' ; Sends debug-information to screen if debugmode active | |
843 | |
844 ; temperature | |
845 movff temperature+0,last_temperature+0 | |
846 movff temperature+1,last_temperature+1 | |
847 | |
848 WIN_TOP .216 | |
75 | 849 WIN_LEFT .50 |
0 | 850 WIN_FONT FT_SMALL |
851 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 852 call PLED_standard_color |
853 | |
0 | 854 lfsr FSR2,letter |
855 movlw '-' | |
856 btfsc neg_temp ; Show "-"? | |
857 movwf POSTINC2 ; Yes | |
858 movff temperature+0,lo | |
859 movff temperature+1,hi | |
860 movlw d'3' | |
861 movwf ignore_digits | |
862 bsf leftbind ; left orientated output | |
863 output_16dp d'2' | |
864 bcf leftbind | |
123 | 865 STRCAT_PRINT "° " |
0 | 866 return |
867 | |
868 PLED_show_ppO2: ; Show ppO2 | |
869 ostc_debug 't' ; Sends debug-information to screen if debugmode active | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
870 WIN_TOP .119 |
0 | 871 WIN_LEFT .0 |
872 WIN_FONT FT_SMALL | |
74 | 873 PLED_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) |
3 | 874 |
123 | 875 STRCPY "ppO2:" |
74 | 876 |
877 ; Check very high ppO2 manually | |
878 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar? | |
879 bra PLED_show_ppO2_3 ; Yes, display fixed Value! | |
880 | |
0 | 881 movff xC+0,lo |
882 movff xC+1,hi | |
883 bsf ignore_digit4 | |
884 output_16dp d'1' | |
885 bcf ignore_digit4 | |
74 | 886 PLED_show_ppO2_2: |
123 | 887 STRCAT_PRINT " " |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
888 call PLED_standard_color |
0 | 889 return |
890 | |
74 | 891 PLED_show_ppO2_3: |
123 | 892 STRCAT ">6.6" |
74 | 893 bra PLED_show_ppO2_2 |
894 | |
0 | 895 PLED_show_ppO2_clear: ; Clear ppO2 |
896 movlw d'10' | |
897 movwf temp1 | |
898 WIN_TOP .120 | |
899 WIN_LEFT .0 | |
900 call PLED_display_clear_common_y1 | |
901 return | |
902 | |
903 PLED_active_gas_clear: ; clears active gas! | |
904 WIN_TOP .192 | |
75 | 905 WIN_LEFT .50 |
0 | 906 movlw d'5' |
907 movwf temp1 | |
908 bra PLED_display_clear_common_y1; also returns! | |
909 | |
910 PLED_active_gas_divemode: ; Displays current gas (e.g. 40/20) if a) He>0 or b) O2>Custom9 | |
911 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode | |
912 return | |
913 | |
914 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
915 return ; Yes, No update and return! | |
916 | |
25 | 917 WIN_INVERT .0 ; Init new Wordprocessor |
918 call PLED_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) | |
919 | |
920 btfss better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
921 return ; Done. | |
922 | |
923 ; Check if Gas Output should blink when a better gas is available... | |
924 GETCUSTOM8 d'42' ; =1 if gas should blink | |
925 movwf lo | |
926 movlw d'1' | |
927 cpfseq lo ; =1? | |
928 return ; No, Done. | |
929 | |
930 btg blinking_better_gas ; Toggle blink bit... | |
931 btfss blinking_better_gas ; blink now? | |
932 return ; No, Done. | |
933 WIN_INVERT .1 ; Init new Wordprocessor | |
934 call PLED_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) | |
935 WIN_INVERT .0 ; Init new Wordprocessor | |
936 return ; Done. | |
937 | |
938 PLED_active_gas_divemode_show: | |
0 | 939 ostc_debug 's' ; Sends debug-information to screen if debugmode active |
940 ; gas | |
941 WIN_TOP .192 | |
75 | 942 WIN_LEFT .50 |
0 | 943 WIN_FONT FT_SMALL |
3 | 944 call PLED_standard_color |
945 | |
0 | 946 movlw d'100' ; 100% in the tank |
947 movff char_I_N2_ratio,lo ; minus N2 | |
948 bsf STATUS,C ; set borrow bit | |
949 subfwb lo,W | |
950 movff char_I_He_ratio,lo ; minus He | |
951 bsf STATUS,C ; set borrow bit | |
952 subfwb lo,F ; =% O2 | |
953 GETCUSTOM8 d'9' ; get oxygen treshold | |
954 movff char_I_He_ratio,hi ; He ratio | |
955 cpfsgt lo | |
956 bra PLED_active_gas_divemode2 ; Check He | |
957 bra PLED_active_gas_divemode3 ; Skip He check, display gas | |
958 | |
959 PLED_active_gas_divemode2: | |
960 tstfsz hi ; He = 0 % | |
961 bra PLED_active_gas_divemode3 ; display gas | |
962 ; O2 below treshold, He=0 -> Skip display! | |
963 movlw d'5' | |
964 movwf temp1 | |
965 bra PLED_display_clear_common_y1 ; also returns! | |
966 | |
967 PLED_active_gas_divemode3: | |
968 movlw d'21' | |
969 cpfseq lo ; Air? (O2=21%) | |
970 bra PLED_active_gas_divemode4 ; No! | |
971 tstfsz hi ; Air? (He=0%) | |
972 bra PLED_active_gas_divemode4 ; No! | |
973 | |
974 ; Yes, display "Air" instead of 21/0 | |
975 lfsr FSR2,letter | |
8 | 976 OUTPUTTEXTH d'264' ;"Air " |
977 movlw ' ' | |
978 btfsc better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
979 movlw '*' | |
980 movwf POSTINC2 | |
0 | 981 call word_processor |
25 | 982 return |
0 | 983 |
984 PLED_active_gas_divemode4: | |
985 lfsr FSR2,letter | |
986 bsf leftbind ; left orientated output | |
987 output_8 ; O2 ratio is still in "lo" | |
123 | 988 PUTC '/' |
0 | 989 movff char_I_He_ratio,lo ; copy He ratio into lo |
990 output_8 | |
991 movlw ' ' | |
8 | 992 btfsc better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
993 movlw '*' | |
0 | 994 movwf POSTINC2 |
995 bcf leftbind | |
996 call word_processor | |
25 | 997 return |
998 | |
17 | 999 |
0 | 1000 |
1001 PLED_display_decotype_surface: | |
1002 WIN_LEFT .85 | |
1003 WIN_FONT FT_SMALL | |
1004 WIN_INVERT .0 ; Init new Wordprocessor | |
123 | 1005 call PLED_standard_color |
1006 | |
0 | 1007 clrf EEADRH |
1008 read_int_eeprom d'34' ; Read deco data | |
1009 tstfsz EEDATA | |
1010 bra show_decotype_surface2 | |
1011 | |
1012 ;ZH-L16 | |
1013 WIN_TOP .125 | |
123 | 1014 STRCPY_PRINT "O" |
1015 | |
0 | 1016 WIN_TOP .150 |
123 | 1017 STRCPY_PRINT "C" |
0 | 1018 return |
123 | 1019 |
0 | 1020 show_decotype_surface2: |
1021 decf EEDATA,F | |
1022 tstfsz EEDATA | |
1023 bra show_decotype_surface3 | |
1024 ; Gauge | |
1025 return | |
1026 | |
1027 show_decotype_surface3: | |
123 | 1028 decf EEDATA,F |
1029 tstfsz EEDATA | |
1030 bra show_decotype_surface4 | |
1031 ; const. ppO2 | |
1032 WIN_TOP .125 | |
1033 call PLED_standard_color | |
1034 | |
1035 STRCPY_PRINT "C" | |
1036 | |
1037 WIN_TOP .150 | |
1038 call word_processor ; Twice the same string. | |
1039 return | |
1040 | |
0 | 1041 show_decotype_surface4: |
1042 decf EEDATA,F | |
1043 tstfsz EEDATA | |
1044 bra show_decotype_surface5 | |
1045 ; Apnoe | |
1046 return | |
123 | 1047 |
0 | 1048 show_decotype_surface5: |
1049 show_decotype_surface6: | |
123 | 1050 decf EEDATA,F |
1051 tstfsz EEDATA | |
1052 bra show_decotype_surface6 | |
1053 ; Multi-GF OC | |
1054 WIN_TOP .125 | |
1055 STRCPY_PRINT "G" | |
1056 | |
1057 WIN_TOP .150 | |
1058 STRCPY_PRINT "F" | |
1059 return | |
0 | 1060 |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1061 ;----------------------------------------------------------------------------- |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1062 ; Set color to grey when gas is inactive |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1063 ; Inputs: WREG : gas# (0..4) |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1064 ; Trashes: lo |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1065 ; New v1.44se |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1066 PLED_grey_inactive_gas: |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1067 movwf lo ; copy gas number 0-4 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1068 incf lo,F ; 1-5 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1069 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1070 read_int_eeprom d'33' ; Get First gas (1-5) |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1071 movf EEDATA,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1072 subwf lo,W ; Compare with current |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1073 bz PLED_white_gas ; First is always on. |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1074 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1075 movlw .28-1 ; Depth for gas# is at idx+28 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1076 addwf lo,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1077 movwf EEADR ; address in EEPROM. |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1078 call read_eeprom ; Read depth |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1079 clrf WREG |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1080 cpfsgt EEDATA ; is depth > 0 ? |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1081 bra PLED_grey_gas |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1082 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1083 read_int_eeprom d'27' ; read flag register |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1084 PLED_grey_inactive_gas1: |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1085 rrcf EEDATA ; roll flags into carry |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1086 decfsz lo,F ; max. 5 times... |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1087 bra PLED_grey_inactive_gas1 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1088 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1089 bnc PLED_grey_gas ; test carry |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1090 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1091 PLED_white_gas: |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1092 GETCUSTOM8 d'35' ;movlw color_white |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1093 goto PLED_set_color ; grey out inactive gases! |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1094 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1095 PLED_grey_gas: |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1096 movlw color_grey |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1097 goto PLED_set_color ; grey out inactive gases! |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1098 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1099 ;----------------------------------------------------------------------------- |
123 | 1100 ; Display Pre-Dive Screen |
1101 | |
1102 PLED_pre_dive_screen: | |
13 | 1103 ; List active gases/Setpoints |
1104 | |
1105 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
1106 bra PLED_pre_dive_screen3 ; Yes, display SetPoint/Sensor result list | |
1107 | |
1108 PLED_pre_dive_screen2: | |
1109 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
1110 | |
1111 WIN_LEFT .90 | |
1112 WIN_FONT FT_SMALL | |
1113 bsf leftbind | |
1114 | |
1115 movlw d'2' | |
1116 movwf wait_temp ; here: stores eeprom address for gas list | |
1117 movlw d'0' | |
1118 movwf waitms_temp ; here: stores row for gas list | |
1119 clrf hi ; here: Gas counter | |
1120 | |
1121 PLED_pre_dive_screen2_loop: | |
1122 incf hi,F ; Increase Gas | |
1123 movlw d'4' | |
1124 addwf wait_temp,F ; Increase eeprom address for gas list | |
1125 | |
123 | 1126 STRCPY "G" |
13 | 1127 movff hi,lo ; copy gas number |
1128 output_8 ; display gas number | |
123 | 1129 STRCAT ": " |
13 | 1130 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
1131 call read_eeprom ; get byte (stored in EEDATA) | |
1132 movff EEDATA,lo ; copy to lo | |
1133 output_8 ; outputs into Postinc2! | |
123 | 1134 PUTC '/' |
13 | 1135 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
1136 call read_eeprom ; get byte (stored in EEDATA) | |
1137 movff EEDATA,lo ; copy to lo | |
1138 output_8 ; outputs into Postinc2! | |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1139 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1140 decf hi,W ; Gas # in 0..4 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1141 call PLED_grey_inactive_gas |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1142 |
13 | 1143 read_int_eeprom d'33' ; Read start gas (1-5) |
1144 movf EEDATA,W | |
1145 cpfseq hi ; Current Gas the active gas? | |
1146 bra PLED_pre_dive_screen2a | |
1147 bra PLED_pre_dive_screen2b | |
1148 | |
1149 PLED_pre_dive_screen2a: | |
1150 movlw d'25' | |
1151 addwf waitms_temp,F ; Increase row | |
1152 WIN_LEFT .90 | |
1153 movff waitms_temp,win_top ; Set Row | |
1154 call word_processor ; No, display gas | |
1155 | |
1156 PLED_pre_dive_screen2b: | |
1157 movlw d'5' ; list all four (remaining) gases | |
1158 cpfseq hi ; All gases shown? | |
1159 bra PLED_pre_dive_screen2_loop ; No | |
1160 | |
1161 return ; No, return (OC mode) | |
1162 | |
1163 PLED_pre_dive_screen3: | |
1164 WIN_LEFT .90 | |
1165 WIN_FONT FT_SMALL | |
1166 bsf leftbind | |
127 | 1167 call PLED_standard_color |
13 | 1168 |
1169 ; list three SP in Gaslist | |
1170 movlw d'35' ; 36 = current SP position in EEPROM | |
1171 movwf wait_temp ; here: stores eeprom address for gas list | |
1172 movlw d'0' | |
1173 movwf waitms_temp ; here: stores row for gas list | |
124 | 1174 clrf decoplan_index ; here: SP counter |
13 | 1175 |
1176 PLED_pre_dive_screen3_loop: | |
1177 incf wait_temp,F ; EEPROM address | |
124 | 1178 incf decoplan_index,F ; Increase SP |
13 | 1179 |
1180 movlw d'25' | |
1181 addwf waitms_temp,F ; Increase row | |
1182 WIN_LEFT .90 | |
1183 movff waitms_temp,win_top ; Set Row | |
1184 | |
123 | 1185 STRCPY "SP" |
124 | 1186 movff decoplan_index,lo ; copy gas number |
13 | 1187 output_8 ; display gas number |
123 | 1188 STRCAT ": " |
13 | 1189 movff wait_temp, EEADR; SP #hi position |
1190 call read_eeprom ; get byte (stored in EEDATA) | |
1191 movff EEDATA,lo ; copy to lo | |
1192 clrf hi | |
1193 output_16dp d'3' ; outputs into Postinc2! | |
1194 call word_processor | |
1195 | |
1196 movlw d'3' ; list all three SP | |
124 | 1197 cpfseq decoplan_index ; All gases shown? |
13 | 1198 bra PLED_pre_dive_screen3_loop ;no |
1199 | |
19 | 1200 read_int_eeprom d'33' ; Read byte (stored in EEDATA) |
1201 movff EEDATA,active_gas ; Read start gas (1-5) | |
1202 decf active_gas,W ; Gas 0-4 | |
1203 mullw d'4' | |
1204 movf PRODL,W | |
1205 addlw d'6' ; = address for O2 ratio | |
1206 movwf EEADR | |
127 | 1207 call read_eeprom ; Read O2 ratio |
1208 movff EEDATA, lo ; O2 ratio | |
1209 incf EEADR,F ; = address for He | |
1210 call read_eeprom ; Read He ratio | |
1211 movff EEDATA,hi ; And copy into hold register | |
19 | 1212 |
1213 WIN_LEFT .90 | |
1214 WIN_TOP .100 | |
123 | 1215 STRCPY "Dil:" |
19 | 1216 output_8 ; O2 Ratio |
123 | 1217 PUTC '/' |
19 | 1218 movff hi,lo |
1219 output_8 ; He Ratio | |
1220 call word_processor | |
1221 | |
13 | 1222 bcf leftbind |
1223 return ; Return (CC Mode) | |
1224 | |
0 | 1225 PLED_active_gas_surfmode: ; Displays start gas/SP 1 |
1226 ostc_debug 'q' ; Sends debug-information to screen if debugmode active | |
1227 | |
1228 btfsc FLAG_apnoe_mode ; In Apnoe mode? | |
1229 return ; Yes, return | |
1230 | |
1231 btfsc gauge_mode ; In Gauge mode? | |
1232 return ; Yes, return | |
1233 | |
1234 btfss FLAG_const_ppO2_mode ; are we in const. ppO2 mode? | |
1235 bra PLED_active_gas_surfmode2 ; No, display gases | |
1236 | |
1237 ; In CC Mode | |
1238 WIN_TOP .135 | |
1239 WIN_LEFT .90 | |
1240 WIN_FONT FT_SMALL | |
1241 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1242 call PLED_standard_color |
1243 | |
0 | 1244 lfsr FSR2,letter |
1245 read_int_eeprom d'36' | |
1246 movff EEDATA,lo ; copy to lo | |
1247 clrf hi | |
1248 output_16dp d'3' ; outputs into Postinc2! | |
1249 bcf leftbind | |
123 | 1250 |
1251 STRCAT_PRINT "Bar" | |
0 | 1252 bra PLED_active_gas_surfmode_exit |
1253 | |
1254 PLED_active_gas_surfmode2: | |
1255 WIN_TOP .130 | |
1256 WIN_LEFT .100 | |
1257 WIN_FONT FT_MEDIUM | |
1258 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1259 call PLED_standard_color |
1260 | |
0 | 1261 |
1262 read_int_eeprom d'33' ; Read byte (stored in EEDATA) | |
1263 movff EEDATA,active_gas ; Read start gas (1-5) | |
1264 | |
1265 decf active_gas,W ; Gas 0-4 | |
1266 mullw d'4' | |
1267 movf PRODL,W | |
1268 addlw d'7' ; = address for He ratio | |
1269 movwf EEADR | |
1270 call read_eeprom ; Read He ratio | |
1271 movff EEDATA,char_I_He_ratio ; And copy into hold register | |
1272 | |
1273 decf active_gas,W ; Gas 0-4 | |
1274 mullw d'4' | |
1275 movf PRODL,W | |
1276 addlw d'6' ; = address for O2 ratio | |
1277 movwf EEADR | |
1278 call read_eeprom ; Read O2 ratio | |
1279 movff EEDATA, char_I_O2_ratio ; O2 ratio | |
1280 movff char_I_He_ratio, wait_temp ; copy into bank1 register | |
1281 bsf STATUS,C ; Borrow bit | |
1282 movlw d'100' ; 100% | |
1283 subfwb wait_temp,W ; minus He | |
1284 bsf STATUS,C ; Borrow bit | |
1285 subfwb EEDATA,F ; minus O2 | |
1286 movff EEDATA, char_I_N2_ratio ; = N2! | |
1287 | |
1288 movlw d'100' ; 100% in the tank | |
1289 movff char_I_N2_ratio,lo ; minus N2 | |
1290 bsf STATUS,C ; set borrow bit | |
1291 subfwb lo,W | |
1292 movff char_I_He_ratio,lo ; minus He | |
1293 bsf STATUS,C ; set borrow bit | |
1294 subfwb lo,F ; =% O2 | |
1295 | |
1296 movff char_I_He_ratio,hi ; Copy into Bank1 register | |
1297 | |
1298 movlw d'21' | |
1299 cpfseq lo ; Air? (O2=21%) | |
1300 bra PLED_active_gas_surfmode4 ; No! | |
1301 tstfsz hi ; Air? (He=0%) | |
1302 bra PLED_active_gas_surfmode4 ; No! | |
1303 | |
1304 ; Yes, display "Air" instead of 21/0 | |
1305 DISPLAYTEXTH d'265' ;"Air ", y-scale=2 | |
1306 bra PLED_active_gas_surfmode_exit | |
1307 | |
1308 PLED_active_gas_surfmode4: | |
1309 lfsr FSR2,letter | |
1310 bsf leftbind ; left orientated output | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
77
diff
changeset
|
1311 output_99 ; O2 ratio is still in "lo" |
123 | 1312 PUTC '/' |
0 | 1313 movff char_I_He_ratio,lo ; copy He ratio into lo |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
77
diff
changeset
|
1314 output_99 |
0 | 1315 bcf leftbind |
1316 call word_processor | |
1317 bra PLED_active_gas_surfmode_exit | |
1318 | |
1319 PLED_active_gas_surfmode_exit: | |
123 | 1320 ; WIN_FRAME_BLACK .122, .175, .82, .159 |
0 | 1321 return |
1322 | |
1323 PLED_confirmbox: | |
123 | 1324 WIN_BOX_BLACK .68, .146, .34, .101 |
1325 WIN_FRAME_STD .70, .144, .35, .100 | |
1326 | |
0 | 1327 DISPLAYTEXT .143 ; Confirm: |
1328 DISPLAYTEXT .145 ; Cancel | |
1329 DISPLAYTEXT .146 ; OK! | |
1330 | |
1331 movlw d'1' | |
1332 movwf menupos | |
1333 | |
1334 PLED_confirmbox2: | |
123 | 1335 WIN_BOX_BLACK .96, .143, .39, .51 |
0 | 1336 |
1337 movff menupos,temp1 | |
1338 movlw d'96' | |
1339 dcfsnz temp1,F | |
1340 movlw d'96' | |
1341 dcfsnz temp1,F | |
1342 movlw d'120' | |
1343 movff WREG,win_top | |
1344 WIN_LEFT .39 | |
1345 WIN_FONT FT_SMALL | |
1346 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1347 call PLED_standard_color |
1348 | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
1349 STRCPY_PRINT "\xB7" ; Cursor |
0 | 1350 |
1351 bcf sleepmode ; clear some flags | |
1352 bcf menubit2 | |
1353 bcf menubit3 | |
1354 bcf switch_right | |
1355 bcf switch_left | |
1356 clrf timeout_counter2 | |
1357 WAITMS d'100' | |
1358 | |
1359 PLED_confirmbox_loop: | |
1360 call check_switches_logbook | |
1361 | |
1362 btfsc menubit3 ; SET/MENU? | |
1363 bra PLED_confirmbox_move_cursor; Move Cursor | |
1364 btfsc menubit2 ; ENTER? | |
1365 bra PLED_confirmbox_menu_do ; Do task | |
1366 | |
1367 btfsc onesecupdate | |
1368 call timeout_surfmode ; timeout | |
1369 | |
1370 btfsc onesecupdate | |
1371 call set_dive_modes ; check, if divemode must be entered | |
1372 bcf onesecupdate ; one second update | |
1373 | |
1374 btfsc sleepmode ; Timeout? | |
1375 bra PLED_confirmbox_cancel ; back with cancel | |
1376 btfsc divemode | |
1377 bra PLED_confirmbox_cancel ; back with cancel | |
1378 | |
1379 bra PLED_confirmbox_loop ; wait for something to do | |
1380 | |
1381 PLED_confirmbox_cancel: | |
1382 retlw .0 | |
1383 PLED_confirmbox_ok: | |
1384 retlw .1 | |
1385 | |
1386 PLED_confirmbox_menu_do: | |
1387 dcfsnz menupos,F | |
1388 bra PLED_confirmbox_cancel | |
1389 dcfsnz menupos,F | |
1390 bra PLED_confirmbox_ok | |
1391 bra PLED_confirmbox_cancel | |
1392 | |
1393 PLED_confirmbox_move_cursor: | |
1394 incf menupos,F | |
1395 movlw d'3' ; number of menu options+1 | |
1396 cpfseq menupos ; =limit? | |
1397 bra PLED_confirmbox_move_cursor2 ; No! | |
1398 movlw d'1' ; Yes, reset to position 1! | |
1399 movwf menupos | |
1400 PLED_confirmbox_move_cursor2: | |
1401 bra PLED_confirmbox2 ; Return to Profile Menu, also updates cursor | |
1402 | |
1403 | |
1404 PLED_depth: | |
1405 ostc_debug 'r' ; Sends debug-information to screen if debugmode active | |
1406 movff rel_pressure+1,hi | |
1407 movff rel_pressure+0,lo | |
1408 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
1409 | |
1410 movlw .039 | |
1411 cpfslt hi | |
1412 bra depth_greater_99_84mtr | |
1413 | |
1414 btfsc depth_greater_100m ; Was depth>100m during last call | |
1415 call PLED_clear_depth ; Yes, clear depth area | |
1416 bcf depth_greater_100m ; Do this once only... | |
1417 | |
1418 lfsr FSR2,letter | |
1419 | |
1420 movlw HIGH d'1000' | |
1421 movwf sub_a+1 | |
1422 movlw LOW d'1000' | |
1423 movwf sub_a+0 | |
1424 movff hi,sub_b+1 | |
1425 movff lo,sub_b+0 | |
1426 incf sub_b+0,F | |
1427 movlw d'0' | |
1428 addwfc sub_b+1,F ; Add 1mBar offset | |
1429 call sub16 ; sub_c = sub_a - sub_b | |
1430 btfss neg_flag ; Depth lower then 10m? | |
1431 rcall depth_less_10mtr ; Yes, add extra space | |
1432 | |
1433 WIN_TOP .24 | |
1434 WIN_LEFT .0 | |
1435 WIN_FONT FT_LARGE | |
1436 WIN_INVERT .0 ; Init new Wordprocessor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1437 PLED_color_code warn_depth ; Color-code the output |
0 | 1438 |
1439 movlw HIGH d'99' | |
1440 movwf sub_a+1 | |
1441 movlw LOW d'99' | |
1442 movwf sub_a+0 | |
1443 movff hi,sub_b+1 | |
1444 movff lo,sub_b+0 | |
1445 call sub16 ; sub_c = sub_a - sub_b | |
1446 btfss neg_flag ; Depth lower then 1m? | |
1447 bra pled_depth2 ; Yes, display manual Zero | |
1448 | |
1449 bsf leftbind | |
1450 bsf ignore_digit4 | |
1451 output_16 ; Full meters in Big font | |
1452 bcf leftbind | |
1453 bra pled_depth3 | |
1454 | |
1455 pled_depth2: | |
123 | 1456 PUTC '0' |
1457 | |
0 | 1458 pled_depth3: |
1459 call word_processor | |
1460 bcf ignore_digit4 | |
1461 | |
1462 WIN_FONT FT_MEDIUM | |
1463 WIN_TOP .50 | |
1464 WIN_LEFT .40 | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1465 PLED_color_code warn_depth ; Color-code the output |
0 | 1466 |
1467 movff rel_pressure+1,hi | |
1468 movff rel_pressure+0,lo | |
1469 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
123 | 1470 |
1471 STRCPY "." | |
0 | 1472 |
1473 movlw HIGH d'9' | |
1474 movwf sub_a+1 | |
1475 movlw LOW d'9' | |
1476 movwf sub_a+0 | |
1477 movff hi,sub_b+1 | |
1478 movff lo,sub_b+0 | |
1479 call sub16 ; sub_c = sub_a - sub_b | |
1480 btfss neg_flag ; Depth lower then 0.1m? | |
1481 bra pled_depth4 ; Yes, display manual Zero | |
1482 | |
1483 movlw d'4' | |
1484 movwf ignore_digits | |
1485 bsf ignore_digit5 | |
1486 output_16dp d'0' | |
1487 bra pled_depth5 | |
1488 | |
1489 pled_depth4: | |
123 | 1490 PUTC '0' |
0 | 1491 |
1492 pled_depth5: | |
1493 call word_processor ; decimeters in medium font | |
1494 bcf ignore_digit5 | |
1495 WIN_FONT FT_SMALL | |
1496 return | |
1497 | |
1498 depth_greater_99_84mtr: ; Display only in full meters | |
1499 btfss depth_greater_100m ; Is depth>100m already? | |
1500 call PLED_clear_depth ; No, clear depth area and set flag | |
1501 ; Depth is already in hi:lo | |
1502 ; Show depth in Full meters | |
1503 ; That means ignore figure 4 and 5 | |
1504 lfsr FSR2,letter | |
1505 WIN_TOP .24 | |
1506 WIN_LEFT .0 | |
1507 WIN_FONT FT_LARGE | |
1508 WIN_INVERT .0 ; Init new Wordprocessor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
1509 PLED_color_code warn_depth ; Color-code the output |
3 | 1510 |
0 | 1511 bsf ignore_digit4 |
1512 bsf leftbind | |
1513 output_16 | |
1514 bcf leftbind | |
1515 call word_processor | |
1516 bcf ignore_digit4 | |
1517 WIN_FONT FT_SMALL | |
1518 return | |
1519 | |
1520 depth_less_10mtr: | |
123 | 1521 PUTC ' ' |
0 | 1522 return |
1523 | |
1524 PLED_clear_depth ; No, clear depth area and set flag | |
123 | 1525 WIN_BOX_BLACK .24, .90, .0, .90 |
0 | 1526 bsf depth_greater_100m ; Set Flag |
1527 return | |
1528 | |
1529 PLED_desaturation_time: | |
1530 ostc_debug 'h' | |
1531 WIN_TOP .150 | |
56 | 1532 WIN_LEFT .1 |
0 | 1533 WIN_FONT FT_SMALL |
1534 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1535 call PLED_standard_color |
1536 | |
0 | 1537 lfsr FSR2,letter |
1538 OUTPUTTEXT d'14' ; Desat | |
123 | 1539 PUTC ' ' |
0 | 1540 movff int_O_desaturation_time+0,lo ; divide by 60... |
1541 movff int_O_desaturation_time+1,hi | |
1542 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
1543 bsf leftbind | |
1544 movf lo,W | |
1545 movff hi,lo | |
1546 movwf hi ; exchange lo and hi... | |
1547 output_8 ; Hours | |
123 | 1548 PUTC ':' |
0 | 1549 movff hi,lo ; Minutes |
1550 output_99x | |
1551 bcf leftbind | |
1552 call word_processor | |
1553 return | |
1554 | |
1555 PLED_nofly_time: | |
1556 ostc_debug 'g' | |
1557 WIN_TOP .125 | |
56 | 1558 WIN_LEFT .1 |
0 | 1559 WIN_FONT FT_SMALL |
1560 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1561 call PLED_standard_color |
1562 | |
0 | 1563 lfsr FSR2,letter |
1564 OUTPUTTEXT d'35' ; NoFly | |
123 | 1565 PUTC ' ' |
0 | 1566 movff nofly_time+0,lo ; divide by 60... |
1567 movff nofly_time+1,hi | |
1568 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
1569 bsf leftbind | |
1570 movf lo,W | |
1571 movff hi,lo | |
1572 movwf hi ; exchange lo and hi... | |
1573 output_8 ; Hours | |
123 | 1574 PUTC ':' |
0 | 1575 movff hi,lo ; Minutes |
1576 decf lo,F | |
1577 btfsc lo,7 ; keep Nofly time | |
1578 clrf lo | |
1579 output_99x | |
1580 bcf leftbind | |
1581 call word_processor | |
1582 return | |
1583 | |
1584 | |
1585 update_surf_press: | |
1586 btfsc premenu ; Do not update when "Menu?" is displayed! | |
1587 return | |
1588 | |
1589 ostc_debug 'b' ; Sends debug-information to screen if debugmode active | |
1590 WIN_TOP .25 | |
56 | 1591 WIN_LEFT .1 |
0 | 1592 WIN_FONT FT_SMALL |
1593 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1594 call PLED_standard_color |
1595 | |
0 | 1596 lfsr FSR2,letter |
1597 movff amb_pressure+0,lo | |
1598 movff amb_pressure+1,hi | |
1599 bsf leftbind | |
1600 output_16 | |
1601 bcf leftbind | |
123 | 1602 STRCAT_PRINT "mbar " |
0 | 1603 return |
1604 | |
1605 update_batt_voltage_divemode: | |
1606 | |
1607 update_batt_voltage: | |
1608 ostc_debug 'f' | |
1609 | |
1610 GETCUSTOM8 d'31' ; =1 if battery voltage should be visible | |
1611 movwf lo | |
1612 movlw d'1' | |
1613 cpfseq lo ; =1? | |
1614 bra update_batt_voltage2 ; No, show symbol | |
1615 | |
1616 WIN_TOP .175 | |
56 | 1617 WIN_LEFT .1 |
0 | 1618 WIN_FONT FT_SMALL |
1619 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1620 call PLED_standard_color |
1621 | |
0 | 1622 lfsr FSR2,letter |
1623 movff batt_voltage+0,lo | |
1624 movff batt_voltage+1,hi | |
1625 movlw d'1' | |
1626 movwf ignore_digits | |
1627 bsf ignore_digit5 ; do not display mV | |
1628 bsf leftbind | |
1629 output_16dp d'2' ; e.g. 3.45V | |
1630 bcf leftbind | |
123 | 1631 STRCAT_PRINT "V " |
0 | 1632 return |
1633 | |
1634 update_batt_voltage2: | |
123 | 1635 WIN_FRAME_STD .174, .194, .1, .32 |
0 | 1636 |
25 | 1637 ; 4100-Vbatt |
1638 movlw LOW d'4100' | |
0 | 1639 movwf sub_a+0 |
25 | 1640 movlw HIGH d'4100' |
0 | 1641 movwf sub_a+1 |
1642 movff batt_voltage+0,sub_b+0 | |
1643 movff batt_voltage+1,sub_b+1 | |
1644 call sub16 ; sub_c = sub_a - sub_b | |
25 | 1645 ; Battery full (>4100mV? |
0 | 1646 btfsc neg_flag |
1647 bra update_batt_voltage2_full | |
1648 | |
25 | 1649 ; Vbatt-3500 |
1650 movlw LOW d'3500' | |
0 | 1651 movwf sub_b+0 |
25 | 1652 movlw HIGH d'3500' |
0 | 1653 movwf sub_b+1 |
1654 movff batt_voltage+0,sub_a+0 | |
1655 movff batt_voltage+1,sub_a+1 | |
1656 call sub16 ; sub_c = sub_a - sub_b | |
25 | 1657 ; Battery lower then 3500mV? |
0 | 1658 btfsc neg_flag |
1659 bra update_batt_voltage2_empty | |
1660 | |
25 | 1661 ; Battery is between 3500 and 4100mV |
0 | 1662 ; sub_c:2 is between 0 and 600 |
1663 movff sub_c+0,xA+0 | |
1664 movff sub_c+1,xA+1 | |
1665 movlw d'20' | |
1666 movwf xB+0 | |
1667 clrf xB+1 | |
1668 call div16x16 ;xA/xB=xC with xA as remainder | |
1669 ; xC is between 0 and 30 | |
1670 movff xC+0,wait_temp ;save value | |
56 | 1671 incf wait_temp,F ; +1 |
1672 | |
1673 movlw d'3' | |
0 | 1674 cpfsgt wait_temp |
56 | 1675 movwf wait_temp ; Minimum = 3 |
0 | 1676 |
1677 update_batt_voltage2a: | |
123 | 1678 WIN_BOX_STD .181, .187, .32, .34 |
25 | 1679 |
0 | 1680 update_batt_voltage3: |
25 | 1681 GETCUSTOM8 d'34' ; Color battery |
123 | 1682 call PLED_set_color |
1683 | |
25 | 1684 movlw .176 |
123 | 1685 movff WREG,win_top ; row top (0-239) |
1686 movlw .192-.176 | |
1687 movff WREG,win_height ; row bottom (0-239) | |
56 | 1688 movlw .2 |
123 | 1689 movff WREG,win_leftx2 ; column left (0-159) |
1690 movff wait_temp,win_width ; column right (0-159) | |
0 | 1691 call PLED_box |
1692 | |
25 | 1693 call PLED_standard_color |
0 | 1694 return |
1695 | |
1696 update_batt_voltage2_empty: | |
1697 movlw d'1' | |
1698 movwf wait_temp | |
1699 bra update_batt_voltage2a | |
1700 | |
1701 update_batt_voltage2_full: | |
1702 movlw d'30' | |
1703 movwf wait_temp | |
25 | 1704 bra update_batt_voltage2a |
0 | 1705 |
1706 PLED_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1707 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1708 tstfsz EEDATA | |
1709 bra PLED_convert_date1 | |
1710 | |
1711 ; Use MMDDYY | |
1712 movff convert_value_temp+0,lo ;month | |
1713 bsf leftbind | |
1714 output_99x | |
1715 bcf leftbind | |
123 | 1716 PUTC '/' |
0 | 1717 movff convert_value_temp+1,lo ;day |
1718 bra PLED_convert_date1_common ;year | |
1719 | |
1720 PLED_convert_date1: | |
1721 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1722 decfsz EEDATA,F | |
1723 bra PLED_convert_date2 | |
1724 | |
1725 ; Use DDMMYY | |
1726 movff convert_value_temp+1,lo ;day | |
1727 bsf leftbind | |
1728 output_99x | |
1729 bcf leftbind | |
123 | 1730 PUTC '/' |
0 | 1731 movff convert_value_temp+0,lo ;month |
1732 | |
1733 PLED_convert_date1_common: | |
1734 bsf leftbind | |
1735 output_99x | |
1736 bcf leftbind | |
123 | 1737 PUTC '/' |
0 | 1738 movff convert_value_temp+2,lo ;year |
1739 bsf leftbind | |
1740 output_99x | |
1741 return | |
1742 | |
1743 PLED_convert_date2: | |
1744 ; Use YYMMDD | |
1745 movff convert_value_temp+2,lo ;year | |
1746 bsf leftbind | |
1747 output_99x | |
1748 bcf leftbind | |
123 | 1749 PUTC '/' |
0 | 1750 movff convert_value_temp+0,lo ;month |
1751 bsf leftbind | |
1752 output_99x | |
1753 bcf leftbind | |
123 | 1754 PUTC '/' |
0 | 1755 movff convert_value_temp+1,lo ;day |
1756 bsf leftbind | |
1757 output_99x | |
1758 return | |
1759 | |
1760 PLED_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 | |
1761 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1762 tstfsz EEDATA | |
1763 bra PLED_convert_date_short1 | |
1764 | |
1765 ; Use MMDDYY | |
1766 PLED_convert_date_short_common: | |
1767 movff convert_value_temp+0,lo ;month | |
1768 bsf leftbind | |
1769 output_99x | |
1770 bcf leftbind | |
123 | 1771 PUTC '/' |
0 | 1772 movff convert_value_temp+1,lo ;day |
1773 bsf leftbind | |
1774 output_99x | |
1775 bcf leftbind | |
1776 return | |
1777 | |
1778 PLED_convert_date_short1: | |
1779 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
1780 decfsz EEDATA,F | |
1781 bra PLED_convert_date_short_common ; Use YYMMDD | |
1782 | |
1783 ; Use DDMMYY | |
1784 movff convert_value_temp+1,lo ;day | |
1785 bsf leftbind | |
1786 output_99x | |
1787 bcf leftbind | |
123 | 1788 PUTC '/' |
0 | 1789 movff convert_value_temp+0,lo ;month |
1790 bsf leftbind | |
1791 output_99x | |
1792 bcf leftbind | |
1793 return | |
1794 | |
1795 update_date: | |
1796 ostc_debug 'd' | |
1797 WIN_TOP .75 | |
56 | 1798 WIN_LEFT .1 |
0 | 1799 WIN_FONT FT_SMALL |
1800 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 1801 call PLED_standard_color |
1802 | |
0 | 1803 lfsr FSR2,letter |
1804 | |
1805 movff month,convert_value_temp+0 | |
1806 movff day,convert_value_temp+1 | |
1807 movff year,convert_value_temp+2 | |
1808 call PLED_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1809 call word_processor | |
1810 return | |
1811 | |
1812 PLED_menu_clear: | |
123 | 1813 WIN_BOX_BLACK .0, .26, .65, .100 |
0 | 1814 return |
1815 | |
1816 PLED_max_pressure: | |
1817 ostc_debug 'p' ; Sends debug-information to screen if debugmode active | |
75 | 1818 movff max_pressure+0,lo |
1819 movff max_pressure+1,hi | |
1820 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
1821 | |
1822 movlw .039 | |
1823 cpfslt hi | |
1824 bra maxdepth_greater_99_84mtr | |
1825 | |
1826 ; Display normal "xx.y" | |
1827 lfsr FSR2,letter | |
1828 call PLED_standard_color | |
0 | 1829 WIN_TOP .184 |
1830 WIN_LEFT .0 | |
1831 WIN_FONT FT_MEDIUM | |
1832 WIN_INVERT .0 ; Init new Wordprocessor | |
1833 bsf leftbind | |
1834 bsf ignore_digit5 ; do not display 1cm depth | |
1835 output_16dp d'3' | |
1836 bcf leftbind | |
1837 bcf show_last3 | |
1838 call word_processor | |
1839 WIN_FONT FT_SMALL | |
1840 return | |
1841 | |
75 | 1842 maxdepth_greater_99_84mtr: ; Display only in full meters |
1843 btfss maxdepth_greater_100m ; Is max.depth>100m already? | |
1844 call PLED_clear_maxdepth ; No, clear maxdepth area and set flag | |
1845 ; max Depth is already in hi:lo | |
1846 ; Show max depth in Full meters | |
1847 ; That means ignore figure 4 and 5 | |
1848 lfsr FSR2,letter | |
1849 call PLED_standard_color | |
1850 WIN_TOP .184 | |
1851 WIN_LEFT .0 | |
1852 WIN_FONT FT_MEDIUM | |
1853 WIN_INVERT .0 ; Init new Wordprocessor | |
1854 | |
1855 bsf ignore_digit4 | |
1856 bsf leftbind | |
1857 output_16 | |
1858 bcf leftbind | |
1859 call word_processor | |
1860 bcf ignore_digit4 | |
1861 WIN_FONT FT_SMALL | |
1862 return | |
1863 | |
1864 PLED_clear_maxdepth: | |
123 | 1865 WIN_BOX_BLACK .184, .215, .0, .41 |
75 | 1866 bsf maxdepth_greater_100m ; Set Flag |
1867 return | |
1868 | |
0 | 1869 PLED_divemins: |
1870 btfsc menubit ; Divemode menu active? | |
1871 return ; Yes, do not update divetime | |
1872 | |
1873 ostc_debug 'A' ; Sends debug-information to screen if debugmode active | |
1874 | |
1875 btfsc gauge_mode ; different display in gauge mode | |
1876 bra PLED_divemins_gauge | |
1877 | |
1878 btfsc FLAG_apnoe_mode ; different display in apnoe mode | |
1879 bra PLED_divemins_apnoe | |
1880 | |
1881 GETCUSTOM8 d'38' ; Show seconds (=1?) | |
1882 movwf lo | |
1883 movlw d'1' | |
1884 cpfseq lo ; =1? | |
1885 bra PLED_divemins2 ; No, minutes only | |
1886 bra PLED_divemins_gauge ; Yes, use Gauge routine | |
1887 | |
1888 PLED_divemins2: | |
1889 movff divemins+0,lo | |
1890 movff divemins+1,hi | |
1891 bcf leftbind | |
1892 lfsr FSR2,letter | |
1893 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
1894 WIN_TOP .20 | |
1895 WIN_LEFT .120 | |
1896 WIN_FONT FT_MEDIUM | |
3 | 1897 call PLED_standard_color |
0 | 1898 call word_processor |
1899 WIN_FONT FT_SMALL | |
1900 return | |
1901 | |
1902 PLED_display_apnoe_surface: | |
1903 btfsc menubit ; Divemode menu active? | |
1904 return ; Yes, do not display surface mode timeout | |
1905 | |
9 | 1906 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 1907 DISPLAYTEXT d'140' ; "SURFACE" |
3 | 1908 call PLED_standard_color |
1909 | |
0 | 1910 |
1911 WIN_TOP .85 | |
1912 WIN_LEFT .90 | |
1913 WIN_FONT FT_MEDIUM | |
3 | 1914 call PLED_standard_color |
1915 | |
0 | 1916 |
1917 movff apnoe_surface_mins,lo | |
1918 bcf leftbind | |
1919 lfsr FSR2,letter | |
1920 output_8 | |
123 | 1921 PUTC ':' |
0 | 1922 movff apnoe_surface_secs,lo |
1923 output_99x | |
1924 call word_processor | |
1925 WIN_FONT FT_SMALL | |
1926 return | |
1927 | |
1928 PLED_apnoe_clear_surface: | |
1929 ; Clear Surface timer.... | |
123 | 1930 WIN_BOX_BLACK .60, .119, .90, .159 |
0 | 1931 return |
1932 | |
1933 | |
1934 PLED_display_apnoe_descent: | |
9 | 1935 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 1936 DISPLAYTEXT d'139' ; "Descent" |
3 | 1937 call PLED_standard_color |
1938 | |
0 | 1939 |
1940 WIN_TOP .145 | |
1941 WIN_LEFT .90 | |
1942 WIN_FONT FT_MEDIUM | |
3 | 1943 call PLED_standard_color |
1944 | |
0 | 1945 |
1946 movff apnoe_mins,lo | |
1947 lfsr FSR2,letter | |
1948 output_8 | |
123 | 1949 PUTC ':' |
0 | 1950 movff apnoe_secs,lo |
1951 output_99x | |
1952 call word_processor | |
1953 WIN_FONT FT_SMALL | |
1954 return | |
1955 | |
1956 PLED_divemins_apnoe: | |
1957 | |
1958 PLED_divemins_gauge: | |
1959 movff divemins+0,lo | |
1960 movff divemins+1,hi | |
1961 bcf leftbind | |
1962 bsf show_last3 | |
1963 lfsr FSR2,letter | |
1964 output_16_3 ;Displays only 0...999 | |
123 | 1965 PUTC ':' |
0 | 1966 movff divesecs,lo |
1967 output_99x | |
1968 WIN_TOP .20 | |
1969 WIN_LEFT .90 | |
1970 WIN_FONT FT_MEDIUM | |
3 | 1971 call PLED_standard_color |
1972 | |
0 | 1973 call word_processor |
1974 bcf show_last3 | |
1975 WIN_FONT FT_SMALL | |
1976 return | |
1977 | |
1978 PLED_stopwatch_show: | |
1979 ; Stopwatch | |
9 | 1980 call PLED_divemask_color ; Set Color for Divemode mask |
87 | 1981 DISPLAYTEXTH d'283' ; Stopwatch |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
1982 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
1983 PLED_stopwatch_show2: |
3 | 1984 call PLED_standard_color |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
1985 ostc_debug 'V' ; Sends debug-information to screen if debugmode active |
87 | 1986 WIN_TOP .192 |
0 | 1987 WIN_LEFT .110 |
1988 WIN_FONT FT_SMALL | |
3 | 1989 call PLED_standard_color |
1990 | |
0 | 1991 lfsr FSR2,letter |
1992 movff average_divesecs+0,lo ; Stopwatch | |
1993 movff average_divesecs+1,hi ; Stopwatch | |
1994 movlw d'2' | |
1995 subwf lo,F | |
1996 movlw d'0' | |
1997 subwfb hi,F ; Subtract 2 seconds | |
1998 | |
1999 call convert_time ; converts hi:lo in seconds to mins (hi) and secs (lo) | |
2000 | |
2001 movff lo,wait_temp | |
2002 movff hi,lo | |
2003 clrf hi | |
2004 | |
2005 movlw d'0' | |
2006 bcf leftbind | |
2007 bsf show_last3 | |
2008 output_16_3 ;Displays only 0...999 | |
123 | 2009 PUTC ':' |
0 | 2010 movff wait_temp,lo |
2011 output_99x | |
2012 call word_processor | |
2013 | |
2014 ostc_debug 'U' ; Sends debug-information to screen if debugmode active | |
2015 | |
87 | 2016 WIN_TOP .216 |
2017 WIN_LEFT .110 | |
0 | 2018 WIN_FONT FT_SMALL |
3 | 2019 call PLED_standard_color |
2020 | |
0 | 2021 lfsr FSR2,letter |
2022 movff avr_rel_pressure+0,lo | |
2023 movff avr_rel_pressure+1,hi | |
2024 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] | |
2025 bsf ignore_digit5 ; do not display 1cm depth | |
2026 output_16dp d'3' | |
2027 bcf leftbind | |
123 | 2028 STRCAT_PRINT "m" |
0 | 2029 return |
2030 | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2031 PLED_total_average_show: |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2032 ; Non-Resettable Average |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2033 call PLED_divemask_color ; Set Color for Divemode mask |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2034 DISPLAYTEXTH d'281' ; Avr.Depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2035 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2036 PLED_total_average_show2: |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2037 WIN_TOP .192 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2038 WIN_LEFT .110 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2039 WIN_FONT FT_SMALL |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2040 call PLED_standard_color |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2041 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2042 lfsr FSR2,letter |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2043 movff avr_rel_pressure_total+0,lo |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2044 movff avr_rel_pressure_total+1,hi |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2045 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar] |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2046 bsf ignore_digit5 ; do not display 1cm depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2047 bcf leftbind |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2048 output_16dp d'3' |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2049 STRCAT_PRINT "m" |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2050 return |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2051 |
0 | 2052 |
2053 PLED_serial: ; Writes OSTC #Serial and Firmware version in surfacemode | |
2054 ostc_debug 'a' ; Sends debug-information to screen if debugmode active | |
2055 WIN_TOP .0 | |
56 | 2056 WIN_LEFT .1 |
0 | 2057 WIN_FONT FT_SMALL |
2058 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2059 call PLED_standard_color |
2060 | |
0 | 2061 lfsr FSR2,letter |
107 | 2062 OUTPUTTEXTH d'262' ; "OSTC " |
2063 clrf EEADRH | |
2064 clrf EEADR ; Get Serial number LOW | |
2065 call read_eeprom ; read byte | |
2066 movff EEDATA,lo | |
2067 incf EEADR,F ; Get Serial number HIGH | |
2068 call read_eeprom ; read byte | |
2069 movff EEDATA,hi | |
2070 | |
2071 bsf leftbind | |
2072 output_16 | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2073 STRCAT " \x85\x86 V" ; Scribble logo... |
0 | 2074 movlw softwareversion_x |
2075 movwf lo | |
2076 bsf leftbind | |
2077 output_8 | |
123 | 2078 PUTC '.' |
0 | 2079 movlw softwareversion_y |
2080 movwf lo | |
2081 bsf leftbind | |
2082 output_99x | |
2083 bcf leftbind | |
123 | 2084 |
0 | 2085 call word_processor |
2086 return | |
2087 | |
2088 PLED_divemode_menu_mask_first: ; Write Divemode menu1 mask | |
2089 ostc_debug 'o' ; Sends debug-information to screen if debugmode active | |
2090 call PLED_menu_clear ; clear "Menu?" | |
123 | 2091 call PLED_standard_color |
0 | 2092 |
2093 btfsc FLAG_const_ppO2_mode ; are we in ppO2 mode? | |
2094 bra PLED_divemode_menu_mask_first2 | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2095 |
0 | 2096 ; in OC Mode |
2097 DISPLAYTEXT .32 ;"Gaslist" | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2098 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2099 bra PLED_divemode_menu_mask_first3 |
2100 | |
2101 PLED_divemode_menu_mask_first2: | |
2102 ; in CC Mode | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2103 DISPLAYTEXT .238 ;"SetPoint" |
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2104 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2105 |
2106 PLED_divemode_menu_mask_first3: | |
2107 ; In all modes | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2108 call customview_menu_entry3 ; Show customview-dependent menu entry |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2109 DISPLAYTEXT .241 ;"Display" |
0 | 2110 DISPLAYTEXT .34 ;"Exit" |
2111 return | |
2112 | |
2113 PLED_divemode_set_xgas: ; Displayes the "Set Gas" menu | |
2114 WIN_LEFT .100 | |
2115 WIN_TOP .0 | |
2116 WIN_FONT FT_SMALL | |
3 | 2117 call PLED_standard_color |
2118 | |
123 | 2119 STRCPY "Sel" |
0 | 2120 read_int_eeprom d'24' ; Get Gas6 %O2 |
2121 movff EEDATA,lo | |
2122 bcf leftbind | |
2123 output_99 ; outputs into Postinc2! | |
123 | 2124 PUTC '/' |
0 | 2125 read_int_eeprom d'25' ; Get Gas6 %He |
2126 movff EEDATA,lo | |
2127 output_99 ; outputs into Postinc2! | |
2128 call word_processor | |
2129 DISPLAYTEXT .123 ; O2 + | |
2130 DISPLAYTEXT .124 ; O2 - | |
2131 DISPLAYTEXT .125 ; He + | |
2132 DISPLAYTEXT .126 ; He - | |
2133 return | |
2134 | |
2135 PLED_divemode_simulator_mask: | |
124 | 2136 call PLED_standard_color |
2137 DISPLAYTEXT .254 ; Close | |
2138 DISPLAYTEXT .250 ; + 1m | |
2139 DISPLAYTEXT .251 ; - 1m | |
2140 DISPLAYTEXT .252 ; +10m | |
2141 DISPLAYTEXT .253 ; -10m | |
2142 return | |
0 | 2143 |
123 | 2144 ;----------------------------------------------------------------------------- |
124 | 2145 ; Draw a stop of the deco plan (simulator or dive). |
2146 ; Inputs: lo = depth. Range 3m...93m | |
2147 ; hi = minutes. range 1'..240'. | |
2148 ; win_top = line to draw on screen. | |
2149 ; Trashed: hi, lo, win_height, win_leftx2, win_width, win_color*, | |
2150 ; WREG, PROD, TBLPTR TABLAT. | |
2151 | |
2152 PLED_decoplan_show_stop: | |
2153 ;---- Print depth ---------------------------------------------------- | |
2154 WIN_LEFT .100 | |
2155 call PLED_standard_color | |
2156 lfsr FSR2,letter | |
2157 bsf leftbind | |
2158 output_8 ; outputs into Postinc2! | |
2159 STRCAT_PRINT "m " | |
2160 | |
2161 ;---- Print duration ------------------------------------------------- | |
2162 WIN_LEFT .140 | |
2163 lfsr FSR2,letter | |
2164 | |
2165 movf lo,W ; Swap hi & lo | |
2166 movff hi,lo | |
2167 movwf hi | |
2168 | |
2169 output_8 ; Allow up to 240' | |
2170 STRCAT_PRINT "' " ; 1 to 3 chars for depth. | |
2171 | |
2172 movf lo,W ; Swap back hi & lo | |
2173 movff hi,lo | |
2174 movwf hi | |
2175 | |
2176 ;--------------------------------------------------------------------- | |
2177 ; Draw the bar graph used for deco stops (decoplan in simulator or dive). | |
2178 movff win_top,WREG ; Increment win_top (BANK SAFE) | |
2179 incf WREG | |
2180 movff WREG,win_top | |
2181 movlw d'18'+1 ; 19 --> height (bank safe !) | |
2182 movff WREG,win_height | |
2183 movlw .122 | |
2184 movff WREG,win_leftx2 ; column left (0-159) | |
2185 | |
2186 ; Draw used area (lo = minutes): | |
2187 call PLED_standard_color | |
2188 movlw d'16' ; Limit length (16min) | |
2189 cpfslt hi | |
2190 movwf hi | |
2191 movff hi,win_width ; Bar width | |
2192 tstfsz hi ; Skip 0-size bar... | |
2193 call PLED_box | |
2194 | |
2195 ; Clear unused area: | |
2196 movlw .0 | |
2197 movff WREG,win_color1 | |
2198 movff WREG,win_color2 | |
2199 movlw .122 ; (width+left-1)+1 | |
2200 addwf hi,W | |
2201 movff WREG,win_leftx2 ; --> left | |
2202 movf hi,W | |
2203 sublw .16 ; 16-left --> width | |
2204 movff WREG,win_width | |
2205 tstfsz WREG ; Skip 0-size bar. | |
2206 call PLED_box | |
2207 | |
2208 ; Restore win_top | |
2209 movff win_top,WREG ; decf win_top (BANK SAFE) | |
2210 decf WREG | |
2211 movff WREG,win_top | |
2212 return | |
123 | 2213 |
2214 ;----------------------------------------------------------------------------- | |
124 | 2215 ; Clear unused area belw last stop |
2216 ; Inputs: win_top : last used area... | |
2217 PLED_decoplan_clear_bottom: | |
2218 movff win_top,WREG ; Get back from bank0 | |
2219 btfsc divemode ; In dive mode ? | |
2220 sublw .170 ; Yes: bottom row in divemode | |
2221 btfss divemode ; In dive mode ? | |
2222 sublw .240 ; No: bottom row in planning | |
2223 movff WREG,win_height | |
2224 | |
2225 WIN_LEFT .82 ; Full divemenu width | |
2226 movlw .160-.82+1 | |
2227 movff WREG,win_width | |
2228 | |
2229 clrf WREG ; Fill with black | |
2230 movff WREG,win_color1 | |
2231 movff WREG,win_color2 | |
2232 | |
2233 goto PLED_box | |
123 | 2234 |
2235 ;----------------------------------------------------------------------------- | |
124 | 2236 ; Display the decoplan (simulator or divemode) for GF model |
2237 ; Inputs: char_O_deco_table (array of stop times, in minutes) | |
2238 ; decoplan_page = page number. Displays 5 stop by page. | |
2239 ; | |
2240 decoplan_index equ apnoe_mins ; within each page | |
2241 decoplan_gindex equ apnoe_secs ; global index | |
2242 decoplan_last equ apnoe_max_pressure ; Depth of last stop (CF#29) | |
2243 decoplan_max equ apnoe_max_pressure+1; Number of lines per page. 7 in planning, 5 in diving. | |
2244 | |
2245 PLED_decoplan_gf: | |
2246 ostc_debug 'n' ; Sends debug-information to screen if debugmode active | |
2247 | |
2248 WIN_INVERT 0 | |
2249 | |
2250 ;---- Is there deco stops ? ------------------------------------------ | |
2251 lfsr FSR1,char_O_deco_table | |
2252 movlw .1 | |
2253 movf PLUSW1,W ; char_O_deco_table[1] --> WREG | |
2254 bnz PLED_decoplan_gf_1 | |
2255 | |
2256 ;---- No Deco -------------------------------------------------------- | |
2257 call PLED_standard_color | |
2258 DISPLAYTEXT d'239' ;"No Deco" | |
2259 bsf last_ceiling_gf_shown | |
2260 return | |
2261 | |
2262 PLED_decoplan_gf_1: | |
2263 GETCUSTOM8 d'29' ; Last decostop depth, in m | |
2264 movwf decoplan_last ; --> decoplan_last | |
2265 | |
2266 movlw .8 ; 8 lines/page in decoplan | |
2267 btfsc divemode | |
2268 movlw .6 ; 6 lines/page in divemode. | |
2269 movwf decoplan_max | |
2270 | |
2271 movlw .1 | |
2272 movwf decoplan_index ; Start with index = 1 | |
2273 clrf WREG | |
2274 movff WREG,win_top ; and row = 0 | |
2275 | |
2276 ; Read stop parameters, indexed by decoplan_index and decoplan_page | |
2277 movf decoplan_page,W ; decoplan_gindex = 6*decoplan_page + decoplan_index | |
2278 mulwf decoplan_max | |
2279 movf decoplan_index,W | |
2280 addwf PRODL,W | |
2281 movwf decoplan_gindex ; --> decoplan_gindex | |
2282 | |
2283 bcf last_ceiling_gf_shown ; Not finished yet... | |
2284 | |
2285 PLED_decoplan_gf_2: | |
2286 btfsc decoplan_gindex,5 ; Reached table length (32) ? | |
2287 bra PLED_decoplan_gf_99 ; YES: finished... | |
2288 | |
2289 ; Compute new depth | |
2290 movf decoplan_gindex,W ; depth = 3 * (global index) | |
2291 mullw .3 ; --> PROD | |
2292 movf decoplan_last,W ; depth < decoplan_last (CF#29) ? | |
2293 cpfslt PRODL | |
2294 movf PRODL,W ; NO: take depth, else keep decoplan_last. | |
2295 movwf lo ; --> lo | |
2296 | |
2297 ; Read deepest depth from other bank. | |
2298 movff char_O_array_decodepth,WREG | |
2299 xorwf lo,W ; This is last stop ? | |
2300 btfsc STATUS,Z | |
2301 bsf last_ceiling_gf_shown ; YES: mark for latter... | |
2302 | |
2303 ; Read stop duration | |
2304 movf decoplan_gindex,W ; index | |
2305 movff PLUSW1,hi ; char_O_deco_table[index] --> hi | |
2306 movf hi,W ; time = zero ? | |
2307 bz PLED_decoplan_gf_4 ; Do not display it: continue. | |
2308 | |
2309 ; Display the stop line | |
2310 call PLED_decoplan_show_stop | |
2311 | |
2312 ; Next | |
2313 movff win_top,WREG ; row: += 24 | |
2314 addlw .24 | |
2315 movff WREG,win_top | |
2316 incf decoplan_index,F ; local index += 1 | |
2317 PLED_decoplan_gf_4: | |
2318 incf decoplan_gindex,F ; global index += 1 | |
2319 | |
2320 btfsc last_ceiling_gf_shown ; Last one done ? | |
2321 bra PLED_decoplan_gf_99 ; YES: finished... | |
2322 | |
2323 ; Max number of lines/page reached ? | |
2324 incf decoplan_max,W ; index+1 == max+1 ? | |
2325 cpfseq decoplan_index | |
2326 bra PLED_decoplan_gf_2 ; NO: loop | |
2327 | |
2328 ; Check if next stop if end-of-list ? | |
2329 movlw .3 ; Next stop is lo + 3m | |
2330 addwf lo,W | |
2331 xorwf decoplan_last,W ; == last stop ? | |
2332 bz PLED_decoplan_gf_99 ; End of list... | |
2333 | |
2334 ; Display the message "more..." | |
2335 rcall PLED_decoplan_clear_bottom ; Clear from next line | |
2336 | |
2337 WIN_LEFT .130 - 7*3 | |
2338 call PLED_standard_color | |
2339 STRCPY_PRINT "more..." | |
2340 bcf last_ceiling_gf_shown ; More page to display... | |
2341 return | |
2342 | |
2343 PLED_decoplan_gf_99: | |
2344 bsf last_ceiling_gf_shown ; Nothing more in table to display. | |
2345 rcall PLED_decoplan_clear_bottom ; Clear from next line | |
2346 return | |
2347 | |
2348 ;----------------------------------------------------------------------------- | |
2349 ; Display the decoplan (simulator or divemode) for ZHL-16c model | |
2350 PLED_decoplan: | |
2351 ostc_debug 'n' ; Sends debug-information to screen if debugmode active | |
2352 | |
2353 WIN_INVERT 0 | |
2354 | |
2355 ;---- Is there deco information -------------------------------------- | |
2356 lfsr FSR0,char_O_array_decodepth | |
2357 lfsr FSR1,char_O_array_decotime | |
2358 | |
2359 movf INDF0,W | |
2360 bnz PLED_decoplan1 | |
2361 | |
2362 ;---- No Deco -------------------------------------------------------- | |
2363 call PLED_standard_color | |
2364 DISPLAYTEXT d'239' ;"No Deco" | |
2365 bsf last_ceiling_gf_shown | |
2366 return | |
0 | 2367 |
2368 PLED_decoplan1: | |
124 | 2369 GETCUSTOM8 d'29' ; Last decostop depth, in m |
2370 movwf decoplan_last ; --> decoplan_last | |
2371 | |
2372 movlw .6 ; Max 6 lines in all modes. | |
2373 movwf decoplan_max | |
2374 | |
2375 clrf decoplan_index ; Starts with index = 0 | |
2376 clrf WREG | |
2377 movff WREG,win_top ; and row = 0 | |
2378 | |
30 | 2379 PLED_decoplan2: |
124 | 2380 ; Read stop parameters, indexed by decoplan_index |
2381 movf decoplan_index,W | |
2382 movff PLUSW0,lo ; array_decodepth[index] | |
2383 movff PLUSW1,hi ; array_decotime[index] | |
2384 | |
2385 ; 0 time == end-of-table. | |
2386 movf hi,w | |
2387 bz PLED_decoplan_0 | |
2388 | |
2389 call PLED_decoplan_show_stop | |
2390 | |
2391 movff win_top,WREG ; row += 24 | |
2392 addlw .24 | |
2393 movff WREG,win_top | |
2394 incf decoplan_index,F ; index += 1 | |
2395 | |
2396 ; 6 Stops max... | |
2397 movf decoplan_max,W | |
2398 cpfseq decoplan_index | |
2399 bra PLED_decoplan2 | |
2400 | |
2401 ;---- Additional time in the decoplan ? ------------------------------ | |
2402 movf decoplan_max,W ; Read array_decotime[6] | |
2403 movf PLUSW1,W ; set Z flag | |
2404 movwf lo ; and copy to lo | |
2405 btfsc STATUS,Z ; Zero: nothing to add. | |
2406 return | |
2407 | |
2408 WIN_LEFT .100 | |
2409 call PLED_standard_color | |
2410 | |
2411 STRCPY "add:" | |
2412 output_8 | |
2413 STRCAT_PRINT "'" | |
2414 return | |
2415 | |
2416 PLED_decoplan_0: | |
2417 ;---- Plan not finished to compute ? --------------------------------- | |
2418 decf decoplan_index,W | |
2419 movf PLUSW0,W ; array_decodepth[index-1] | |
2420 subwf decoplan_last,W ; == last stop depth ? | |
2421 bz PLED_decoplan_99 | |
2422 | |
2423 WIN_LEFT .100 | |
2424 call PLED_standard_color | |
2425 STRCPY_PRINT "..." | |
2426 | |
2427 PLED_decoplan_99: | |
2428 return | |
2429 | |
2430 ;----------------------------------------------------------------------------- | |
0 | 2431 PLED_gas_list: |
2432 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
2433 | |
2434 WIN_LEFT .100 | |
2435 WIN_FONT FT_SMALL | |
2436 bsf leftbind | |
2437 | |
2438 movlw d'2' | |
2439 movwf wait_temp ; here: stores eeprom address for gas list | |
2440 movlw d'231' | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2441 movwf waitms_temp ; here: stores row for gas list |
0 | 2442 clrf hi ; here: Gas counter |
2443 | |
2444 PLED_gas_list_loop: | |
2445 incf hi,F ; Increase Gas | |
2446 movlw d'4' | |
2447 addwf wait_temp,F ; Increase eeprom address for gas list | |
2448 movlw d'25' | |
2449 addwf waitms_temp,F ; Increase row | |
2450 WIN_LEFT .100 | |
2451 movff waitms_temp,win_top ; Set Row | |
2452 | |
123 | 2453 STRCPY "G" |
0 | 2454 movff hi,lo ; copy gas number |
2455 output_8 ; display gas number | |
123 | 2456 PUTC ':' |
0 | 2457 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
2458 call read_eeprom ; get byte (stored in EEDATA) | |
2459 movff EEDATA,lo ; copy to lo | |
2460 output_8 ; outputs into Postinc2! | |
123 | 2461 PUTC '/' |
0 | 2462 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
2463 call read_eeprom ; get byte (stored in EEDATA) | |
2464 movff EEDATA,lo ; copy to lo | |
2465 output_8 ; outputs into Postinc2! | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2466 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2467 decf EEADR,F ; Gas #hi: %O2 - Set address in internal EEPROM |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2468 call read_eeprom ; get byte (stored in EEDATA) |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2469 PLED_color_code warn_gas_in_gaslist ; Color-code output (%O2 in "EEDATA") |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
2470 ; Check if gas needs to be greyed-out (inactive) |
0 | 2471 read_int_eeprom d'27' ; read flag register |
2472 movff hi,lo ; copy gas number | |
2473 PLED_gas_list_loop1: | |
2474 rrcf EEDATA ; roll flags into carry | |
2475 decfsz lo,F ; max. 5 times... | |
2476 bra PLED_gas_list_loop1 | |
19 | 2477 |
2478 movlw color_grey | |
0 | 2479 btfss STATUS,C ; test carry |
19 | 2480 call PLED_set_color ; grey out inactive gases! |
0 | 2481 |
2482 call word_processor | |
19 | 2483 call PLED_standard_color |
0 | 2484 |
2485 movlw d'5' ; list all five gases | |
2486 cpfseq hi ; All gases shown? | |
2487 bra PLED_gas_list_loop ; No | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2488 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2489 DISPLAYTEXT d'122' ; Gas 6.. |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2490 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2491 return ; return (OC mode) |
0 | 2492 |
2493 PLED_splist_start: | |
2494 WIN_LEFT .100 | |
2495 WIN_FONT FT_SMALL | |
2496 bsf leftbind | |
127 | 2497 call PLED_standard_color |
0 | 2498 |
2499 ; list three SP in Gaslist | |
2500 movlw d'35' ; 36 = current SP position in EEPROM | |
2501 movwf wait_temp ; here: stores eeprom address for gas list | |
2502 movlw d'231' | |
2503 movwf waitms_temp ; here: stores row for gas list | |
124 | 2504 clrf decoplan_index ; here: SP counter |
0 | 2505 |
2506 PLED_splist_loop: | |
2507 incf wait_temp,F ; EEPROM address | |
124 | 2508 incf decoplan_index,F ; Increase SP |
0 | 2509 |
2510 movlw d'25' | |
2511 addwf waitms_temp,F ; Increase row | |
2512 movff waitms_temp,win_top ; Set Row | |
2513 WIN_LEFT .100 | |
2514 | |
123 | 2515 STRCPY "SP" |
124 | 2516 movff decoplan_index,lo ; copy gas number |
0 | 2517 output_8 ; display gas number |
123 | 2518 PUTC ':' |
0 | 2519 movff wait_temp, EEADR; SP #hi position |
2520 call read_eeprom ; get byte (stored in EEDATA) | |
2521 movff EEDATA,lo ; copy to lo | |
2522 clrf hi | |
2523 output_16dp d'3' ; outputs into Postinc2! | |
2524 call word_processor | |
2525 | |
2526 movlw d'3' ; list all three SP | |
124 | 2527 cpfseq decoplan_index ; All gases shown? |
0 | 2528 bra PLED_splist_loop ; No |
2529 | |
2530 bcf leftbind | |
2531 return ; no, return | |
2532 | |
2533 PLED_clear_divemode_menu: | |
123 | 2534 WIN_BOX_BLACK .0, .169, .82, .160 |
0 | 2535 return |
2536 | |
2537 PLED_divemenu_cursor: | |
2538 ostc_debug 'l' ; Sends debug-information to screen if debugmode active | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2539 |
123 | 2540 WIN_BOX_BLACK .0, .150, .85, .95 |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2541 |
0 | 2542 WIN_TOP .0 |
2543 WIN_LEFT .85 | |
2544 WIN_FONT FT_SMALL | |
2545 WIN_INVERT .0 ; Init new Wordprocessor | |
3 | 2546 call PLED_standard_color |
84 | 2547 |
0 | 2548 movff menupos,temp1 |
2549 movlw d'0' | |
2550 dcfsnz temp1,F | |
2551 movlw d'0' | |
2552 dcfsnz temp1,F | |
2553 movlw d'25' | |
2554 dcfsnz temp1,F | |
2555 movlw d'50' | |
2556 dcfsnz temp1,F | |
2557 movlw d'75' | |
2558 dcfsnz temp1,F | |
2559 movlw d'100' | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2560 dcfsnz temp1,F |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2561 movlw d'125' |
0 | 2562 movff WREG,win_top |
3 | 2563 |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2564 STRCPY_PRINT "\xB7" ; Cursor |
0 | 2565 return |
2566 | |
111 | 2567 ;PLED_saturation_graph_divemode: |
2568 ; ostc_debug 'h' ; Sends debug-information to screen if debugmode active | |
0 | 2569 PLED_tissue_saturation_graph: |
2570 ostc_debug 'i' ; Sends debug-information to screen if debugmode active | |
13 | 2571 |
111 | 2572 ;; Clear graph area... |
123 | 2573 ; WIN_BOX_BLACK .25, .120, .82, .159 |
13 | 2574 |
19 | 2575 ; Draw Frame |
123 | 2576 WIN_FRAME_STD .25, .120, .82, .159 |
0 | 2577 |
19 | 2578 ; Draw N2 Tissues |
0 | 2579 lfsr FSR2, char_O_tissue_saturation+.000 ; N2 |
2580 movlw d'16' | |
2581 movwf wait_temp ; 16 tissues | |
2582 clrf waitms_temp ; Row offset | |
123 | 2583 |
2584 movlw .1 | |
2585 movff WREG,win_height ; row bottom (0-239) | |
2586 movlw .100 | |
2587 movff WREG,win_leftx2 ; column left (0-159) | |
2588 | |
0 | 2589 PLED_tissue_saturation_graph3: |
123 | 2590 |
0 | 2591 movlw .28 |
2592 addwf waitms_temp,W | |
123 | 2593 movff WREG,win_top ; row top (0-239) |
0 | 2594 |
2595 incf waitms_temp,F | |
2596 incf waitms_temp,F | |
2597 | |
123 | 2598 movf POSTINC2,W |
2599 bcf STATUS,C ; Clear carry | |
2600 rrcf WREG ; And divide by 4 | |
0 | 2601 bcf STATUS,C |
123 | 2602 rrcf WREG |
2603 movff WREG,win_width | |
2604 movlw d'57' ; limit display | |
2605 cpfslt win_width ; skip if 157 (WREG) < box_temp+4 | |
2606 movwf win_width | |
0 | 2607 |
2608 call PLED_box | |
2609 | |
2610 decfsz wait_temp,F | |
2611 bra PLED_tissue_saturation_graph3 | |
2612 | |
19 | 2613 ; Draw He Tissues |
0 | 2614 lfsr FSR2, char_O_tissue_saturation+.016 ; He |
2615 movlw d'16' | |
2616 movwf wait_temp ; 16 tissues | |
2617 clrf waitms_temp ; Row offset | |
123 | 2618 |
2619 ; movlw .1 | |
2620 ; movff WREG,win_height ; row bottom (0-239) | |
2621 ; movlw .100 | |
2622 ; movff WREG,win_leftx2 ; column left (0-159) | |
2623 ; call PLED_standard_color | |
2624 | |
0 | 2625 PLED_tissue_saturation_graph2: |
123 | 2626 |
0 | 2627 movlw .86 |
2628 addwf waitms_temp,W | |
123 | 2629 movff WREG,win_top ; row top (0-239) |
0 | 2630 |
2631 incf waitms_temp,F | |
2632 incf waitms_temp,F | |
2633 | |
123 | 2634 movf POSTINC2,W |
2635 bcf STATUS,C ; Clear carry | |
2636 rrcf WREG ; And divide by 4 | |
0 | 2637 bcf STATUS,C |
123 | 2638 rrcf WREG |
2639 movff WREG,win_width | |
2640 movlw d'57' ; limit display | |
2641 cpfslt win_width ; skip if 157 (WREG) < box_temp+4 | |
2642 movwf win_width | |
0 | 2643 |
2644 call PLED_box | |
2645 | |
2646 decfsz wait_temp,F | |
2647 bra PLED_tissue_saturation_graph2 | |
2648 | |
19 | 2649 ; Draw Text |
0 | 2650 WIN_LEFT .84 |
2651 WIN_TOP .32 | |
123 | 2652 STRCPY_PRINT "N2" |
2653 | |
0 | 2654 WIN_TOP .90 |
123 | 2655 STRCPY_PRINT "He" |
19 | 2656 |
2657 movff char_O_gtissue_no,wait_temp ; used as temp | |
2658 | |
2659 lfsr FSR1,char_O_tissue_saturation+0 | |
2660 incf wait_temp,F ; make 1-16 of 0-15 | |
123 | 2661 |
19 | 2662 PLED_tissue_saturation_graph4: ; point to leading tissue... |
2663 movff POSTINC1,lo ; copy/overwrite to lo register | |
2664 decfsz wait_temp,F ; count until zero | |
2665 bra PLED_tissue_saturation_graph4 ;loop | |
123 | 2666 |
2667 lfsr FSR2,letter | |
19 | 2668 output_8 |
123 | 2669 STRCAT "% " |
2670 | |
19 | 2671 WIN_TOP .62 |
2672 WIN_FONT FT_SMALL | |
2673 call word_processor | |
2674 bcf leftbind | |
2675 | |
2676 ; Draw Scale | |
123 | 2677 WIN_BOX_STD .73, .74, .121, .157 |
2678 WIN_BOX_STD .61, .84, .121, .122 | |
2679 WIN_BOX_STD .65, .80, .130, .131 | |
2680 WIN_BOX_STD .65, .80, .139, .140 | |
2681 WIN_BOX_STD .65, .80, .148, .149 | |
2682 WIN_BOX_STD .61, .84, .157, .158 | |
0 | 2683 return |
2684 | |
2685 PLED_startupscreen1: | |
2686 call PLED_topline_box | |
2687 WIN_INVERT .1 ; Init new Wordprocessor | |
2688 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
2689 WIN_INVERT .0 ; Init new Wordprocessor | |
2690 DISPLAYTEXT .68 ; Licence 1/2 | |
2691 DISPLAYTEXT .69 | |
2692 DISPLAYTEXT .70 | |
2693 DISPLAYTEXT .71 | |
2694 DISPLAYTEXT .72 | |
2695 DISPLAYTEXT .73 | |
2696 DISPLAYTEXT .74 | |
2697 return | |
2698 | |
2699 PLED_startupscreen2: | |
2700 call PLED_topline_box | |
2701 WIN_INVERT .1 ; Init new Wordprocessor | |
2702 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
2703 WIN_INVERT .0 ; Init new Wordprocessor | |
2704 DISPLAYTEXT .75 ; Licence 2/2 | |
2705 DISPLAYTEXT .76 | |
2706 DISPLAYTEXT .77 | |
2707 DISPLAYTEXT .78 | |
2708 DISPLAYTEXT .79 | |
2709 DISPLAYTEXT .80 | |
2710 DISPLAYTEXT .81 | |
2711 return | |
2712 | |
2713 PLED_new_cf_warning: | |
2714 call PLED_topline_box | |
2715 WIN_INVERT .1 ; Init new Wordprocessor | |
2716 DISPLAYTEXTH .271 ; New CF added! | |
2717 WIN_INVERT .0 ; Init new Wordprocessor | |
2718 DISPLAYTEXTH .272 ; New CustomFunctions | |
2719 DISPLAYTEXTH .273 ; were added! Check | |
2720 DISPLAYTEXTH .274 ; CF I and CF II Menu | |
2721 DISPLAYTEXTH .275 ; for Details! | |
2722 return | |
2723 | |
2724 PLED_const_ppO2_value: | |
2725 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
2726 return ; Yes, No update and return! | |
2727 | |
2728 ostc_debug 'j' ; Sends debug-information to screen if debugmode active | |
2729 | |
2730 WIN_TOP .168 | |
75 | 2731 WIN_LEFT .50 |
0 | 2732 WIN_FONT FT_SMALL |
2733 WIN_INVERT .0 ; Init new Wordprocessor | |
4 | 2734 |
0 | 2735 lfsr FSR2,letter |
2736 movff char_I_const_ppO2,lo | |
2737 | |
2738 tstfsz lo ; In Bailout mode (char_I_const_ppO2=0)? | |
2739 bra PLED_const_ppO2_value2 ; No, display Setpoint | |
2740 | |
2741 ; Yes, Display "Bail" | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2742 call PLED_standard_color |
0 | 2743 OUTPUTTEXTH d'263' ;"Bail" |
2744 call word_processor | |
2745 return | |
2746 | |
2747 PLED_const_ppO2_value2: ; Display SetPoint | |
2748 ;Show fixed SP value | |
4 | 2749 movff amb_pressure+0,xA+0 |
2750 movff amb_pressure+1,xA+1 | |
2751 movlw d'10' | |
2752 movwf xB+0 | |
2753 clrf xB+1 | |
2754 ;xA/xB=xC with xA as remainder | |
2755 call div16x16 ; xC+0=p_amb/10 | |
26 | 2756 |
4 | 2757 ; char_I_const_ppO2 > p_amb/10 -> Not physically possible! -> Display actual value! |
2758 tstfsz xC+1 ; xC>255 | |
2759 setf xC+0 ; Yes, set xC+0 to 2,55bar ppO2 | |
26 | 2760 |
4 | 2761 movff ppO2_setpoint_store,WREG |
2762 cpfslt xC+0 ; Setpoint value possible? | |
26 | 2763 bra PLED_const_ppO2_value1 ; Yes |
4 | 2764 |
2765 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
2766 bra PLED_const_ppO2_value1a | |
2767 | |
2768 PLED_const_ppO2_value1: | |
26 | 2769 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! |
2770 movff amb_pressure+0,xA+0 | |
2771 movff amb_pressure+1,xA+1 | |
2772 movlw d'10' | |
2773 movwf xB+0 | |
2774 clrf xB+1 | |
2775 call div16x16 ; xC=p_amb/10 | |
2776 movff xC+0,xA+0 | |
2777 movff xC+1,xA+1 | |
2778 movff char_I_O2_ratio,xB+0 | |
2779 clrf xB+1 | |
2780 call mult16x16 ; xC:2=char_I_O2_ratio * p_amb/10 | |
2781 | |
2782 movff xC+0,sub_b+0 | |
2783 movff xC+1,sub_b+1 | |
2784 movff ppO2_setpoint_store,WREG; Setpoint | |
2785 mullw d'100' ; Setpoint*100 | |
2786 movff PRODL,sub_a+0 | |
2787 movff PRODH,sub_a+1 | |
2788 call sub16 ; sub_c = sub_a - sub_b | |
2789 | |
2790 btfss neg_flag | |
2791 bra PLED_const_ppO2_value11 ; Value in range | |
2792 | |
2793 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! | |
2794 | |
2795 movff xC+0,xA+0 | |
2796 movff xC+1,xA+1 | |
2797 movlw d'100' | |
2798 movwf xB+0 | |
2799 clrf xB+1 | |
2800 call div16x16 ;xA/xB=xC with xA as remainder | |
2801 | |
2802 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value | |
2803 bra PLED_const_ppO2_value1a | |
2804 | |
2805 PLED_const_ppO2_value11: | |
2806 | |
2807 ; Setpoint in possible limits | |
4 | 2808 movff ppO2_setpoint_store,char_I_const_ppO2 ; Restore Setpoint |
2809 | |
2810 PLED_const_ppO2_value1a: | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2811 PLED_color_code warn_ppo2 ; Color-code output |
4 | 2812 movff char_I_const_ppO2,lo |
0 | 2813 clrf hi |
2814 bsf leftbind | |
2815 output_16dp d'3' | |
2816 bcf leftbind | |
2817 call word_processor | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2818 call PLED_standard_color |
0 | 2819 return |
2820 | |
2821 PLED_show_leading_tissue: | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2822 call PLED_divemask_color ; Set Color for Divemode mask |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2823 DISPLAYTEXTH .282 ; L. Tissue: |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2824 PLED_show_leading_tissue_2: |
116 | 2825 call deco_calc_desaturation_time ; calculate desaturation time |
0 | 2826 movlb b'00000001' ; select ram bank 1 |
2827 | |
123 | 2828 STRCPY "#" |
0 | 2829 movff char_O_gtissue_no,lo |
2830 movff char_O_gtissue_no,wait_temp ; used as temp | |
2831 bsf leftbind | |
2832 output_8 | |
123 | 2833 STRCAT " (" |
0 | 2834 |
2835 movlw d'16' | |
2836 cpfslt wait_temp | |
2837 bra PLED_show_leading_tissue_he | |
123 | 2838 STRCAT "N2" |
0 | 2839 bra PLED_show_leading_tissue2 |
123 | 2840 |
0 | 2841 PLED_show_leading_tissue_he: |
123 | 2842 STRCAT "He" |
2843 | |
0 | 2844 PLED_show_leading_tissue2: |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2845 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2846 WIN_TOP .192 |
0 | 2847 WIN_FONT FT_SMALL |
3 | 2848 call PLED_standard_color |
123 | 2849 |
2850 STRCAT_PRINT ") " | |
2851 | |
0 | 2852 lfsr FSR1,char_O_tissue_saturation+0 |
2853 incf wait_temp,F ; make 1-16 of 0-15 | |
2854 PLED_show_leading_tissue3: ; point to leading tissue... | |
2855 movff POSTINC1,lo ; copy/overwrite to lo register | |
2856 decfsz wait_temp,F ; count until zero | |
2857 bra PLED_show_leading_tissue3 ;loop | |
123 | 2858 |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2859 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2860 WIN_TOP .216 |
0 | 2861 WIN_FONT FT_SMALL |
123 | 2862 |
2863 lfsr FSR2,letter | |
2864 output_8 | |
2865 STRCAT_PRINT "% " | |
0 | 2866 bcf leftbind |
2867 return | |
2868 | |
2869 PLED_topline_box_clear: ; Writes an empty box | |
2870 movlw .0 | |
2871 bra PLED_topline_box2 | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2872 PLED_topline_box: ; Writes a filled box... |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2873 GETCUSTOM8 d'35' ; ... with the standard color |
0 | 2874 PLED_topline_box2: |
123 | 2875 WIN_BOX_COLOR .0, .26, .0, .159 |
0 | 2876 return |
2877 | |
2878 PLED_display_cns: | |
2879 btfsc multi_gf_display ; Is the Multi-GF Table displayed? | |
2880 return ; Yes, No update and return! | |
2881 | |
2882 btfsc gauge_mode ; Do not display in gauge mode | |
2883 return | |
2884 | |
2885 btfsc FLAG_apnoe_mode ; Do not display in apnoe mode | |
2886 return | |
2887 | |
2888 btfsc pled_velocity_display ; Is velocity displayed?` | |
2889 return ; Yes, do not overwrite until pled_velocity_clear was called | |
2890 | |
2891 ostc_debug 'k' ; Sends debug-information to screen if debugmode active | |
2892 | |
2893 WIN_TOP .090 | |
2894 WIN_LEFT .0 | |
2895 WIN_FONT FT_SMALL | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
2896 PLED_color_code warn_cns ; Color-code CNS output |
0 | 2897 |
123 | 2898 STRCPY "CNS:" |
0 | 2899 movff char_O_CNS_fraction,lo |
2900 bsf leftbind | |
2901 output_8 | |
2902 bcf leftbind | |
123 | 2903 STRCAT_PRINT "%" |
0 | 2904 return |
2905 | |
43 | 2906 PLED_display_cns_surface: |
2907 ; Check if CNS should be displayed | |
2908 movff char_O_CNS_fraction,lo ; copy into bank1 | |
2909 GETCUSTOM8 d'15' ; cns_display_high_surfacemode | |
2910 subwf lo,W | |
2911 btfss STATUS,C | |
2912 return ; Do not show... | |
2913 ; Show CNS | |
2914 | |
2915 ostc_debug 'W' ; Sends debug-information to screen if debugmode active | |
2916 | |
2917 WIN_TOP .175 | |
2918 WIN_LEFT .45 | |
2919 WIN_FONT FT_SMALL | |
2920 WIN_INVERT .0 ; Init new Wordprocessor | |
2921 PLED_color_code warn_cns ; Color-code CNS output | |
2922 | |
123 | 2923 STRCPY "CNS:" |
43 | 2924 movff char_O_CNS_fraction,lo |
2925 bsf leftbind | |
2926 output_8 | |
2927 bcf leftbind | |
123 | 2928 STRCAT_PRINT "%" |
43 | 2929 return |
2930 | |
2931 | |
0 | 2932 PLED_custom_text: |
2933 read_int_eeprom d'64' | |
2934 movlw d'1' | |
2935 cpfseq EEDATA ; Custom text active? | |
2936 bra PLED_clear_custom_text ; No, Delete row | |
2937 WIN_TOP .200 | |
62 | 2938 WIN_LEFT .0 |
0 | 2939 WIN_FONT FT_SMALL |
2940 WIN_INVERT .0 ; Init new Wordprocessor | |
9 | 2941 call PLED_divemask_color ; Set Color for Divemode mask |
0 | 2942 |
2943 lfsr FSR2,letter | |
2944 movlw d'64' | |
2945 movwf lo | |
2946 movlw d'24' | |
2947 movwf hi ; counter | |
2948 | |
2949 PLED_custom_text1: | |
2950 incf lo,F | |
2951 call PLED_get_custom_letter ; Get one letter for the custom text | |
2952 movlw '}' ; End marker found? | |
2953 cpfseq EEDATA | |
2954 bra PLED_custom_text2 ; No | |
2955 bra PLED_custom_text3 | |
2956 PLED_custom_text2: | |
2957 movff EEDATA,POSTINC2 ; Copy into Postinc | |
2958 | |
2959 decfsz hi,F ; Max. numbers? | |
2960 bra PLED_custom_text1 ; No, get next letters | |
2961 | |
2962 PLED_custom_text3: | |
2963 call word_processor | |
3 | 2964 call PLED_standard_color |
0 | 2965 return |
2966 | |
2967 PLED_get_custom_letter: | |
2968 movff lo,EEADR ; Address for next custom text letter | |
2969 call read_eeprom ; Read letter | |
2970 return | |
2971 | |
2972 PLED_clear_custom_text: | |
2973 movlw d'24' | |
2974 movwf temp1 | |
2975 WIN_TOP .200 | |
2976 WIN_LEFT .0 | |
2977 call PLED_display_clear_common_y1 | |
2978 return | |
2979 | |
33 | 2980 PLED_simdata_screen: ;Display Pre-Dive Screen |
2981 ; List active gases/Setpoints | |
2982 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
2983 bra PLED_simdata_screen3 ; Yes, display SetPoint/Sensor result list | |
2984 | |
2985 PLED_simdata_screen2: | |
2986 ostc_debug 'm' ; Sends debug-information to screen if debugmode active | |
2987 | |
2988 WIN_LEFT .0 | |
2989 WIN_FONT FT_SMALL | |
2990 bsf leftbind | |
2991 | |
2992 movlw d'2' | |
2993 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 2994 movlw d'10' |
33 | 2995 movwf waitms_temp ; here: stores row for gas list |
2996 clrf hi ; here: Gas counter | |
2997 | |
2998 PLED_simdata_screen2_loop: | |
2999 incf hi,F ; Increase Gas | |
3000 movlw d'4' | |
3001 addwf wait_temp,F ; Increase eeprom address for gas list | |
3002 | |
123 | 3003 STRCPY "G" |
33 | 3004 movff hi,lo ; copy gas number |
3005 output_8 ; display gas number | |
123 | 3006 PUTC ':' |
33 | 3007 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
3008 call read_eeprom ; get byte (stored in EEDATA) | |
3009 movff EEDATA,lo ; copy to lo | |
3010 output_8 ; outputs into Postinc2! | |
123 | 3011 PUTC '/' |
33 | 3012 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
3013 call read_eeprom ; get byte (stored in EEDATA) | |
3014 movff EEDATA,lo ; copy to lo | |
3015 output_8 ; outputs into Postinc2! | |
123 | 3016 PUTC ' ' |
34 | 3017 movf hi,W ; Gas number |
3018 addlw d'27' ; -> Adress of change depth register | |
3019 call read_int_eeprom_1 | |
3020 movff EEDATA,lo ; Change depth in m | |
3021 output_99 ; outputs into Postinc2! | |
123 | 3022 PUTC 'm' |
33 | 3023 read_int_eeprom d'27' ; read flag register |
3024 movff hi,lo ; copy gas number | |
3025 PLED_simdata_screen2_loop1: | |
3026 rrcf EEDATA ; roll flags into carry | |
3027 decfsz lo,F ; max. 5 times... | |
3028 bra PLED_simdata_screen2_loop1 | |
3029 | |
3030 btfsc STATUS,C ; test carry | |
3031 bra PLED_simdata_white | |
3032 | |
3033 movlw color_grey | |
3034 call PLED_set_color ; grey out inactive gases! | |
3035 bra PLED_simdata_color_done | |
3036 | |
3037 PLED_simdata_white: | |
3038 call PLED_standard_color | |
3039 | |
3040 PLED_simdata_color_done: | |
3041 movlw d'25' | |
3042 addwf waitms_temp,F ; Increase row | |
3043 WIN_LEFT .0 | |
3044 movff waitms_temp,win_top ; Set Row | |
34 | 3045 call word_processor ; display gas |
33 | 3046 |
3047 PLED_simdata_screen2b: | |
3048 call PLED_standard_color | |
3049 | |
34 | 3050 movlw d'5' ; list all five gases |
33 | 3051 cpfseq hi ; All gases shown? |
3052 bra PLED_simdata_screen2_loop ; No | |
3053 | |
3054 return ; No, return (OC mode) | |
3055 | |
3056 PLED_simdata_screen3: | |
3057 WIN_LEFT .0 | |
3058 WIN_FONT FT_SMALL | |
3059 bsf leftbind | |
3060 | |
3061 ; list three SP in Gaslist | |
3062 movlw d'35' ; 36 = current SP position in EEPROM | |
3063 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 3064 movlw d'10' |
33 | 3065 movwf waitms_temp ; here: stores row for gas list |
124 | 3066 clrf decoplan_index ; here: SP counter |
33 | 3067 |
3068 PLED_simdata_screen3_loop: | |
3069 incf wait_temp,F ; EEPROM address | |
124 | 3070 incf decoplan_index,F ; Increase SP |
33 | 3071 |
3072 movlw d'25' | |
3073 addwf waitms_temp,F ; Increase row | |
3074 WIN_LEFT .0 | |
3075 movff waitms_temp,win_top ; Set Row | |
3076 | |
123 | 3077 STRCPY "SP" |
124 | 3078 movff decoplan_index,lo ; copy gas number |
33 | 3079 output_8 ; display gas number |
123 | 3080 STRCAT ": " |
33 | 3081 movff wait_temp, EEADR; SP #hi position |
3082 call read_eeprom ; get byte (stored in EEDATA) | |
3083 movff EEDATA,lo ; copy to lo | |
3084 clrf hi | |
3085 output_16dp d'3' ; outputs into Postinc2! | |
3086 call word_processor | |
3087 | |
3088 movlw d'3' ; list all three SP | |
124 | 3089 cpfseq decoplan_index ; All gases shown? |
33 | 3090 bra PLED_simdata_screen3_loop ;no |
3091 | |
3092 read_int_eeprom d'33' ; Read byte (stored in EEDATA) | |
3093 movff EEDATA,active_gas ; Read start gas (1-5) | |
3094 decf active_gas,W ; Gas 0-4 | |
3095 mullw d'4' | |
3096 movf PRODL,W | |
3097 addlw d'7' ; = address for He ratio | |
3098 movwf EEADR | |
3099 call read_eeprom ; Read He ratio | |
3100 movff EEDATA,hi ; And copy into hold register | |
3101 decf active_gas,W ; Gas 0-4 | |
3102 mullw d'4' | |
3103 movf PRODL,W | |
3104 addlw d'6' ; = address for O2 ratio | |
3105 movwf EEADR | |
3106 call read_eeprom ; Read O2 ratio | |
3107 movff EEDATA, lo ; O2 ratio | |
3108 | |
3109 WIN_LEFT .0 | |
34 | 3110 WIN_TOP .110 |
123 | 3111 |
3112 STRCPY "Dil:" | |
33 | 3113 output_8 ; O2 Ratio |
123 | 3114 STRCAT "/" |
33 | 3115 movff hi,lo |
3116 output_8 ; He Ratio | |
3117 call word_processor | |
3118 | |
3119 bcf leftbind | |
3120 return ; Return (CC Mode) | |
3121 | |
0 | 3122 |
3123 | |
3124 adjust_depth_with_salinity: ; computes salinity setting into lo:hi [mBar] | |
3125 | |
3126 btfsc simulatormode_active ; Do apply salinity in Simulatormode | |
3127 return | |
3128 | |
3129 read_int_eeprom d'26' ; Read Salinity from EEPROM | |
3130 movff EEDATA, wait_temp ; salinity | |
3131 | |
3132 movlw d'105' ; 105% ? | |
3133 cpfslt wait_temp ; Salinity higher limit | |
3134 return ; Out of limit, do not adjust lo:hi | |
3135 | |
3136 movlw d'99' ; 99% ? | |
3137 cpfsgt wait_temp ; Salinity lower limit | |
3138 return ; Out of limit, do not adjust lo:hi | |
3139 | |
3140 movff lo,xA+0 | |
3141 movff hi,xA+1 | |
3142 | |
3143 movlw d'100' | |
3144 movwf xB+0 | |
3145 clrf xB+1 | |
3146 | |
3147 call mult16x16 ;xA*xB=xC (lo:hi * 100) | |
3148 | |
3149 movff wait_temp,xB+0 ; Salinity | |
3150 clrf xB+1 | |
3151 | |
3152 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3153 | |
3154 movff xC+0,lo | |
3155 movff xC+1,hi ; restore lo and hi with updated value | |
3156 | |
3157 return |