Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/menu_custom.asm @ 27:29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
NEW: CF43: Depth [mBar] for color-code display
NEW: CF44: CNS [%] for color-code display
NEW: CF45: GF [%] for color-code display
NEW: CF46: ppO2 [cBar] for color-code display
NEW: CF47: Velocity [m/min] for color-code display
author | heinrichsweikamp |
---|---|
date | Sat, 15 May 2010 17:58:55 +0200 |
parents | 99512945c7a1 |
children | c6cab044a338 |
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 ; Menu "Custom Functions", Custom Functions checker (Displays permanent warning if critical custom functions are altered) | |
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
21 ; written: 05/10/30 | |
22 ; last updated: 08/08/31 | |
23 ; known bugs: | |
24 ; ToDo: | |
25 | |
26 ;First Bank of Custom Functions: | |
27 ; The custom functions are stored in the internal EEPROM after 0x80 | |
28 ; any custom function occupies 4 byte: | |
29 ; 2 byte (low:high) store the default value, reset from menu "reset" | |
30 ; if bit16=1 then the custrom function is 15bit value, if not it's a 8bit value | |
31 ; 2 byte (low:high) store the actual value | |
32 ; defaults for custom functions are in menu "reset" | |
33 ; get values with GETCUSTOM8 .x with x=0...32 for 8 Bit values (stored in WREG) | |
34 ; or with GETCUSTOM15 .x with x=0...32 for 15 Bit values (stored in lo and hi) | |
35 | |
36 ;Second Bank of Custom Functions: | |
37 ; The custom functions are stored in the internal EEPROM after 0x180 | |
38 ; any custom function occupies 4 byte: | |
39 ; 2 byte (low:high) store the default value, reset from menu "reset" | |
40 ; if bit16=1 then the custrom function is 15bit value, if not it's a 8bit value | |
41 ; 2 byte (low:high) store the actual value | |
42 ; defaults for custom functions are in menu "reset" | |
43 ; get values with GETCUSTOM8 .x with x=0...32 for 8 Bit values (stored in WREG) | |
44 ; or with GETCUSTOM15 .x with x=0...32 for 15 Bit values (stored in lo and hi) | |
45 | |
46 | |
47 GETCUSTOM8 macro custom8 | |
48 movlw custom8 | |
49 call getcustom8_1 | |
50 endm | |
51 | |
52 getcustom8_1: | |
53 ; # number of requested custom function in wreg | |
54 movwf customfunction_temp2 | |
55 | |
56 movlw d'31' | |
57 cpfsgt customfunction_temp2 | |
58 bra getcustom8_2 ; Lower bank | |
59 | |
60 movlw d'1' ; Upper Bank | |
61 movwf EEADRH | |
62 movlw d'32' | |
63 subwf customfunction_temp2,F | |
64 bra getcustom8_3 | |
65 | |
66 getcustom8_2: | |
67 clrf EEADRH | |
68 getcustom8_3: | |
69 movf customfunction_temp2,W | |
70 mullw d'4' | |
71 movf PRODL,W ; x4 for adress | |
72 addlw d'130' | |
73 movwf EEADR ; +130 for LOW Byte of value | |
74 call read_eeprom ; Lowbyte | |
75 movf EEDATA,W ; copied into wreg | |
76 clrf EEADRH | |
77 return ; return | |
78 | |
79 GETCUSTOM15 macro custom15 | |
80 movlw custom15 | |
81 call getcustom15_1 | |
82 endm | |
83 | |
84 getcustom15_1: | |
85 ; # number of requested custom function in wreg | |
86 movwf customfunction_temp2 | |
87 | |
88 movlw d'31' | |
89 cpfsgt customfunction_temp2 | |
90 bra getcustom15_2 ; Lower bank | |
91 | |
92 movlw d'1' ; Upper Bank | |
93 movwf EEADRH | |
94 movlw d'32' | |
95 subwf customfunction_temp2,F | |
96 bra getcustom15_3 | |
97 getcustom15_2: | |
98 clrf EEADRH | |
99 getcustom15_3: | |
100 movf customfunction_temp2,W | |
101 mullw d'4' | |
102 movf PRODL,W ; x4 for adress | |
103 addlw d'130' | |
104 movwf EEADR ; +130 for LOW Byte of value | |
105 call read_eeprom ; Lowbyte | |
106 movff EEDATA,lo | |
107 incf EEADR,F | |
108 call read_eeprom ; Highbyte | |
109 movff EEDATA,hi | |
110 clrf EEADRH | |
111 return ; return | |
112 | |
113 menu_custom_functions_page2: | |
114 movlw d'154' ; start of custom function descriptors | |
115 movwf customfunction_temp1 | |
7 | 116 bsf customfunction_page ; Use Page II... |
0 | 117 bra menu_custom_functions0 |
118 | |
119 menu_custom_functions: | |
120 movlw d'36' ; start of custom function descriptors | |
121 movwf customfunction_temp1 | |
122 bcf customfunction_page ; Use Page I... | |
123 | |
124 menu_custom_functions0: | |
125 bsf leftbind | |
126 call PLED_ClearScreen | |
127 movlw d'1' | |
128 movwf menupos | |
129 | |
130 bcf menubit4 | |
131 bcf cursor | |
132 bcf sleepmode | |
133 clrf decodata+0 ; here: # of CustomFunction | |
134 clrf divemins+0 ; here: # of CustomFunction*4 | |
135 bcf first_FA ; here: =1: -, =0: + | |
136 bcf second_FA ; here: =1: stepsize 1, =0: stepsize 10 | |
137 | |
138 call PLED_topline_box | |
139 WIN_INVERT .1 ; Init new Wordprocessor | |
140 | |
141 btfss customfunction_page ; | |
142 bra menu_custom_functions10 | |
143 DISPLAYTEXT .186 ; Custom FunctionsII | |
144 bra menu_custom_functions11 | |
145 | |
146 menu_custom_functions10: | |
147 DISPLAYTEXT .27 ; Custom FunctionsI | |
148 | |
149 menu_custom_functions11: | |
150 WIN_INVERT .0 ; Init new Wordprocessor | |
151 | |
152 menu_custom_functions1: | |
7 | 153 movlw d'1' |
154 btfss customfunction_page ; Use Page II... | |
155 movlw d'0' | |
156 movwf EEADRH | |
157 | |
0 | 158 clrf timeout_counter2 |
159 bcf menubit2 | |
160 bcf menubit3 | |
161 WIN_LEFT .20 | |
162 WIN_TOP .35 | |
163 lfsr FSR2,letter | |
164 movff decodata+0,lo | |
165 | |
166 movlw d'0' | |
167 btfsc customfunction_page ; Add offset for display | |
168 movlw d'32' | |
169 addwf lo,F | |
170 movff lo,apnoe_mins ; apnoe_mins used as temp for binary CFs | |
171 | |
172 output_99x | |
173 movlw ':' | |
174 movwf POSTINC2 | |
175 movlw ' ' | |
176 movwf POSTINC2 | |
177 call word_processor | |
178 | |
179 movf customfunction_temp1,W ; start of custom function descriptors | |
180 addwf decodata+0,W ; add # of current custom function, place result in wreg | |
181 call displaytext1 ; shows descriptor | |
182 | |
183 movlw binary_cf1 | |
184 subwf apnoe_mins,W ; Binary cf? | |
185 btfsc STATUS,Z | |
186 bra menu_custom_functions10c ; Yes | |
187 | |
188 movlw binary_cf2 | |
189 subwf apnoe_mins,W ; Binary cf? | |
190 btfsc STATUS,Z | |
191 bra menu_custom_functions10c ; Yes | |
192 | |
193 movlw binary_cf3 | |
194 subwf apnoe_mins,W ; Binary cf? | |
195 btfsc STATUS,Z | |
196 bra menu_custom_functions10c ; Yes | |
197 | |
198 movlw binary_cf4 | |
199 subwf apnoe_mins,W ; Binary cf? | |
200 btfsc STATUS,Z | |
201 bra menu_custom_functions10c ; Yes | |
202 | |
203 movlw binary_cf5 | |
204 subwf apnoe_mins,W ; Binary cf? | |
205 btfsc STATUS,Z | |
206 bra menu_custom_functions10c ; Yes | |
207 | |
17 | 208 movlw binary_cf6 |
209 subwf apnoe_mins,W ; Binary cf? | |
210 btfsc STATUS,Z | |
211 bra menu_custom_functions10c ; Yes | |
212 | |
0 | 213 |
214 bra menu_custom_functions10a ; Not a binary CF selected | |
215 | |
216 menu_custom_functions10c: | |
217 movlw d'1' | |
218 movwf apnoe_mins ; Yes, set apnoe_mins to "1" | |
219 bra menu_custom_functions10b | |
220 | |
221 menu_custom_functions10a: | |
222 clrf apnoe_mins ; Yes, clear apnoe_mins | |
223 menu_custom_functions10b: | |
224 WIN_LEFT .20 | |
225 WIN_TOP .65 | |
226 lfsr FSR2,letter | |
227 movlw '+' | |
228 movwf POSTINC2 | |
229 movlw '/' | |
230 movwf POSTINC2 | |
231 movlw '-' | |
232 movwf POSTINC2 | |
233 movlw ':' | |
234 movwf POSTINC2 | |
235 movlw ' ' | |
236 movwf POSTINC2 | |
237 movlw '+' | |
238 btfsc first_FA | |
239 movlw '-' | |
240 movwf POSTINC2 | |
241 call word_processor | |
242 | |
243 WIN_LEFT .20 | |
244 WIN_TOP .95 | |
245 lfsr FSR2,letter | |
246 movlw '1' | |
247 movwf POSTINC2 | |
248 movlw '/' | |
249 movwf POSTINC2 | |
250 movlw '1' | |
251 movwf POSTINC2 | |
252 movlw '0' | |
253 movwf POSTINC2 | |
254 movlw ':' | |
255 movwf POSTINC2 | |
256 movlw ' ' | |
257 movwf POSTINC2 | |
258 movlw '1' | |
259 movwf POSTINC2 | |
260 movlw '0' | |
261 btfsc second_FA | |
262 movwf POSTINC2 | |
263 movlw ' ' | |
264 movwf POSTINC2 | |
265 call word_processor | |
266 | |
267 WIN_LEFT .20 | |
268 WIN_TOP .125 | |
269 lfsr FSR2,letter | |
270 OUTPUTTEXT d'89' ;"Default:" | |
271 | |
272 movf divemins+0,W | |
273 addlw 0x80 | |
274 movwf EEADR | |
275 call read_eeprom ; Lowbyte | |
276 movff EEDATA,lo | |
277 movf divemins+0,W | |
278 addlw 0x81 | |
279 movwf EEADR | |
280 call read_eeprom ; Highbyte | |
281 movff EEDATA,hi | |
282 bcf hi,7 ; clear Bit 7 of value | |
283 output_16 | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
284 movlw ',' |
0 | 285 movwf POSTINC2 |
286 | |
287 movlw '1' | |
288 btfss EEDATA,7 ; 15Bit? | |
289 movlw '8' ; 8Bit! | |
290 tstfsz apnoe_mins ; apnoe_mins=0? | |
291 movlw '1' ; No, 1Bit! | |
292 movwf POSTINC2 | |
293 | |
294 movlw '5' | |
295 btfsc EEDATA,7 ; 15Bit? | |
296 movwf POSTINC2 | |
297 movlw 'B' | |
298 movwf POSTINC2 | |
299 movlw ' ' | |
300 movwf POSTINC2 | |
301 movlw ' ' | |
302 movwf POSTINC2 | |
303 movlw ' ' | |
304 movwf POSTINC2 | |
305 call word_processor | |
306 | |
307 WIN_LEFT .20 | |
308 WIN_TOP .155 | |
309 lfsr FSR2,letter | |
310 OUTPUTTEXT d'97' ; "Current:" | |
311 | |
312 movf divemins+0,W | |
313 addlw 0x82 | |
314 movwf EEADR | |
315 call read_eeprom ; Lowbyte | |
316 movff EEDATA,lo | |
317 movf divemins+0,W | |
318 addlw 0x83 | |
319 movwf EEADR | |
320 call read_eeprom ; Highbyte | |
321 movff EEDATA,hi | |
322 output_16 | |
323 movlw ' ' | |
324 movwf POSTINC2 | |
325 movlw ' ' | |
326 movwf POSTINC2 | |
327 movlw ' ' | |
328 movwf POSTINC2 | |
329 call word_processor | |
330 | |
331 menu_custom_functions1a: | |
332 DISPLAYTEXT .11 ; Exit | |
333 | |
334 call wait_switches ; Waits until switches are released, resets flag if button stays pressed! | |
335 call PLED_menu_cursor | |
336 | |
337 customfunctions_loop: | |
338 call check_switches_logbook | |
339 | |
340 btfsc menubit3 | |
341 bra customfunctions2 ; Move cursor or generate next page | |
342 | |
343 btfsc menubit2 | |
344 bra do_customfunction ; call subfunction | |
345 | |
346 btfsc divemode | |
347 goto restart ; dive started during cf menu | |
348 | |
349 btfsc onesecupdate | |
350 call timeout_surfmode | |
351 | |
352 btfsc onesecupdate | |
353 call set_dive_modes | |
354 | |
355 bcf onesecupdate ; end of 1sek. tasks | |
356 | |
357 btfsc sleepmode | |
358 bra exit_customfunctions | |
359 | |
360 bra customfunctions_loop | |
361 | |
362 customfunctions2: | |
363 incf menupos,F | |
364 movlw d'7' | |
365 cpfseq menupos ; =7? | |
366 bra customfunctions3 ; No | |
367 movlw d'1' | |
368 movwf menupos | |
369 | |
370 customfunctions3: | |
371 clrf timeout_counter2 | |
372 call PLED_menu_cursor | |
373 | |
374 call wait_switches ; Waits until switches are released, resets flag if button stays pressed! | |
375 | |
376 bcf menubit3 ; clear flag | |
377 bra customfunctions_loop | |
378 | |
379 | |
380 do_customfunction: | |
381 CLRF EEADRH | |
382 movlw d'1' | |
383 btfsc customfunction_page | |
384 movwf EEADRH ; Reset EEADRH correct (Was adjusted in check_timeout...) | |
385 | |
386 dcfsnz menupos,F | |
387 bra next_customfunction | |
388 dcfsnz menupos,F | |
389 bra toggle_plusminus | |
390 dcfsnz menupos,F | |
391 bra toggle_oneorten | |
392 dcfsnz menupos,F | |
393 bra restore_cfn_value | |
394 dcfsnz menupos,F | |
395 bra adjust_cfn_value | |
396 exit_customfunctions: | |
397 movlw d'2' ; Return to correct list entry | |
398 btfss customfunction_page | |
399 movlw d'1' | |
400 movwf menupos ; | |
401 clrf EEADRH ; Clear EEADRH ! | |
402 goto setup_menu2 ; exit... | |
403 | |
404 | |
405 next_customfunction: | |
406 incf decodata+0 | |
407 btfsc decodata+0,5 ;>31? | |
408 clrf decodata+0 ;Yes, so reset to zero | |
409 | |
410 movf decodata+0,W | |
411 mullw d'4' | |
412 movff PRODL, divemins+0 ;divemins+0 for correct addressing | |
413 | |
414 movlw d'1' | |
415 movwf menupos | |
416 bra menu_custom_functions1 ; also debounces switches | |
417 | |
418 toggle_plusminus: | |
419 btg first_FA | |
420 movlw d'2' | |
421 movwf menupos | |
422 bra menu_custom_functions1 ; also debounces switches | |
423 | |
424 toggle_oneorten: | |
425 btg second_FA | |
426 movlw d'3' | |
427 movwf menupos | |
428 bra menu_custom_functions1 ; also debounces switches | |
429 | |
430 restore_cfn_value: | |
431 movf divemins+0,W ; read default value | |
432 addlw 0x80 | |
433 movwf EEADR | |
434 call read_eeprom ; Lowbyte | |
435 movff EEDATA,lo | |
436 movf divemins+0,W | |
437 addlw 0x81 | |
438 movwf EEADR | |
439 call read_eeprom ; Highbyte | |
440 movff EEDATA,hi | |
441 bcf hi,7 ; clear bit 7 of value | |
442 | |
443 movf divemins+0,W ; store default value | |
444 addlw 0x82 | |
445 movwf EEADR | |
446 movff lo,EEDATA | |
447 call write_eeprom ; Lowbyte | |
448 movf divemins+0,W | |
449 addlw 0x83 | |
450 movwf EEADR | |
451 movff hi,EEDATA | |
452 call write_eeprom ; Highbyte | |
453 | |
454 movlw d'4' | |
455 movwf menupos | |
456 bra menu_custom_functions1 ; also debounces switches | |
457 | |
458 adjust_cfn_value: | |
459 movf divemins+0,W ; get current value | |
460 addlw 0x82 | |
461 movwf EEADR | |
462 call read_eeprom ; Lowbyte | |
463 movff EEDATA,lo | |
464 movf divemins+0,W | |
465 addlw 0x83 | |
466 movwf EEADR | |
467 call read_eeprom ; Highbyte | |
468 movff EEDATA,hi | |
469 | |
470 movf divemins+0,W | |
471 addlw 0x81 | |
472 movwf EEADR | |
473 call read_eeprom ; Highbyte | |
474 movff EEDATA,divemins+1 ; Highbyte of default value | |
475 | |
476 movlw d'1' | |
477 cpfseq apnoe_mins ; If apnoe_mins=1 then CF is binary | |
478 bra adjust_cfn_value1 ; Not Binary | |
479 | |
480 tstfsz lo ; =0? | |
481 setf lo ; No, Set to 255 | |
482 incf lo,F ; Increase by one | |
483 clrf hi ; Delete hi byte (Not required but to make sure...) | |
484 bra adjust_cfn_value3 ; Store result | |
485 | |
486 adjust_cfn_value1: | |
487 btfss first_FA ; Minus? | |
488 bra adjust_cfn_value2 ; No, Plus | |
489 | |
490 movlw d'1' | |
491 btfsc second_FA ; -10? | |
492 movlw d'10' | |
493 | |
494 subwf lo,F ; substract value | |
495 movlw d'0' | |
496 btfsc divemins+1,7 ; 8Bit value | |
497 subwfb hi,F | |
498 | |
499 movlw b'01111111' | |
500 btfsc hi,7 ; >32768? | |
501 movwf hi | |
502 | |
503 bra adjust_cfn_value3 | |
504 | |
505 adjust_cfn_value2: | |
506 movlw d'1' | |
507 btfsc second_FA ; +10? | |
508 movlw d'10' | |
509 | |
510 addwf lo,F ; add value | |
511 movlw d'0' | |
512 btfsc divemins+1,7 ; 8Bit value? | |
513 addwfc hi,F | |
514 | |
515 btfsc hi,7 ; >32768? | |
516 clrf hi | |
517 | |
518 adjust_cfn_value3: | |
519 movf divemins+0,W ; Store current value | |
520 addlw 0x82 | |
521 movwf EEADR | |
522 movff lo,EEDATA | |
523 call write_eeprom ; Lowbyte | |
524 movf divemins+0,W | |
525 addlw 0x83 | |
526 movwf EEADR | |
527 movff hi,EEDATA | |
528 call write_eeprom ; Highbyte | |
529 movlw d'5' | |
530 movwf menupos | |
531 bra menu_custom_functions1 ; also debounces switches | |
532 | |
533 getcustom15_default: | |
534 ; # number of requested custom function in wreg | |
535 movwf customfunction_temp2 | |
536 | |
537 movlw d'31' | |
538 cpfsgt customfunction_temp2 | |
539 bra getcustom15_d2 ; Lower bank | |
540 | |
541 movlw d'1' ; Upper Bank | |
542 movwf EEADRH | |
543 movlw d'32' | |
544 subwf customfunction_temp2,F | |
545 bra getcustom15_d3 | |
546 getcustom15_d2: | |
547 clrf EEADRH | |
548 getcustom15_d3: | |
549 movf customfunction_temp2,W | |
550 mullw d'4' | |
551 movf PRODL,W ; x4 for adress | |
552 addlw d'128' | |
553 movwf EEADR ; +130 for LOW Byte of value | |
554 call read_eeprom ; Lowbyte | |
555 movff EEDATA,lo | |
556 incf EEADR,F | |
557 call read_eeprom ; Highbyte | |
558 movff EEDATA,hi | |
559 clrf EEADRH | |
560 return ; return | |
561 | |
562 custom_functions_check_divemode: ;displays warning if a critical custom function is not set to default | |
563 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
564 bra check_cf11 | |
565 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
566 bra check_cf12 | |
567 return | |
568 | |
569 custom_functions_check_surfmode: ;displays warning if a critical custom function is not set to default | |
570 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
571 bra check_cf11 | |
572 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
573 bra check_cf12 | |
574 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
575 bra check_cf17 | |
576 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
577 bra check_cf18 | |
578 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
579 bra check_cf19 | |
580 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
581 bra check_cf29 | |
582 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
583 bra check_cf32 | |
584 dcfsnz cf_checker_counter,F ; counts custom functions to check for warning symbol | |
585 bra check_cf33 | |
586 return | |
587 | |
588 check_cf11: | |
589 movlw d'11' ; saturation factor | |
590 rcall custom_function_check_low ; compares current with default value | |
591 call test_and_display_warning ; displays the warning if the custom function is not correct | |
592 movlw d'2' ; next in testing row | |
593 movwf cf_checker_counter ; | |
594 return | |
595 | |
596 check_cf12: | |
597 movlw d'12' ; desaturation factor | |
598 rcall custom_function_check_high ; compares current with default value | |
599 call test_and_display_warning ; displays the warning if the custom function is not correct | |
600 movlw d'3' ; next in testing row | |
601 movwf cf_checker_counter ; | |
602 return | |
603 | |
604 check_cf17: | |
605 movlw d'17' ; lower threshold ppO2 | |
606 rcall custom_function_check_low ; compares current with default value | |
607 call test_and_display_warning ; displays the warning if the custom function is not correct | |
608 movlw d'4' ; next in testing row | |
609 movwf cf_checker_counter ; | |
610 return | |
611 | |
612 check_cf18: | |
613 movlw d'18' ; upper threshold ppO2 | |
614 rcall custom_function_check_high ; compares current with default value | |
615 call test_and_display_warning ; displays the warning if the custom function is not correct | |
616 movlw d'5' ; next in testing row | |
617 movwf cf_checker_counter ; | |
618 return | |
619 | |
620 check_cf19: | |
621 movlw d'19' ; upper threshold ppO2 display | |
622 rcall custom_function_check_high ; compares current with default value | |
623 call test_and_display_warning ; displays the warning if the custom function is not correct | |
624 movlw d'6' ; next in testing row | |
625 movwf cf_checker_counter ; | |
626 return | |
627 | |
628 check_cf29: | |
629 movlw d'6' | |
630 movwf cf_checker_counter ; upper limit for CF29, here: used as a temp variable | |
631 movlw d'29' ; last deco stop in [m] | |
632 rcall custom_function_check_high_limit ; compares current with default value | |
633 call test_and_display_warning ; displays the warning if the custom function is not correct | |
634 movlw d'7' ; next in testing row | |
635 movwf cf_checker_counter ; | |
636 return | |
637 | |
638 check_cf32: | |
639 movlw d'32' ; GF LOW | |
640 rcall custom_function_check_high ; compares current with default value | |
641 call test_and_display_warning ; displays the warning if the custom function is not correct | |
642 movlw d'8' ; next in testing row | |
643 movwf cf_checker_counter ; | |
644 return | |
645 | |
646 check_cf33: | |
647 movlw d'33' ; GF HIGH | |
648 rcall custom_function_check_high ; compares current with default value | |
649 call test_and_display_warning ; displays the warning if the custom function is not correct | |
650 movlw d'1' ; next in testing row | |
651 movwf cf_checker_counter ; | |
652 return | |
653 | |
654 | |
655 test_and_display_warning: | |
656 movwf lo ; copy result | |
657 tstfsz lo | |
658 return ; CF OK | |
659 goto custom_warn_surfmode | |
660 | |
661 custom_function_check_low: ; Checks CF (#WREG) | |
662 ; Returns WREG=0 if CF is lower then default | |
663 movwf temp1 ; save for custom value | |
664 call getcustom15_1 ; Get Current Value stored in hi and lo | |
665 movff lo,sub_a+0 | |
666 movff hi,sub_a+1 ; save value | |
667 | |
668 movf temp1,w | |
669 call getcustom15_default ; Get Default value stored in hi and lo | |
670 movff lo,sub_b+0 | |
671 movff hi,sub_b+1 ; save value | |
672 call sub16 ; sub_c = sub_a - sub_b with "neg_flag" bit set if sub_b > sub_a | |
673 btfss neg_flag ; negative? | |
674 retlw .255 ; no | |
675 retlw .0 ; yes | |
676 | |
677 custom_function_check_high: ; Checks CF (#WREG) | |
678 ; Returns WREG=0 if CF is higher then default | |
679 movwf temp1 ; save for custom value | |
680 call getcustom15_1 ; Get Current Value stored in hi and lo | |
681 movff lo,sub_b+0 | |
682 movff hi,sub_b+1 ; save value | |
683 | |
684 movf temp1,w | |
685 call getcustom15_default ; Get Default value stored in hi and lo | |
686 movff lo,sub_a+0 | |
687 movff hi,sub_a+1 ; save value | |
688 call sub16 ; sub_c = sub_a - sub_b with "neg_flag" bit set if sub_b > sub_a | |
689 btfss neg_flag ; negative? | |
690 retlw .255 ; no | |
691 retlw .0 ; yes | |
692 | |
693 custom_function_check_high_limit: ; Checks if CF (#WREG) is lower then limit (#cf_checker_counter) | |
694 movwf temp1 ; save for custom value | |
695 call getcustom15_1 ; Get Current Value stored in hi and lo | |
696 movff lo,sub_b+0 | |
697 movff hi,sub_b+1 ; save value | |
698 movff cf_checker_counter, sub_a+0 | |
699 clrf sub_a+1 | |
700 call sub16 ; sub_c = sub_a - sub_b with "neg_flag" bit set if sub_b > sub_a | |
701 btfss neg_flag ; negative? | |
702 retlw .255 ; no | |
25 | 703 retlw .0 ; yes |