Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/menu_custom.asm @ 258:abbf9a2c2c48
Small p2_deco optimizations:
Removed pres_tissue_limit[] and sim_pres_tissue_limit[] (Unused).
Separated read_buhlmann_times() and read_buhlmann_coefficients().
| author | JeanDo |
|---|---|
| date | Sun, 10 Apr 2011 14:17:53 +0200 |
| parents | 53b16a746166 |
| children | 2f21f7a77608 |
| rev | line source |
|---|---|
| 0 | 1 ; OSTC - diving computer code |
| 2 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
| 3 | |
| 4 ; This program is free software: you can redistribute it and/or modify | |
| 5 ; it under the terms of the GNU General Public License as published by | |
| 6 ; the Free Software Foundation, either version 3 of the License, or | |
| 7 ; (at your option) any later version. | |
| 8 | |
| 9 ; This program is distributed in the hope that it will be useful, | |
| 10 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 12 ; GNU General Public License for more details. | |
| 13 | |
| 14 ; You should have received a copy of the GNU General Public License | |
| 15 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| 16 | |
| 17 | |
| 18 ; Menu "Custom Functions", Custom Functions checker (Displays permanent warning if critical custom functions are altered) | |
| 19 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
| 20 ; written: 05/10/30 | |
| 97 | 21 ; last updated: 2010/12/11 |
| 0 | 22 ; known bugs: |
| 23 ; ToDo: | |
| 24 | |
| 25 ;First Bank of Custom Functions: | |
| 26 ; The custom functions are stored in the internal EEPROM after 0x80 | |
| 27 ; any custom function occupies 4 byte: | |
| 28 ; 2 byte (low:high) store the default value, reset from menu "reset" | |
| 29 ; if bit16=1 then the custrom function is 15bit value, if not it's a 8bit value | |
| 30 ; 2 byte (low:high) store the actual value | |
| 31 ; defaults for custom functions are in menu "reset" | |
| 32 ; get values with GETCUSTOM8 .x with x=0...32 for 8 Bit values (stored in WREG) | |
| 33 ; or with GETCUSTOM15 .x with x=0...32 for 15 Bit values (stored in lo and hi) | |
| 34 | |
| 35 ;Second Bank of Custom Functions: | |
| 36 ; The custom functions are stored in the internal EEPROM after 0x180 | |
| 37 ; any custom function occupies 4 byte: | |
| 38 ; 2 byte (low:high) store the default value, reset from menu "reset" | |
| 39 ; if bit16=1 then the custrom function is 15bit value, if not it's a 8bit value | |
| 40 ; 2 byte (low:high) store the actual value | |
| 41 ; defaults for custom functions are in menu "reset" | |
| 42 ; get values with GETCUSTOM8 .x with x=0...32 for 8 Bit values (stored in WREG) | |
| 43 ; or with GETCUSTOM15 .x with x=0...32 for 15 Bit values (stored in lo and hi) | |
| 44 | |
| 79 | 45 ; [jDG] 2010-11-30 More fancy displsy of the various CF types |
| 46 ; data types. When we do have a 8bit data (bit16=0), the high byte serves to | |
| 97 | 47 ; define the display format. Also stores min/max bounds into the PROM table. |
| 48 ; And provides surfacemode checking of all parameters. | |
| 79 | 49 |
| 50 CF_INT8 EQU 0 ; Default display, 8 or 15 bits values. | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
51 CF_PERCENT EQU 1 ; Displays 110% |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
52 CF_DECI EQU 2 ; Displays 1.6 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
53 CF_CENTI EQU 3 ; Displays 1.50 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
54 CF_MILI EQU 4 ; Displays 1.015 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
55 CF_BOOL EQU 5 ; Displays ON/OFF |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
56 CF_SEC EQU 6 ; Displays 4:00 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
57 CF_COLOR EQU 7 ; Display 240 plus a color watch (inverse video space) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
58 ; |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
59 CF_TYPES EQU 0x1F |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
60 CF_MAX_BIT EQU 6 ; Default is the highest safe value. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
61 CF_MAX EQU (1<<CF_MAX_BIT) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
62 CF_MIN_BIT EQU 5 ; Default is the lowest safe value. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
63 CF_MIN EQU (1<<CF_MIN_BIT) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
64 ; |
| 79 | 65 CF_INT15 EQU 0x80; Default display. Flag for 15bit, typeless values. |
| 0 | 66 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
67 ; Overlay our tmp data with some unused variables. But use more |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
68 ; meaningfull labels... |
| 164 | 69 #define cf32_x4 divemins+0 ; CF# modulus 32, time 4. |
| 70 #define cf_type divemins+1 ; Type of the edited CF | |
| 71 #define cf_value divesecs | |
| 72 #define cf_min apnoe_mins | |
| 73 #define cf_max apnoe_secs | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
74 |
| 0 | 75 GETCUSTOM8 macro custom8 |
| 76 movlw custom8 | |
| 77 call getcustom8_1 | |
| 78 endm | |
| 79 | |
| 80 getcustom8_1: | |
| 81 ; # number of requested custom function in wreg | |
| 82 movwf customfunction_temp2 | |
| 83 | |
| 84 movlw d'31' | |
| 85 cpfsgt customfunction_temp2 | |
| 86 bra getcustom8_2 ; Lower bank | |
| 87 | |
| 88 movlw d'1' ; Upper Bank | |
| 89 movwf EEADRH | |
| 90 movlw d'32' | |
| 91 subwf customfunction_temp2,F | |
| 92 bra getcustom8_3 | |
| 93 | |
| 94 getcustom8_2: | |
| 95 clrf EEADRH | |
| 96 getcustom8_3: | |
| 97 movf customfunction_temp2,W | |
| 98 mullw d'4' | |
| 99 movf PRODL,W ; x4 for adress | |
| 100 addlw d'130' | |
| 101 movwf EEADR ; +130 for LOW Byte of value | |
| 102 call read_eeprom ; Lowbyte | |
| 103 movf EEDATA,W ; copied into wreg | |
| 104 clrf EEADRH | |
| 105 return ; return | |
| 106 | |
| 167 | 107 GETCUSTOM15 macro number |
| 108 movlw number | |
| 109 call getcustom15 | |
| 0 | 110 endm |
| 111 | |
| 167 | 112 global getcustom15 |
| 113 getcustom15: | |
| 0 | 114 ; # number of requested custom function in wreg |
| 115 movwf customfunction_temp2 | |
| 116 | |
| 117 movlw d'31' | |
| 118 cpfsgt customfunction_temp2 | |
| 119 bra getcustom15_2 ; Lower bank | |
| 120 | |
| 121 movlw d'1' ; Upper Bank | |
| 122 movwf EEADRH | |
| 123 movlw d'32' | |
| 124 subwf customfunction_temp2,F | |
| 125 bra getcustom15_3 | |
| 126 getcustom15_2: | |
| 127 clrf EEADRH | |
| 128 getcustom15_3: | |
| 129 movf customfunction_temp2,W | |
| 130 mullw d'4' | |
| 131 movf PRODL,W ; x4 for adress | |
| 132 addlw d'130' | |
| 133 movwf EEADR ; +130 for LOW Byte of value | |
| 134 call read_eeprom ; Lowbyte | |
| 135 movff EEDATA,lo | |
| 136 incf EEADR,F | |
| 137 call read_eeprom ; Highbyte | |
| 138 movff EEDATA,hi | |
| 139 clrf EEADRH | |
| 140 return ; return | |
| 141 | |
| 142 menu_custom_functions_page2: | |
| 143 movlw d'154' ; start of custom function descriptors | |
| 144 movwf customfunction_temp1 | |
| 7 | 145 bsf customfunction_page ; Use Page II... |
| 0 | 146 bra menu_custom_functions0 |
| 147 | |
| 148 menu_custom_functions: | |
| 149 movlw d'36' ; start of custom function descriptors | |
| 150 movwf customfunction_temp1 | |
| 151 bcf customfunction_page ; Use Page I... | |
| 152 | |
| 153 menu_custom_functions0: | |
| 154 bsf leftbind | |
| 155 call PLED_ClearScreen | |
| 156 movlw d'1' | |
| 157 movwf menupos | |
| 158 | |
| 159 bcf menubit4 | |
| 160 bcf cursor | |
| 161 bcf sleepmode | |
| 162 clrf decodata+0 ; here: # of CustomFunction | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
163 clrf cf32_x4 ; here: # of CustomFunction*4 |
| 0 | 164 bcf first_FA ; here: =1: -, =0: + |
| 165 bcf second_FA ; here: =1: stepsize 1, =0: stepsize 10 | |
| 166 | |
| 167 call PLED_topline_box | |
| 168 WIN_INVERT .1 ; Init new Wordprocessor | |
| 169 | |
| 170 btfss customfunction_page ; | |
| 171 bra menu_custom_functions10 | |
| 172 DISPLAYTEXT .186 ; Custom FunctionsII | |
| 173 bra menu_custom_functions11 | |
| 174 | |
| 175 menu_custom_functions10: | |
| 176 DISPLAYTEXT .27 ; Custom FunctionsI | |
| 177 | |
| 178 menu_custom_functions11: | |
| 179 WIN_INVERT .0 ; Init new Wordprocessor | |
| 180 | |
| 181 menu_custom_functions1: | |
| 123 | 182 call PLED_standard_color ; Trash EEADRH... |
| 29 | 183 |
| 123 | 184 movlw d'1' ; So restore it ! |
| 185 btfss customfunction_page ; Use Page II ? | |
| 186 movlw d'0' ; NO: this is page 1. | |
| 7 | 187 movwf EEADRH |
| 188 | |
| 0 | 189 clrf timeout_counter2 |
| 190 bcf menubit2 | |
| 191 bcf menubit3 | |
| 192 WIN_LEFT .20 | |
| 193 WIN_TOP .35 | |
| 194 lfsr FSR2,letter | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
195 movff decodata+0,lo ; decodata == CF number % 32 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
196 |
| 0 | 197 movlw d'0' |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
198 btfsc customfunction_page ; Add offset for display in CF menu II |
| 0 | 199 movlw d'32' |
| 200 addwf lo,F | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
201 |
| 0 | 202 output_99x |
| 123 | 203 STRCAT_PRINT ": " |
| 0 | 204 |
| 205 movf customfunction_temp1,W ; start of custom function descriptors | |
| 206 addwf decodata+0,W ; add # of current custom function, place result in wreg | |
| 174 | 207 call displaytext_1_low ; shows descriptor |
| 0 | 208 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
209 ; Read default, type and min/max from reset table. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
210 rcall cf_read_default |
| 0 | 211 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
212 movf cf_type,W ; Is it a ON/OFF flag ? |
| 79 | 213 xorlw CF_BOOL |
| 214 bnz menu_custom_functions10a ; Not a binary CF selected | |
| 0 | 215 |
| 216 menu_custom_functions10c: | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
217 ; Erase unused lines when editing boolean... |
| 79 | 218 WIN_LEFT .20 |
| 219 WIN_TOP .65 | |
| 220 lfsr FSR2,letter ; Make a string of 8 spaces | |
| 84 | 221 call cf_fill_line |
| 79 | 222 call word_processor ; Clear +/- line |
| 223 | |
| 224 WIN_TOP .95 | |
| 225 call word_processor ; Clear 1/10 line | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
226 |
| 0 | 227 bra menu_custom_functions10b |
| 228 | |
| 229 menu_custom_functions10a: | |
| 230 WIN_LEFT .20 | |
| 231 WIN_TOP .65 | |
| 123 | 232 STRCPY "+/-: " |
| 0 | 233 movlw '+' |
| 234 btfsc first_FA | |
| 235 movlw '-' | |
| 236 movwf POSTINC2 | |
| 237 call word_processor | |
| 238 | |
| 239 WIN_TOP .95 | |
| 123 | 240 STRCPY "1/10: 1" |
| 0 | 241 movlw '0' |
| 242 btfsc second_FA | |
| 243 movwf POSTINC2 | |
| 123 | 244 STRCAT_PRINT " " |
| 0 | 245 |
| 79 | 246 menu_custom_functions10b: |
| 0 | 247 WIN_LEFT .20 |
| 248 WIN_TOP .125 | |
| 249 lfsr FSR2,letter | |
| 250 OUTPUTTEXT d'89' ;"Default:" | |
| 251 | |
| 79 | 252 call display_customfunction ; Typed display. |
| 0 | 253 |
| 254 WIN_LEFT .20 | |
| 255 WIN_TOP .155 | |
| 256 lfsr FSR2,letter | |
| 257 OUTPUTTEXT d'97' ; "Current:" | |
| 258 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
259 movf cf32_x4,W |
| 0 | 260 addlw 0x82 |
| 261 movwf EEADR | |
| 262 call read_eeprom ; Lowbyte | |
| 263 movff EEDATA,lo | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
264 movff EEDATA, cf_value ; Backup low 8bit value. |
| 79 | 265 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
266 movf cf32_x4,W |
| 0 | 267 addlw 0x83 |
| 268 movwf EEADR | |
| 269 call read_eeprom ; Highbyte | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
270 movff EEDATA,hi |
| 79 | 271 |
| 123 | 272 call PLED_standard_color ; Changed by color swatches, but trash EEADRH... |
| 79 | 273 call display_customfunction |
| 0 | 274 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
275 ; End of mask: min/max and the exit line... |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
276 rcall display_minmax |
| 0 | 277 DISPLAYTEXT .11 ; Exit |
| 278 | |
| 279 call wait_switches ; Waits until switches are released, resets flag if button stays pressed! | |
| 280 call PLED_menu_cursor | |
| 281 | |
| 282 customfunctions_loop: | |
| 283 call check_switches_logbook | |
| 284 | |
| 285 btfsc menubit3 | |
| 286 bra customfunctions2 ; Move cursor or generate next page | |
| 287 | |
| 288 btfsc menubit2 | |
| 289 bra do_customfunction ; call subfunction | |
| 290 | |
| 291 btfsc divemode | |
| 292 goto restart ; dive started during cf menu | |
| 293 | |
| 294 btfsc onesecupdate | |
| 295 call timeout_surfmode | |
| 296 | |
| 297 btfsc onesecupdate | |
| 298 call set_dive_modes | |
| 299 | |
| 300 bcf onesecupdate ; end of 1sek. tasks | |
| 301 | |
| 302 btfsc sleepmode | |
| 303 bra exit_customfunctions | |
| 304 | |
| 305 bra customfunctions_loop | |
| 306 | |
| 307 customfunctions2: | |
| 308 incf menupos,F | |
| 90 | 309 movf cf_type,W ; Are we editing a boolean value ? |
| 310 xorlw CF_BOOL | |
| 311 bnz customfunctions2a ; NO : don't skip lines 2/3. | |
| 84 | 312 |
| 313 movlw d'4' ; Just after increment, | |
| 314 cpfsgt menupos ; Is current position < 4 ? | |
| 315 movwf menupos ; NO: skip set to 4. | |
| 316 | |
| 317 customfunctions2a: | |
| 0 | 318 movlw d'7' |
| 319 cpfseq menupos ; =7? | |
| 320 bra customfunctions3 ; No | |
| 321 movlw d'1' | |
| 322 movwf menupos | |
| 323 | |
| 324 customfunctions3: | |
| 325 clrf timeout_counter2 | |
| 326 call PLED_menu_cursor | |
| 327 | |
| 328 call wait_switches ; Waits until switches are released, resets flag if button stays pressed! | |
| 329 | |
| 330 bcf menubit3 ; clear flag | |
| 331 bra customfunctions_loop | |
| 332 | |
| 79 | 333 ;----------------------------------------------------------------------------- |
| 94 | 334 ; Read default value, type, and constraints |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
335 ; |
| 94 | 336 ; Input: customfunction_page, cf32_x4 |
| 337 ; Output: hi:lo, cf_type, cf_min, cf_max. | |
| 338 ; Trashes: TBLPTR | |
| 339 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
340 cf_read_default: |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
341 movlw LOW(cf_default_table0) ; Get 24bit PROM pointer. SKIP |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
342 movwf TBLPTRL |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
343 movlw HIGH(cf_default_table0) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
344 movwf TBLPTRH |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
345 movlw UPPER(cf_default_table0) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
346 movwf TBLPTRU |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
347 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
348 movlw 0 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
349 btfsc customfunction_page ; Page II CF# ? |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
350 movlw 0x80 ; YES: add 128 to ptr. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
351 addwf cf32_x4,W ; Add 4 x (CF index modulus 32) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
352 addwf TBLPTRL,F ; And to a 8+16 add into TBLPTR |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
353 movlw 0 ; (keep carry) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
354 addwfc TBLPTRH,F ; Propagate to 16bit (but not 24bits). |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
355 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
356 tblrd*+ |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
357 movff TABLAT,lo ; Low byte --> lo |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
358 tblrd*+ |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
359 movff TABLAT,hi ; High byte --> hi |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
360 btfss hi,7 ; 15bit ? |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
361 clrf hi ; NO: clear extra type flags |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
362 bcf hi,7 ; clear 15bit flag |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
363 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
364 movff TABLAT,cf_type ; type (high byte) --> cf_type |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
365 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
366 tblrd*+ |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
367 movff TABLAT,cf_min ; Then get optional min/max |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
368 tblrd*+ |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
369 movff TABLAT,cf_max |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
370 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
371 return |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
372 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
373 ;----------------------------------------------------------------------------- |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
374 ; Display a 8/15bit value, plus optional min and max bound. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
375 ; Input : hi:lo = data to display. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
376 ; cf_type = the type. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
377 ; cf_min, cf_max : the optional min/max. |
| 79 | 378 ; FSR2 = current string pointer. |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
379 ; Trash : hi:lo (when displaying min/max) |
| 79 | 380 |
| 381 display_customfunction: | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
382 movff EEADRH, FSR1H ; Backup... |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
383 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
384 rcall display_formated |
| 123 | 385 incf WREG ; Color swatch drawn ? |
| 386 bz display_customfunction_1 ; YES: skip line fill... | |
| 387 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
388 rcall cf_fill_line |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
389 call word_processor |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
390 |
| 123 | 391 display_customfunction_1: |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
392 movff FSR1H, EEADRH |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
393 return |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
394 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
395 ;----------------------------------------------------------------------------- |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
396 ; Display optional min/max values. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
397 ; Inputs: cf_value, cf_min, cf_max (and cf_type to display min/max). |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
398 ; Trashed: hi:lo while display min and max values. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
399 display_minmax: |
| 99 | 400 ; Min/max unsupported for 15bit values yet... |
| 79 | 401 movff EEADRH, FSR1H ; Backup... |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
402 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
403 ; Display min line |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
404 WIN_TOP .65 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
405 WIN_LEFT .100 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
406 lfsr FSR2, letter |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
407 |
| 100 | 408 btfsc cf_type,7 ; A 15bit value ? |
| 409 bra cf_no_min ; Don't display, hence clear line... | |
| 410 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
411 btfss cf_type, CF_MIN_BIT ; A min value exists ? |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
412 bra cf_no_min |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
413 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
414 movf cf_min,W ; Retrieve current 8b value |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
415 subwf cf_value,W ; Compute (lo-min) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
416 bc cf_min_passed ; Ok if CARRY, ie. min >= lo |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
417 call PLED_warnings_color |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
418 WIN_INVERT 1 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
419 cf_min_passed: |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
420 |
| 123 | 421 STRCAT "> " ; A min value follows |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
422 movff cf_min, lo |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
423 rcall display_formated |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
424 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
425 cf_no_min: |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
426 rcall cf_fill_line ; Fill buffer |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
427 lfsr FSR2, letter+.7 ; Limit to 8 chars btw. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
428 call word_processor |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
429 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
430 ; Display max line |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
431 WIN_TOP .95 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
432 call PLED_standard_color |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
433 WIN_INVERT 0 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
434 lfsr FSR2, letter |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
435 |
| 100 | 436 btfsc cf_type,7 ; A 15bit value ? |
| 437 bra cf_no_max ; Don't display, hence clear line too... | |
| 438 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
439 btfss cf_type, CF_MAX_BIT ; A max value exists ? |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
440 bra cf_no_max |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
441 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
442 movf cf_value,W ; Retrieve current max bound |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
443 subwf cf_max,W ; Compute (max-lo) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
444 bc cf_max_passed ; Ok if no carry, ie. max <= lo |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
445 call PLED_warnings_color |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
446 WIN_INVERT 1 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
447 cf_max_passed: |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
448 |
| 123 | 449 STRCAT "< " ; A max value follows |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
450 movff cf_max, lo |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
451 rcall display_formated |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
452 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
453 cf_no_max: |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
454 rcall cf_fill_line ; Fill buffer |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
455 lfsr FSR2, letter+.7 ; Limit to 8 chars btw. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
456 call word_processor |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
457 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
458 cf_minmax_done: |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
459 call PLED_standard_color |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
460 WIN_INVERT 0 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
461 movff FSR1H, EEADRH |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
462 return |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
463 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
464 ;----------------------------------------------------------------------------- |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
465 ; Display a single 8/15 bit value, according to cf_type. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
466 ; Input : hi:lo = data to display. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
467 ; cf_type = the type. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
468 ; cf_min, cf_max : the optional min/max. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
469 ; FSR2 = current string pointer. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
470 display_formated: |
| 79 | 471 |
| 472 ;---- decode type -------------------------------------------------------- | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
473 movf cf_type,W ; Just set N/Z flags |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
474 bn cf_type_neg ; Keep 15bits value in old format. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
475 andlw CF_TYPES ; Look just at types |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
476 bz cf_type_00 ; 8bit standard mode |
| 79 | 477 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
478 ; Jump table: ; test the value with cleared flags... |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
479 dcfsnz WREG |
| 79 | 480 bra cf_type_01 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
481 dcfsnz WREG |
| 79 | 482 bra cf_type_02 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
483 dcfsnz WREG |
| 79 | 484 bra cf_type_03 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
485 dcfsnz WREG |
| 79 | 486 bra cf_type_04 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
487 dcfsnz WREG |
| 79 | 488 bra cf_type_05 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
489 dcfsnz WREG |
| 79 | 490 bra cf_type_06 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
491 dcfsnz WREG |
| 79 | 492 bra cf_type_07 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
493 bra cf_type_00 ; Default to 8bit mode... |
| 79 | 494 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
495 cf_type_01: ; Type == 1 is CF_PERCENT mode |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
496 bcf leftbind |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
497 output_8 |
| 123 | 498 PUTC '%' |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
499 retlw 0 |
| 79 | 500 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
501 cf_type_02: ; Type == 2 is CF_DECI mode. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
502 clrf hi |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
503 bsf leftbind |
| 79 | 504 output_16dp 4 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
505 retlw 0 |
| 79 | 506 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
507 cf_type_03: ; Type == 3 is CF_CENTI mode. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
508 clrf hi |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
509 bsf leftbind |
| 79 | 510 output_16dp 3 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
511 retlw 0 |
| 79 | 512 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
513 cf_type_04: ; Type == 4 is CF_MILI mode |
| 79 | 514 output_16dp 2 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
515 retlw 0 |
| 79 | 516 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
517 cf_type_05: ; Type == 5 is CF_BOOL mode. |
| 79 | 518 movf lo,W ; Get flag value... |
| 519 bz cf_type_off | |
| 520 OUTPUTTEXT d'130' ; ON | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
521 retlw 0 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
522 |
| 79 | 523 cf_type_off: |
| 524 OUTPUTTEXT d'131' ; OFF | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
525 retlw 0 |
| 79 | 526 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
527 cf_type_06: ; Type == 6 is CF_SECS mode (mm:ss or hh:mm) |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
528 clrf hi |
| 79 | 529 call convert_time ; Convert to min:sec into hi:low. |
| 123 | 530 movff lo,TABLAT ; Save seconds for later. |
| 79 | 531 movff hi,lo ; Get minutes |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
532 bsf leftbind ; Skip leading space(s). |
| 79 | 533 output_8 ; Print them |
| 123 | 534 PUTC ':' ; Separator |
| 535 movff TABLAT,lo ; Get back seconds | |
| 79 | 536 output_99x ; lo in 2 digits with trailing zeros. |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
537 retlw 0 |
| 79 | 538 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
539 cf_type_07: ; Type == 7 is CF_COLOR swatch. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
540 bcf leftbind ; Keep leading space (better alignement) |
| 79 | 541 output_8 |
| 123 | 542 STRCAT_PRINT " " |
| 84 | 543 |
| 79 | 544 movf lo,W ; Get color. |
| 123 | 545 call PLED_set_color |
| 546 movlw .23 | |
| 547 movff WREG,win_height ; row bottom (0-239) | |
| 79 | 548 movlw .110 |
| 123 | 549 movff WREG,win_leftx2 ; column left (0-159) |
| 550 movlw .148-.110+1 | |
| 551 movff WREG,win_width ; column right (0-159) | |
| 79 | 552 |
| 553 call PLED_box | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
554 retlw -1 ; wp already done. Skip it... |
| 79 | 555 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
556 cf_type_00: ; 8bit mode. Or unrecognized type... |
| 79 | 557 clrf hi |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
558 bsf leftbind |
| 79 | 559 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
560 cf_type_neg: ; 15bit mode. |
| 79 | 561 bcf hi,7 |
| 562 output_16 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
563 retlw 0 |
| 84 | 564 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
565 ;----------------------------------------------------------------------------- |
| 84 | 566 |
| 567 cf_fill_line: ; Mattias: No flicker if u clear just what you need... | |
| 568 movf FSR2L,W ; How many chars lefts ? | |
| 164 | 569 sublw letter + .18 ; Remaining chars to fill: (letter + 18) - PTR |
| 84 | 570 btfsc STATUS,N ; Add chars until none left... |
| 571 return | |
| 123 | 572 PUTC ' ' |
| 84 | 573 bra cf_fill_line |
| 79 | 574 |
| 575 ;----------------------------------------------------------------------------- | |
| 0 | 576 |
| 577 do_customfunction: | |
| 578 CLRF EEADRH | |
| 579 movlw d'1' | |
| 580 btfsc customfunction_page | |
| 581 movwf EEADRH ; Reset EEADRH correct (Was adjusted in check_timeout...) | |
| 582 | |
| 583 dcfsnz menupos,F | |
| 584 bra next_customfunction | |
| 585 dcfsnz menupos,F | |
| 586 bra toggle_plusminus | |
| 587 dcfsnz menupos,F | |
| 588 bra toggle_oneorten | |
| 589 dcfsnz menupos,F | |
| 590 bra restore_cfn_value | |
| 591 dcfsnz menupos,F | |
| 592 bra adjust_cfn_value | |
| 84 | 593 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
594 ;----------------------------------------------------------------------------- |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
595 |
| 0 | 596 exit_customfunctions: |
| 597 movlw d'2' ; Return to correct list entry | |
| 598 btfss customfunction_page | |
| 599 movlw d'1' | |
| 600 movwf menupos ; | |
| 601 clrf EEADRH ; Clear EEADRH ! | |
| 602 goto setup_menu2 ; exit... | |
| 603 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
604 ;----------------------------------------------------------------------------- |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
605 |
| 0 | 606 next_customfunction: |
| 607 incf decodata+0 | |
| 608 btfsc decodata+0,5 ;>31? | |
| 609 clrf decodata+0 ;Yes, so reset to zero | |
| 610 | |
| 611 movf decodata+0,W | |
| 612 mullw d'4' | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
613 movff PRODL, cf32_x4 ; 12bit address for correct addressing |
| 0 | 614 |
| 615 movlw d'1' | |
| 616 movwf menupos | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
617 bra menu_custom_functions1 ; also debounces switches |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
618 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
619 ;----------------------------------------------------------------------------- |
| 0 | 620 |
| 621 toggle_plusminus: | |
| 622 btg first_FA | |
| 623 movlw d'2' | |
| 624 movwf menupos | |
| 625 bra menu_custom_functions1 ; also debounces switches | |
| 626 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
627 ;----------------------------------------------------------------------------- |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
628 |
| 0 | 629 toggle_oneorten: |
| 630 btg second_FA | |
| 631 movlw d'3' | |
| 632 movwf menupos | |
| 633 bra menu_custom_functions1 ; also debounces switches | |
| 634 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
635 ;----------------------------------------------------------------------------- |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
636 |
| 0 | 637 restore_cfn_value: |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
638 rcall cf_read_default ; hi:lo is trashed by min/max display. |
| 0 | 639 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
640 movf cf32_x4,W ; store default value |
| 0 | 641 addlw 0x82 |
| 642 movwf EEADR | |
| 643 movff lo,EEDATA | |
| 644 call write_eeprom ; Lowbyte | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
645 movf cf32_x4,W |
| 0 | 646 addlw 0x83 |
| 647 movwf EEADR | |
| 648 movff hi,EEDATA | |
| 649 call write_eeprom ; Highbyte | |
| 650 | |
| 651 movlw d'4' | |
| 652 movwf menupos | |
| 653 bra menu_custom_functions1 ; also debounces switches | |
| 654 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
655 ;----------------------------------------------------------------------------- |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
656 ; Adjust current value. |
| 0 | 657 adjust_cfn_value: |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
658 movf cf32_x4,W ; get current value |
| 0 | 659 addlw 0x82 |
| 660 movwf EEADR | |
| 661 call read_eeprom ; Lowbyte | |
| 662 movff EEDATA,lo | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
663 movf cf32_x4,W |
| 0 | 664 addlw 0x83 |
| 665 movwf EEADR | |
| 666 call read_eeprom ; Highbyte | |
| 667 movff EEDATA,hi | |
| 668 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
669 movf cf_type,W |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
670 xorlw CF_BOOL |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
671 bnz adjust_cfn_value1 |
| 0 | 672 |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
673 btg lo,0 ; Change lower bit. |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
674 bra adjust_cfn_value3 ; Store result |
| 0 | 675 |
| 676 adjust_cfn_value1: | |
| 677 movlw d'1' | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
678 btfsc second_FA ; -10? |
| 0 | 679 movlw d'10' |
| 680 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
681 btfss first_FA ; Minus? |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
682 bra adjust_cfn_value2 ; No, Plus |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
683 |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
684 subwf lo,F ; substract value |
| 0 | 685 movlw d'0' |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
686 btfsc cf_type,7 ; 8Bit value |
| 0 | 687 subwfb hi,F |
| 688 | |
| 689 movlw b'01111111' | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
690 btfsc hi,7 ; >32768? |
| 0 | 691 movwf hi |
| 692 | |
| 693 bra adjust_cfn_value3 | |
| 694 | |
| 695 adjust_cfn_value2: | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
696 addwf lo,F ; add value |
| 0 | 697 movlw d'0' |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
698 btfsc cf_type,7 ; 8Bit value? |
| 0 | 699 addwfc hi,F |
| 700 | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
701 btfsc hi,7 ; >32768? |
| 0 | 702 clrf hi |
| 703 | |
| 704 adjust_cfn_value3: | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
705 movf cf32_x4,W ; Store current value |
| 0 | 706 addlw 0x82 |
| 707 movwf EEADR | |
| 708 movff lo,EEDATA | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
709 call write_eeprom ; Lowbyte |
|
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
710 movf cf32_x4,W |
| 0 | 711 addlw 0x83 |
| 712 movwf EEADR | |
| 713 movff hi,EEDATA | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
714 call write_eeprom ; Highbyte |
| 0 | 715 movlw d'5' |
| 716 movwf menupos | |
|
86
b40a0a6284da
adding custom functions with limits (jeando)
heinrichsweikamp
parents:
84
diff
changeset
|
717 bra menu_custom_functions1 ; also debounces switches |
| 94 | 718 |
| 719 ;----------------------------------------------------------------------------- | |
| 720 ; Check all CF values that have max and min constraints. | |
| 721 ; Input: cf_checker_counter. | |
| 722 ; Output: Pop warning with the first CF number if bad. | |
| 723 ; cf_checker_counter incremented. | |
| 724 ; Trashes: TBLPTR, EEADR, PROD | |
| 100 | 725 ; |
| 726 ; Note: the trick here is to do two sweep over the 64 CF values, to make sure | |
| 727 ; they are all ok. | |
| 94 | 728 |
| 729 check_customfunctions: | |
| 100 | 730 ; Did we finished the two sweeps ? |
| 731 btfsc cf_checker_counter,7 ; Already at position 128 ? | |
| 732 return ; YES: just do nothing. | |
| 94 | 733 |
| 734 ; Setup cf32_x4 and cf page bit: | |
| 100 | 735 movf cf_checker_counter,W |
| 94 | 736 rlcf WREG ; x4 |
| 737 rlcf WREG | |
| 738 bcf customfunction_page | |
| 739 btfsc WREG,7 | |
| 100 | 740 bsf customfunction_page ; Setup CF page bit. |
| 94 | 741 andlw 4*.31 |
| 742 movwf cf32_x4 | |
| 743 | |
| 744 ; Do the check | |
| 745 rcall check_one_cf | |
| 100 | 746 iorwf WREG ; Test return value. |
| 747 bz check_failed ; 0 == FAILED. | |
| 748 | |
| 749 ; Passed: Simple loop until 128 is reached: | |
| 750 incf cf_checker_counter ; Next CF to check. | |
| 751 bra check_customfunctions ; And loop until 128 reached (ie twice) | |
| 94 | 752 |
| 100 | 753 check_failed: |
| 754 movlw .63 ; Make sure number is back to range 0..63 | |
| 755 andwf cf_checker_counter,F | |
| 756 | |
| 757 ; Went wrong: draw the warning line... | |
| 758 WIN_TOP .200 | |
| 759 WIN_LEFT .80 - (6*.7)/2 ; Center 8 chars of width 14pix. | |
| 760 WIN_FONT FT_SMALL | |
| 761 WIN_INVERT .1 ; Init new Wordprocessor | |
| 762 call PLED_warnings_color | |
| 763 | |
| 123 | 764 STRCPY " CF" |
| 100 | 765 movff cf_checker_counter,lo |
| 766 output_99x | |
| 123 | 767 STRCAT_PRINT " " |
| 94 | 768 |
| 100 | 769 ; When failed, increment counter modulo 64, to restart checks. |
| 770 incf cf_checker_counter,W | |
| 771 andlw .63 ; Modulo 64 | |
| 94 | 772 movwf cf_checker_counter |
| 773 return | |
| 774 | |
| 775 ; Check one CF value --------------------------------------------------------- | |
| 776 check_one_cf: | |
| 777 rcall cf_read_default ; Sets hi:lo, cf_type, cf_min, cf_max. | |
| 778 | |
| 100 | 779 btfsc cf_type,7 ; A 15bit type ? |
| 780 bra check_cf_check ; Then we have to check it... | |
| 781 | |
| 782 movf cf_type,W ; 8bit MIN or MAX set ? | |
| 94 | 783 andlw (CF_MIN + CF_MAX) |
| 784 bnz check_cf_check ; yes: do something. | |
| 100 | 785 retlw -1 ; no: no problem then. |
| 94 | 786 |
| 787 ; It does have bound: | |
| 788 check_cf_check: | |
| 100 | 789 movf cf_checker_counter,W ; Get current CF number |
| 790 andlw .63 ; Keep range 0..63 | |
| 94 | 791 |
| 792 btfss cf_type,7 ; 15 or 8 bit value ? | |
| 793 bra cf_check_8bit | |
| 794 | |
| 99 | 795 ; Implement the 15bit check, even if not displayed... |
| 167 | 796 rcall getcustom15 ; Read into hi:lo |
| 94 | 797 |
| 798 movf cf_min,W ; Compute (bound-value) -> hi:lo | |
| 799 subwf lo,F | |
| 800 movf cf_max,W | |
| 100 | 801 bcf WREG,7 ; Clear min/max bit |
| 94 | 802 subwfb hi,F |
| 803 | |
| 804 movf lo,W ; Is it a 0 result ? | |
| 805 iorwf hi,W | |
| 806 bnz cf_15_not_equal ; NO: check sign. | |
| 807 retlw -1 ; YES: then it is ok. | |
| 808 | |
| 809 cf_15_not_equal: | |
| 99 | 810 btfss cf_max,7 ; Checking min or max ? |
| 94 | 811 btg hi,6 ; exchange wanted sign |
| 812 | |
| 813 btfss hi,6 ; Is sign correct ? | |
| 100 | 814 retlw 0 ; NO: return failed. |
| 815 retlw -1 ; YES: return passed. | |
| 94 | 816 |
| 817 ; Do a 8bit check | |
| 818 cf_check_8bit: | |
| 819 rcall getcustom8_1 ; Read into WREG | |
| 820 movwf lo ; Save it. | |
| 821 | |
| 822 btfss cf_type,CF_MIN_BIT | |
| 823 bra check_no_min | |
| 824 | |
| 825 cpfsgt cf_min ; Compare to cf_min | |
| 100 | 826 bra check_no_min ; PASSED: continue. |
| 827 retlw 0 ; NO: return failed. | |
| 94 | 828 |
| 829 check_no_min: | |
| 100 | 830 btfss cf_type,CF_MAX_BIT ; Is there a MAX bound ? |
| 831 retlw -1 ; No check: return OK. | |
| 94 | 832 |
| 833 movf lo,W ; Compute value-max | |
| 834 cpfslt cf_max | |
| 100 | 835 retlw -1 ; Bound met: return OK. |
| 836 retlw 0 ; NO: return failed. |
