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