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