Mercurial > public > hwos_code
annotate src/tft.asm @ 366:0052a7a654b9
tft timings
author | heinrichsweikamp |
---|---|
date | Sat, 15 Aug 2015 09:25:17 +0200 |
parents | 9a1c275077b0 |
children | 67e631aa5b8c |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File tft.asm | |
4 ; | |
5 ; Managing the TFT screen | |
6 ; | |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-05-24 : [jDG] Cleanups from initial Matthias code. | |
11 | |
275 | 12 #include "hwos.inc" |
0 | 13 #include "wait.inc" |
14 #include "varargs.inc" | |
15 #include "external_flash.inc" | |
16 #include "tft_outputs.inc" | |
17 #include "eeprom_rs232.inc" | |
18 | |
19 ;============================================================================= | |
20 ; TFT_frame needs to backup coordinates. | |
21 CBLOCK tmp | |
22 save_top | |
23 save_height | |
24 save_left | |
25 save_width | |
26 ds_line ; Current line (0..239). | |
27 ds_column ; Current columnx2 (0..159) | |
28 ds_pixel:2 ; Current pixel color. | |
29 ds_count ; Repetition count. | |
30 ENDC | |
31 | |
32 ;============================================================================= | |
33 ; Basic bit-level macros | |
34 | |
35 RD_H macro | |
36 bsf tft_rd,0 | |
37 endm | |
38 | |
39 RD_L macro | |
40 bcf tft_rd,0 | |
41 endm | |
42 | |
43 RS_H macro | |
44 bsf tft_rs,0 | |
45 endm | |
46 | |
47 RS_L macro | |
48 bcf tft_rs,0 | |
49 endm | |
50 | |
51 NCS_H macro | |
52 bsf tft_cs,0 | |
53 endm | |
54 | |
55 NCS_L macro | |
56 bcf tft_cs,0 | |
57 endm | |
58 | |
59 WR_H macro | |
60 bsf tft_nwr,0 | |
61 endm | |
62 | |
63 WR_L macro | |
64 bcf tft_nwr,0 | |
65 endm | |
66 | |
67 ;============================================================================= | |
68 ; Byte-leve macros | |
69 ; | |
70 Index_out macro low_b | |
71 movlw low_b | |
72 rcall TFT_CmdWrite | |
73 endm | |
74 | |
75 Parameter_out macro high_b, low_b | |
76 movlw high_b | |
77 movwf PORTA ; Upper | |
78 movlw low_b | |
79 rcall TFT_DataWrite | |
80 endm | |
81 | |
82 | |
83 basic CODE | |
151 | 84 ; |
85 ; | |
86 ;;============================================================================= | |
87 ;; TFT_write_flash_image | |
88 ;; | |
89 ;; Inputs: FSR2 = EEPROM address / 256 | |
90 ;; win_left, win_top : imagte CENTER position | |
91 ;; Outputs: win_height, win_width. | |
92 ;; image copyed on screen. | |
93 ;; Trashed: PROD, hi, lo | |
94 ;; | |
95 ; global TFT_write_flash_image | |
96 ;TFT_write_flash_image: | |
97 ; ; Get back the full 24bit EEPROM address | |
98 ; clrf ext_flash_address+0 | |
99 ; movff FSR2L,ext_flash_address+1 | |
100 ; movf FSR2H,W | |
101 ; iorlw 0x30 | |
102 ; movwf ext_flash_address+2 | |
103 ; | |
104 ; ; Read header: width and height | |
105 ; global TFT_write_flash_image_addr | |
106 ;TFT_write_flash_image_addr: | |
107 ; call ext_flash_read_block_start | |
108 ; movff SSP2BUF,win_width+0 | |
109 ; movwf SSP2BUF ; Write to buffer to initiate new read | |
110 ; btfss SSP2STAT, BF ; Next byte ready ? | |
111 ; bra $-2 ; NO: wait... | |
112 ; movff SSP2BUF,win_width+1 | |
113 ; movwf SSP2BUF ; Write to buffer to initiate new read | |
114 ; btfss SSP2STAT, BF ; Next byte ready ? | |
115 ; bra $-2 ; NO: wait... | |
116 ; movff SSP2BUF,win_height | |
117 ; movwf SSP2BUF ; Write to buffer to initiate new read | |
118 ; btfss SSP2STAT, BF ; Next byte ready ? | |
119 ; bra $-2 ; NO: wait... | |
120 ; movff SSP2BUF,WREG ; drop 4th byte. | |
121 ; movwf SSP2BUF ; Write to buffer to initiate new read | |
122 ; btfss SSP2STAT, BF ; Next byte ready ? | |
123 ; bra $-2 ; NO: wait... | |
124 ; | |
125 ; ; Sanity check on header to avoid badly uploaded images. | |
126 ; iorwf WREG ; Check height < 256 | |
127 ; bnz TFT_write_flash_image_failed | |
128 ; movf win_width+1,W ; Check width < 512 | |
129 ; andlw 0xFE | |
130 ; bnz TFT_write_flash_image_failed | |
131 ; | |
132 ; ; Center image on win_top, win_left values | |
133 ; bcf STATUS,C ; Clear carry | |
134 ; rrcf win_height,W ; And get height/2 | |
135 ; subwf win_top,F ; top -= height/2 | |
136 ; rrcf win_width+1,W ; Get 9th bit into carry | |
137 ; rrcf win_width+0,W ; Get width/2 (in 0..320 range) | |
138 ; bcf STATUS,C | |
139 ; rrcf WREG,W ; Get width/2 in 0..160 range | |
140 ; subwf win_leftx2,F ; left -= width/2 | |
141 ; | |
142 ; rcall TFT_box_write ; Inputs : win_top, win_leftx2, win_height, win_width(in 1..320 range) | |
0 | 143 ; |
151 | 144 ; ; Compute number of pixels to move (result on 17 bits !) |
145 ; clrf TBLPTRU | |
146 ; movf win_width+0,W | |
147 ; mulwf win_height ; Result in PRODL:H | |
148 ; movf win_width+1,W | |
149 ; bz TFT_write_flash_image_1 ; width > 8bits ? | |
150 ; movf win_height,W ; YES: add extra | |
151 ; addwf PRODH,F | |
152 ; rlcf TBLPTRU ; And carry into upper register. | |
153 ;TFT_write_flash_image_1: | |
154 ; incf PRODH,F ; Pre-condition nested loops | |
155 ; incf TBLPTRU,F | |
156 ; | |
157 ; ; Write pixels | |
158 ; Index_out 0x22 ; Frame Memory Data Write start | |
159 ; RS_H ; Data | |
160 ; | |
161 ;TFT_write_flash_image_loop: | |
162 ; btfss SSP2STAT, BF ; Buffer full? | |
163 ; bra $-2 ; NO: wait... | |
164 ; movff SSP2BUF,PORTH ; Read lo | |
165 ; movwf SSP2BUF ; Write to buffer to initiate new read | |
166 ; | |
167 ; btfss SSP2STAT, BF ; Buffer full? | |
168 ; bra $-2 ; NO: wait... | |
169 ; movff SSP2BUF,PORTA ; And read hi | |
170 ; movwf SSP2BUF ; Write to buffer to initiate new read | |
171 ; WR_L | |
172 ; WR_H ; Write 1 Pixel | |
173 ; | |
174 ; decfsz PRODL,F | |
175 ; bra TFT_write_flash_image_loop | |
176 ; decfsz PRODH,F | |
177 ; bra TFT_write_flash_image_loop | |
178 ; decfsz TBLPTRU,F | |
179 ; bra TFT_write_flash_image_loop | |
180 ; | |
181 ; btfss SSP2STAT, BF ; Buffer full? | |
182 ; bra $-2 ; No, wait | |
183 ; movf SSP2BUF,W ; Read dummy byte | |
184 ; | |
185 ; bsf flash_ncs ; CS=1 | |
186 ; movlw 0x00 ; NOP, to stop window mode | |
187 ; bra TFT_CmdWrite ; This routine "returns" | |
188 ; | |
189 ; ;---- Draw a 4x4 red square in place of missing images... | |
190 ;TFT_write_flash_image_failed: | |
191 ; movlw -1 | |
192 ; addwf win_leftx2,F | |
193 ; movlw -2 | |
194 ; addwf win_top,F | |
195 ; movlw 2 | |
196 ; movwf win_width+0 | |
197 ; clrf win_width+1 | |
198 ; movlw 4 | |
199 ; movwf win_height | |
200 ; movlw color_red | |
201 ; rcall TFT_set_color | |
202 ; goto TFT_box | |
203 ; | |
204 ;;============================================================================= | |
0 | 205 ; |
206 | |
207 global TFT_CmdWrite | |
208 TFT_CmdWrite: | |
209 RS_L ; Command | |
210 clrf PORTA ; Upper | |
211 movwf PORTH ; Lower | |
212 WR_L | |
213 WR_H ; Tick | |
214 return; | |
215 | |
216 global TFT_DataWrite | |
217 TFT_DataWrite: | |
218 RS_H ; Data | |
219 movwf PORTH ; Lower | |
220 WR_L | |
221 WR_H ; Tick | |
222 return | |
223 | |
224 ;============================================================================= | |
225 ; | |
226 global TFT_ClearScreen | |
227 TFT_ClearScreen: | |
228 Index_out 0x50 ; Window Horizontal Start Address | |
229 Parameter_out 0x00, 0x00 ; 0-239 | |
230 Index_out 0x51 ; Window Horizontal End Address | |
231 Parameter_out 0x00, 0xEF ; 0-239 | |
232 Index_out 0x52 ; Window Vertical Start Address | |
233 Parameter_out 0x00, 0x00 ; 0-319 | |
234 Index_out 0x53 ; Window Vertical End Address | |
235 Parameter_out 0x01, 0x3F ; 0-319 | |
236 Index_out 0x20 ; Frame Memory Horizontal Address | |
237 Parameter_out 0x00, 0x00 ; 0-239 | |
238 Index_out 0x21 ; Frame Memory Vertical Address | |
239 Parameter_out 0x01, 0x3F ; 0-319 | |
240 | |
241 Index_out 0x22 ; Frame Memory Data Write start | |
242 | |
243 RD_H ; Not Read | |
244 RS_H ; Data | |
245 NCS_L ; Not CS | |
246 clrf PORTH ; Data Lower | |
247 | |
248 movlw d'10' | |
249 movwf tft_temp3 | |
250 TFT_ClearScreen2: | |
251 movlw d'30' | |
252 movwf tft_temp2 | |
253 TFT_ClearScreen3: | |
254 clrf tft_temp1 ; 30*10*256=76800 Pixels -> Clear complete 240*320 | |
255 TFT_ClearScreen4: | |
256 WR_L | |
257 WR_H ; Tick | |
258 decfsz tft_temp1,F | |
259 bra TFT_ClearScreen4 | |
260 decfsz tft_temp2,F | |
261 bra TFT_ClearScreen3 | |
262 decfsz tft_temp3,F | |
263 bra TFT_ClearScreen2 | |
264 return | |
265 | |
266 ;============================================================================= | |
267 ; | |
268 global TFT_DisplayOff | |
269 TFT_DisplayOff: | |
270 clrf CCPR1L ; PWM OFF | |
271 clrf PORTA | |
272 clrf PORTH | |
273 RD_L ; LOW | |
274 nop | |
275 RS_L ; LOW | |
276 bcf tft_nwr | |
277 nop | |
278 bcf tft_cs | |
279 nop | |
280 bcf tft_nreset | |
281 WAITMS d'1' | |
282 bsf tft_power ; inverted... | |
283 bcf lightsen_power ; power-down light sensor | |
284 return | |
285 | |
286 ; ----------------------------- | |
287 ; TFT boot | |
288 ; ----------------------------- | |
289 global TFT_boot | |
290 TFT_boot: | |
291 clrf PORTA | |
292 clrf PORTH | |
293 RD_L ; LOW | |
294 bcf tft_nwr | |
295 nop | |
296 bcf tft_cs | |
297 nop | |
298 bcf tft_nreset | |
299 WAITMS d'1' | |
300 bcf tft_power ; inverted... | |
301 WAITMS d'1' | |
302 | |
303 RD_H ; Keep high | |
304 WR_H ; | |
305 NCS_L ; Not CS | |
306 | |
307 WAITMS d'2' | |
308 bsf tft_nreset | |
309 WAITMS d'150' | |
310 bsf lightsen_power ; Supply power to light sensor | |
311 | |
312 ; Data Transfer Synchronization | |
313 Parameter_out 0x00, 0x00 | |
314 Parameter_out 0x00, 0x00 | |
315 | |
360 | 316 Index_out 0x00 |
317 rcall TFT_CmdRead_PROD ; Get ID into PRODL:PRODH | |
318 ; 5:197 -> display0 | |
361 | 319 ;37:147 -> display1 |
360 | 320 movlw .5 |
321 cpfseq PRODL ; display0? | |
322 bra TFT_boot_1 ; No | |
323 movlw .197 | |
324 cpfseq PRODH ; display0? | |
325 bra TFT_boot_1 ; No | |
312 | 326 |
0 | 327 ; Init through config table... |
328 movlw LOW display0_config_table | |
329 movwf TBLPTRL | |
330 movlw HIGH display0_config_table | |
331 movwf TBLPTRH | |
332 movlw UPPER display0_config_table | |
333 movwf TBLPTRU | |
360 | 334 bcf screen_type |
335 bra TFT_boot_com | |
336 | |
337 TFT_boot_1: | |
338 ; Init through config table... | |
363 | 339 movlw 0x74 |
360 | 340 movwf TBLPTRL |
363 | 341 movlw 0xF7 |
360 | 342 movwf TBLPTRH |
363 | 343 movlw 0x01 |
360 | 344 movwf TBLPTRU |
345 bsf screen_type | |
346 | |
347 TFT_boot_com: | |
0 | 348 rcall display0_init_loop |
349 | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
350 Index_out 0x03 |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
351 btfsc flip_screen ; 180° rotation ? |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
352 bra TFT_boot2 ; Yes |
360 | 353 |
354 btfss screen_type ; display1? | |
355 bra TFT_boot1a ; no | |
356 Parameter_out 0x10, 0x00 ; display1 | |
357 bra TFT_boot3 | |
358 TFT_boot1a: | |
359 Parameter_out 0x50, 0x20 ; display0 | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
360 bra TFT_boot3 |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
361 TFT_boot2: |
360 | 362 btfss screen_type ; display1? |
363 bra TFT_boot2a ; no | |
364 Parameter_out 0x10, 0x30 ; display1 | |
365 bra TFT_boot3 | |
366 TFT_boot2a: | |
367 Parameter_out 0x50, 0x10 ; display0 | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
368 TFT_boot3: |
0 | 369 Index_out 0x22 |
225
31088352ee32
BUGFIX: Show dives with >999mins divetime correctly
heinrichsweikamp
parents:
152
diff
changeset
|
370 rcall TFT_ClearScreen |
0 | 371 Index_out 0x07 |
312 | 372 Parameter_out 0x01, 0x33 |
0 | 373 return |
374 | |
375 display0_config_table: | |
376 ; Reg, Dat0, Dat1 or 0xFF,0x00,0x00 for end | |
377 db 0xA4,0x00,0x01,0xFF,.002,0x00 | |
378 db 0x09,0x00,0x01,0x92,0x04,0x00 | |
379 db 0x93,0x04,0x02,0x94,0x00,0x02 | |
380 db 0x07,0x00,0x00,0x10,0x04,0x30 | |
381 db 0x11,0x02,0x37,0x12,0x11,0x8D | |
382 db 0x13,0x11,0x00,0x01,0x01,0x00 | |
383 db 0x02,0x02,0x00,0x03,0x50,0x20 | |
384 db 0x0A,0x00,0x08,0x0D,0x00,0x00 | |
385 db 0x0E,0x00,0x30,0xFF,.151,0x00 | |
386 db 0x12,0x11,0xBD,0x20,0x00,0x00 | |
387 db 0x21,0x00,0x00,0x30,0x06,0x02 | |
388 db 0x31,0x56,0x0D,0x32,0x05,0x07 | |
389 db 0x33,0x06,0x09,0x34,0x00,0x00 | |
390 db 0x35,0x09,0x06,0x36,0x57,0x05 | |
391 db 0x37,0x0D,0x06,0x38,0x02,0x06 | |
392 db 0x39,0x00,0x00,0xFF,0x00,0x00 | |
393 | |
394 display0_init_loop: | |
395 TBLRD*+ | |
396 movlw 0xFF | |
397 cpfseq TABLAT | |
398 bra display0_config_write ; Write Config pair to Display | |
399 ; Delay ms or quit (return) | |
400 TBLRD*+ | |
401 tstfsz TABLAT ; End of config? | |
402 bra $+4 ; No | |
403 return ; Done. | |
404 movf TABLAT,W | |
405 call WAITMSX ; Wait WREG milliseconds | |
406 TBLRD*+ ; Dummy read (Third byte of delay command) | |
407 bra display0_init_loop ; Loop | |
408 | |
409 display0_config_write: ; With command in WREG | |
410 movf TABLAT,W | |
411 rcall TFT_CmdWrite ; Write command | |
412 TBLRD*+ ; Get config0 | |
413 movff TABLAT,PORTA | |
414 TBLRD*+ ; Get config1 | |
415 movf TABLAT,W | |
416 rcall TFT_DataWrite ; Write config | |
417 bra display0_init_loop ; Loop | |
418 | |
419 | |
420 ;============================================================================= | |
421 ; Smooth lighting-up of the display: | |
422 ; | |
423 ; Trashes: WREG, PRODL | |
424 ; Typical usage: | |
425 ; clrf CCPR1L ; Backlight off | |
426 ; [draw splash screen] | |
427 ; call TFT_DisplayFadeIn | |
428 ; | |
429 global TFT_Display_FadeIn | |
430 TFT_Display_FadeIn: | |
275 | 431 movlw CCP1CON_VALUE ; See hwos.inc |
0 | 432 movwf CCP1CON |
433 bsf tft_is_dimming ; TFT is dimming, ignore ambient sensor! | |
434 clrf CCPR1L ; Backlight off - to be sure | |
435 movff max_CCPR1L,PRODL | |
436 TFT_Display_FadeIn_0: | |
437 incf CCPR1L,F ; Duty cycle | |
438 WAITMS d'2' | |
439 decfsz PRODL,F | |
440 bra TFT_Display_FadeIn_0 | |
441 bcf tft_is_dimming ; dimming done. | |
442 return | |
443 | |
444 ;============================================================================= | |
445 ; Smooth lighting-off of the display: | |
446 ; Trashes: WREG, PRODL | |
447 global TFT_Display_FadeOut | |
448 TFT_Display_FadeOut: | |
449 movff max_CCPR1L,PRODL | |
450 bsf tft_is_dimming ; TFT is dimming, ignore ambient sensor! | |
451 TFT_Display_FadeOut_0: | |
452 movff PRODL,CCPR1L ; Duty cycle | |
453 WAITMS d'1' | |
454 decfsz PRODL,F | |
455 bra TFT_Display_FadeOut_0 | |
456 clrf CCPR1L | |
457 return | |
458 | |
459 ;============================================================================= | |
460 | |
461 global box_std_block, box_black_block, box_color_block | |
462 | |
463 box_std_block: ; Use white color | |
464 setf WREG | |
465 bra box_common | |
466 box_black_block: ; Use black color | |
467 clrf WREG | |
468 box_common: | |
469 box_color_block: | |
470 rcall TFT_set_color | |
471 VARARGS_BEGIN | |
472 VARARGS_GET8 win_top | |
473 VARARGS_GET8 win_height | |
474 VARARGS_GET8 win_leftx2 | |
475 VARARGS_GET8 win_width | |
476 VARARGS_END | |
477 bra TFT_box | |
478 | |
479 ;----------------------------------------------------------------------------- | |
480 | |
481 global box_frame_std, box_frame_common, box_frame_color, box_frame_color16 | |
482 | |
483 box_frame_std: | |
484 setf WREG | |
485 rcall TFT_set_color | |
486 | |
487 box_frame_common: | |
488 VARARGS_BEGIN | |
489 VARARGS_GET8 win_top | |
490 VARARGS_GET8 win_height | |
491 VARARGS_GET8 win_leftx2 | |
492 VARARGS_GET8 win_width | |
493 VARARGS_END | |
494 bra TFT_frame | |
495 | |
496 box_frame_color: | |
497 rcall TFT_set_color | |
498 box_frame_color16: | |
499 bra box_frame_common | |
500 | |
501 ;============================================================================= | |
502 ; Init for half_pixel_write | |
503 ; Set column register on TFT device, and current color. | |
504 ; Inputs: win_leftx2 | |
505 ; Outputs: win_color:2 | |
506 ; Trashed: WREG, PROD | |
507 global init_pixel_write | |
508 init_pixel_write: | |
509 movff win_leftx2,WREG | |
510 mullw 2 | |
511 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319) | |
512 setf WREG | |
513 bra TFT_set_color | |
514 | |
515 ;----------------------------------------------------------------------------- | |
516 ; Writes two half-pixels at position (win_top,win_leftx2) | |
517 ; Inputs: win_leftx2, win_top, win_color:2 | |
518 ; Trashed: WREG, PROD | |
519 global pixel_write | |
520 pixel_write: | |
521 movff win_leftx2,WREG | |
522 mullw 2 ; win_leftx2 x 2 -> PRODH:PRODL | |
523 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319) | |
524 rcall half_pixel_write ; Write this half-one. | |
525 | |
526 movff win_leftx2,WREG ; Address of next one | |
527 mullw 2 | |
528 infsnz PRODL ; +1 | |
529 incf PRODH | |
530 rcall pixel_write_col320 | |
531 bra half_pixel_write ; Note: Cmd 0x20 is mandatory, because | |
532 ; of the autoincrement going vertical | |
533 | |
534 global pixel_write_col320 | |
535 pixel_write_col320: | |
151 | 536 btfss flip_screen ; 180° rotation? |
537 bra pixel_write_noflip_H ; No | |
538 | |
539 movf PRODL,W ; 16bits 319 - PROD --> PROD | |
540 sublw LOW(.319) ; 319-W --> W | |
541 movwf PRODL | |
542 movf PRODH,W | |
543 btfss STATUS,C ; Borrow = /CARRY | |
544 incf WREG | |
545 sublw HIGH(.319) | |
546 movwf PRODH | |
547 | |
548 pixel_write_noflip_H: | |
0 | 549 Index_out 0x21 ; Frame Memory Vertical Address |
550 bra TFT_DataWrite_PROD | |
551 | |
552 ;----------------------------------------------------------------------------- | |
553 ; Writes one half-pixel at position (win_top,win_leftx2). | |
554 ; Inputs: win_leftx2, win_top, win_color:2 | |
555 ; Trashed: WREG, PROD | |
556 global half_pixel_write | |
557 half_pixel_write: | |
558 movff win_top,WREG ; d'0' ... d'239' | |
559 ; Variant with Y position in WREG. | |
560 half_pixel_write_1: | |
151 | 561 btfss flip_screen ; 180° rotation? |
562 sublw .239 ; 239-Y --> Y | |
563 mullw 1 ; Copy row to PRODL (PRODH=0) | |
0 | 564 |
565 Index_out 0x20 ; Frame Memory Horizontal Address | |
566 rcall TFT_DataWrite_PROD | |
567 | |
568 Index_out 0x22 ; Frame Memory Data Write start | |
569 RS_H ; Data | |
570 movff win_color1,PORTA ; Upper | |
571 movff win_color2,PORTH ; Lower | |
572 WR_L | |
573 WR_H ; Tick | |
574 return | |
575 | |
576 ;----------------------------------------------------------------------------- | |
577 ; Writes a vertical line of half-pixel at position (win_top,win_leftx2,win_height). | |
578 ; Inputs: win_leftx2, win_top, win_height, win_color:2 | |
579 ; Trashed: WREG, PROD, TABLAT, TBLPTRL | |
580 global half_vertical_line | |
581 half_vertical_line: | |
582 clrf TABLAT ; Loop index. | |
583 | |
584 half_vertical_line_loop: | |
585 movff win_leftx2,WREG ; Init X position. | |
586 mullw 2 | |
587 movf TABLAT,W ; Get loop index | |
588 andlw 1 ; Just low bit | |
589 xorwf PRODL,F ; And use it to jitter current X position | |
590 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319) | |
591 | |
592 movff win_height,WREG ; Index reached height (Bank0 read) ? | |
593 xorwf TABLAT,W | |
594 btfsc STATUS,Z ; Equals ? | |
595 return ; Yes: done. | |
596 movff win_top,WREG ; Y = top + index (Bank0 read) | |
597 addwf TABLAT,W | |
598 rcall half_pixel_write_1 | |
599 incf TABLAT,F ; index++ | |
600 bra half_vertical_line_loop | |
601 | |
602 ;----------------------------------------------------------------------------- | |
603 ; Writes a horizontal line of half-pixel at position (win_top,win_leftx2,win_width). | |
604 ; Inputs: win_leftx2, win_top, win_width, win_color:2 | |
605 ; Trashed: WREG, PROD, TABLAT, TBLPTRL | |
606 global half_horizontal_line | |
607 half_horizontal_line: | |
608 clrf TABLAT ; Loop index. | |
609 | |
610 half_horizontal_line_loop: | |
611 movff win_leftx2,WREG ; Init X position. | |
612 mullw 2 | |
613 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319) | |
614 movff win_width,WREG ; Index reached height (Bank0 read) ? | |
615 xorwf TABLAT,W | |
616 btfsc STATUS,Z ; Equals ? | |
617 return ; Yes: done. | |
618 movff win_top,WREG ; Y = top + index (Bank0 read) | |
619 addwf TABLAT,W | |
620 rcall half_pixel_write_1 | |
621 incf TABLAT,F ; index++ | |
622 bra half_horizontal_line_loop | |
623 | |
624 | |
625 ;----------------------------------------------------------------------------- | |
626 ; TFT Data Cmd via W | |
627 ; | |
628 global TFT_DataWrite_PROD | |
629 TFT_DataWrite_PROD: | |
630 ; RD_H ; Keep high | |
631 RS_H ; Data | |
632 movff PRODH,PORTA ; Move high byte to PORTA | |
633 movff PRODL,PORTH ; Move low byte to PORTH | |
634 WR_L | |
635 WR_H ; Tick | |
636 return | |
637 | |
638 TFT_DataRead_PROD: | |
639 Index_out 0x22 ; Frame Memory Data Read start | |
360 | 640 TFT_CmdRead_PROD: |
0 | 641 setf TRISA ; PortA as input. |
642 setf TRISH ; PortH as input. | |
643 RS_H ; Data | |
366 | 644 ; WR_H ; Not write |
0 | 645 RD_L ; Read! |
646 nop | |
647 nop | |
648 nop | |
649 RD_H ; Tick | |
650 nop | |
366 | 651 nop |
652 nop | |
0 | 653 RD_L ; Read! |
654 nop | |
366 | 655 ; nop |
656 ; nop | |
0 | 657 movff PORTA,PRODH |
658 movff PORTH,PRODL | |
659 RD_H ; Tick | |
660 nop | |
661 clrf TRISA ; PortA as output | |
662 clrf TRISH ; PortH as output | |
663 return | |
664 | |
665 | |
666 | |
667 ;============================================================================= | |
668 ; Output TFT Window Address commands. | |
669 ; Inputs : win_top, win_leftx2, win_height, win_width. | |
670 ; Output : PortA/PortH commands. | |
671 ; Trashed: PROD | |
672 ; | |
673 global TFT_box_write | |
674 TFT_box_write: | |
675 movff win_leftx2,WREG ; Compute left = 2*leftx2 --> PROD | |
676 mullw 2 | |
677 | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
678 global TFT_box_write_16bit_win_left |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
679 TFT_box_write_16bit_win_left: ; With column in PRODL:PRODH |
361 | 680 btfsc screen_type ; display1? |
681 bra TFT_box_write_16bit_win_left_d1 ; Yes | |
682 ; Display0 | |
683 btfsc flip_screen ; 180° rotation? | |
151 | 684 bra DISP_box_flip_H ; Yes |
361 | 685 bra TFT_box_write_16bit_win_left_com ; No |
686 TFT_box_write_16bit_win_left_d1: ; Display1 | |
687 btfss flip_screen ; 180° rotation? | |
688 bra DISP_box_flip_H ; Yes | |
689 ; No | |
690 TFT_box_write_16bit_win_left_com: | |
0 | 691 ;---- Normal horizontal window --------------------------------------- |
692 Index_out 0x52 ; Window Vertical Start Address | |
693 rcall TFT_DataWrite_PROD ; Output left | |
694 Index_out 0x21 ; Frame Memory Vertical Address | |
695 rcall TFT_DataWrite_PROD ; Output left | |
696 | |
697 movff win_width+0,WREG ; right = left + width - 1 | |
698 addwf PRODL,F | |
699 movff win_width+1,WREG | |
700 addwfc PRODH,F | |
701 decf PRODL,F ; decrement result | |
702 btfss STATUS,C | |
703 decf PRODH,F | |
704 | |
705 Index_out 0x53 ; Window Vertical End Address | |
706 rcall TFT_DataWrite_PROD | |
151 | 707 bra DISP_box_noflip_H |
0 | 708 |
151 | 709 ;---- Flipped horizontal window -------------------------------------- |
710 DISP_box_flip_H: | |
711 movf PRODL,W ; 16bits 319 - PROD --> PROD | |
712 sublw LOW(.319) ; 319-W --> W | |
713 movwf PRODL | |
714 movf PRODH,W | |
715 btfss STATUS,C ; Borrow = /CARRY | |
716 incf WREG | |
717 sublw HIGH(.319) | |
718 movwf PRODH | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
719 |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
720 Index_out 0x53 ; Window Vertical Start Address |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
721 rcall TFT_DataWrite_PROD ; Output left |
151 | 722 Index_out 0x21 ; Frame Memory Vertical Address |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
723 rcall TFT_DataWrite_PROD ; Output left |
151 | 724 |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
725 movff win_width+0,WREG ; 16bits PROD - width --> PROD |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
726 subwf PRODL,F ; PRODL - WREG --> PRODL |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
727 movff win_width+1,WREG |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
728 subwfb PRODH,F |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
729 infsnz PRODL ; PROD+1 --> PROD |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
730 incf PRODH |
151 | 731 |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
732 Index_out 0x52 ; Window Vertical End Address |
151 | 733 rcall TFT_DataWrite_PROD |
734 | |
735 DISP_box_noflip_H: | |
736 btfss flip_screen ; 180° rotation ? | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
737 bra TFT_box_noflip_V ; No. |
151 | 738 |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
739 ;---- Flipped vertical window ----------------------------------------- |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
740 movff win_top,PRODH ; top --> PRODH (first byte) |
151 | 741 movff win_height,WREG |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
742 addwf PRODH,W |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
743 decf WREG |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
744 movwf PRODL ; top+height-1 --> PRODL (second byte) |
151 | 745 |
746 Index_out 0x50 ; Window Horizontal Start Address | |
747 movf PRODH,W | |
748 rcall TFT_DataWrite ; Lower (and tick) | |
749 | |
750 Index_out 0x51 ; Window Horizontal End Address | |
751 movf PRODL,W | |
752 rcall TFT_DataWrite ; Lower (and tick) | |
753 | |
754 Index_out 0x20 ; Frame Memory Horizontal Address | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
755 movf PRODH,W |
151 | 756 rcall TFT_DataWrite ; Lower (and tick) |
757 return | |
758 | |
759 | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
760 TFT_box_noflip_V: |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
151
diff
changeset
|
761 ;---- Normal vertical window ---------------------------------------- |
0 | 762 movff win_top,PRODL |
763 movff win_height,WREG | |
764 addwf PRODL,W | |
765 sublw .240 ; 240 - top - height | |
766 movwf PRODH ; First byte | |
767 | |
768 movf PRODL,W | |
151 | 769 sublw .239 ; 239-top |
0 | 770 movwf PRODL ; --> second byte. |
771 | |
772 Index_out 0x50 ; Window Horizontal Start Address | |
773 movf PRODH,W | |
774 rcall TFT_DataWrite ; Lower (and tick) | |
775 | |
776 Index_out 0x51 ; Window Horizontal End Address | |
777 movf PRODL,W | |
778 rcall TFT_DataWrite ; Lower (and tick) | |
779 | |
780 Index_out 0x20 ; Frame Memory Horizontal Address | |
781 movf PRODL,W | |
782 rcall TFT_DataWrite ; Lower (and tick) | |
783 return | |
784 | |
785 | |
786 ;============================================================================= | |
787 ; TFT_frame : draw a frame around current box with current color. | |
788 ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
789 ; Outputs: (none) | |
790 ; Trashed: WREG, PROD, aa_start:2, aa_end:2 | |
791 global TFT_frame | |
792 TFT_frame: | |
793 movff win_top,save_top ; Backup everything. | |
794 movff win_height,save_height | |
795 movff win_leftx2,save_left | |
796 movff win_width,save_width | |
797 | |
798 ;---- TOP line ----------------------------------------------------------- | |
799 movlw 1 ; row ~ height=1 | |
800 movff WREG,win_height | |
801 rcall TFT_box | |
802 | |
803 ;---- BOTTOM line -------------------------------------------------------- | |
804 movff save_top,PRODL ; Get back top, | |
805 movff save_height,WREG ; and height | |
806 addwf PRODL,W ; top+height | |
807 decf WREG ; top+height-1 | |
808 movff WREG,win_top ; top+height-1 --> top | |
809 rcall TFT_box | |
810 | |
811 ;---- LEFT column -------------------------------------------------------- | |
812 movff save_top,win_top ; Restore top/height. | |
813 movff save_height,win_height | |
814 movlw 1 ; column ~ width=1 | |
815 movff WREG,win_width | |
816 rcall TFT_box | |
817 | |
818 ;---- RIGHT column ------------------------------------------------------- | |
819 movff save_left,WREG | |
820 movff save_width,PRODL | |
821 addwf PRODL,W | |
822 decf WREG | |
823 movff WREG,win_leftx2 | |
824 rcall TFT_box | |
825 | |
826 ;---- Restore everything ------------------------------------------------- | |
827 movff save_left,win_leftx2 | |
828 movff save_width,win_width | |
829 return | |
830 | |
831 ;============================================================================= | |
832 ; TFT_box : fills current box with current color. | |
833 ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
834 ; Outputs: (none) | |
835 ; Trashed: WREG, PROD | |
836 global TFT_box | |
837 | |
838 TFT_box: | |
839 ;---- Define Window ------------------------------------------------------ | |
840 movf win_width,W | |
841 bcf STATUS,C | |
842 rlcf WREG | |
843 movwf win_width+0 | |
844 movlw 0 | |
845 rlcf WREG | |
846 movwf win_width+1 | |
83 | 847 rcall TFT_box_write ; Setup box |
0 | 848 |
83 | 849 global TFT_box_16bit_win_left |
850 TFT_box_16bit_win_left: | |
0 | 851 rrcf win_width+1,W ; width /= 2 |
852 rrcf win_width+0,W | |
853 movwf win_width | |
854 | |
855 ;---- Fill Window -------------------------------------------------------- | |
856 Index_out 0x22 ; Frame Memory Data Write start | |
857 | |
858 clrf PRODH ; Column counter. | |
859 RS_H ; Data | |
860 | |
861 TFT_box2: ; Loop height times | |
862 movff win_height,PRODL | |
863 | |
864 TFT_box3: ; loop width times | |
865 movff win_color1,PORTA ; Upper | |
866 movff win_color2,PORTH ; Lower | |
867 WR_L | |
868 WR_H ; Tick | |
869 | |
870 movff win_color1,PORTA ; Upper | |
871 movff win_color2,PORTH ; Lower | |
872 WR_L | |
873 WR_H ; Tick | |
874 | |
875 decfsz PRODL,F ; row loop finished ? | |
876 bra TFT_box3 ; No: continue. | |
877 | |
878 incf PRODH,F ; column count ++ | |
879 | |
880 movff win_bargraph,WREG ; current column == bargraph ? | |
881 cpfseq PRODH | |
882 bra TFT_box4 ; No: just loop. | |
883 | |
884 clrf WREG ; Yes: switch to black | |
885 movff WREG,win_color1 | |
886 movff WREG,win_color2 | |
887 TFT_box4: | |
888 | |
889 movff win_width+0,WREG ; compare ? | |
890 xorwf PRODH,W | |
891 bnz TFT_box2 ; Loop not finished. | |
892 | |
893 movlw 0x00 ; NOP, to stop window mode | |
894 rcall TFT_CmdWrite | |
895 | |
896 setf WREG ; Reset bargraph mode... | |
897 movff WREG,win_bargraph | |
898 | |
899 return | |
900 | |
901 ;============================================================================= | |
902 ;Converts 8Bit RGB b'RRRGGGBB' into 16Bit RGB b'RRRRRGGGGGGBBBBB' | |
903 global TFT_set_color | |
904 | |
905 TFT_set_color: | |
906 movwf tft_temp1 ; Get 8Bit RGB b'RRRGGGBB' | |
907 movwf tft_temp2 ; Copy | |
908 | |
909 ; Mask Bit 7,6,5,4,3,2 | |
910 movlw b'00000011' | |
911 andwf tft_temp2,F | |
912 | |
913 movlw b'00000000' | |
914 dcfsnz tft_temp2,F | |
915 movlw b'01010000' | |
916 dcfsnz tft_temp2,F | |
917 movlw b'10100000' | |
918 dcfsnz tft_temp2,F | |
919 movlw b'11111000' | |
920 movwf tft_temp3 ; Blue done. | |
921 | |
922 movff tft_temp1, tft_temp2 ; Copy | |
923 ; Mask Bit 7,6,5,1,0 | |
924 movlw b'00011100' | |
925 andwf tft_temp2,F | |
926 rrncf tft_temp2,F | |
927 rrncf tft_temp2,F | |
928 | |
929 movlw b'00000000' | |
930 dcfsnz tft_temp2,F | |
931 movlw b'00000100' | |
932 dcfsnz tft_temp2,F | |
933 movlw b'00001000' | |
934 dcfsnz tft_temp2,F | |
935 movlw b'00001100' | |
936 dcfsnz tft_temp2,F | |
937 movlw b'00010000' | |
938 dcfsnz tft_temp2,F | |
939 movlw b'00010100' | |
940 dcfsnz tft_temp2,F | |
941 movlw b'00100000' | |
942 dcfsnz tft_temp2,F | |
943 movlw b'00111111' | |
944 movwf tft_temp4 | |
945 | |
946 rrcf tft_temp4,F | |
947 rrcf tft_temp3,F | |
948 | |
949 rrcf tft_temp4,F | |
950 rrcf tft_temp3,F | |
951 | |
952 rrcf tft_temp4,F | |
953 rrcf tft_temp3,F ; tft_temp3 (b'GGGBBBBB') done. | |
954 | |
955 movff tft_temp1, tft_temp2 ; Copy | |
956 clrf tft_temp1 | |
957 | |
958 rrcf tft_temp4,F | |
959 rrcf tft_temp1,F | |
960 | |
961 rrcf tft_temp4,F | |
962 rrcf tft_temp1,F | |
963 | |
964 rrcf tft_temp4,F | |
965 rrcf tft_temp1,F ; Green done. | |
966 | |
967 ; Mask Bit 4,3,2,1,0 | |
968 movlw b'11100000' | |
969 andwf tft_temp2,F | |
970 | |
971 rrncf tft_temp2,F | |
972 rrncf tft_temp2,F | |
973 rrncf tft_temp2,F | |
974 rrncf tft_temp2,F | |
975 rrncf tft_temp2,F | |
976 | |
977 movlw b'00000000' | |
978 dcfsnz tft_temp2,F | |
979 movlw b'00000100' | |
980 dcfsnz tft_temp2,F | |
981 movlw b'00001000' | |
982 dcfsnz tft_temp2,F | |
983 movlw b'00001100' | |
984 dcfsnz tft_temp2,F | |
985 movlw b'00010000' | |
986 dcfsnz tft_temp2,F | |
987 movlw b'00010100' | |
988 dcfsnz tft_temp2,F | |
989 movlw b'00100000' | |
990 dcfsnz tft_temp2,F | |
991 movlw b'00111111' | |
992 movwf tft_temp4 | |
993 | |
994 rrcf tft_temp4,F | |
995 rrcf tft_temp1,F | |
996 | |
997 rrcf tft_temp4,F | |
998 rrcf tft_temp1,F | |
999 | |
1000 rrcf tft_temp4,F | |
1001 rrcf tft_temp1,F | |
1002 | |
1003 rrcf tft_temp4,F | |
1004 rrcf tft_temp1,F | |
1005 | |
1006 rrcf tft_temp4,F | |
1007 rrcf tft_temp1,F ; Red done. | |
1008 | |
1009 movff tft_temp1,win_color1 | |
1010 movff tft_temp3,win_color2 ; Set Bank0 Color registers... | |
1011 return | |
1012 | |
1013 ;============================================================================= | |
1014 ; Dump screen contents to the UART | |
1015 | |
1016 global TFT_dump_screen | |
1017 TFT_dump_screen: | |
1018 bsf no_sensor_int | |
1019 movlw 'l' | |
1020 movwf TXREG ; Send command echo. | |
1021 call rs232_wait_tx ; wait for UART | |
1022 ;---- Send DISPLAY box command for the full screen window ------------------- | |
1023 Index_out 0x50 ; Window Horizontal Start Address | |
1024 Parameter_out 0x00, 0x00 ; 0-239 | |
1025 Index_out 0x51 ; Window Horizontal End Address | |
1026 Parameter_out 0x00, 0xEF ; 0-239 | |
1027 Index_out 0x52 ; Window Vertical Start Address | |
1028 Parameter_out 0x00, 0x00 ; 0-319 | |
1029 Index_out 0x53 ; Window Vertical End Address | |
1030 Parameter_out 0x01, 0x3F ; 0-319 | |
1031 | |
1032 clrf ds_column | |
1033 rcall dump_screen_pixel_reset | |
1034 dump_screen_1: | |
1035 btg LEDr ; LED activity toggle | |
1036 ; Dump even column | |
1037 movlw .240 ; 240 lines, once. | |
1038 movwf ds_line | |
1039 dump_screen_2: | |
1040 Index_out 0x20 ; Frame Memory Horizontal Address | |
1041 movff ds_line,WREG ; d'0' ... d'239' | |
1042 mullw 1 ; Copy row to PRODH:L | |
1043 rcall TFT_DataWrite_PROD | |
1044 | |
1045 movff ds_column,WREG ; Init X position. | |
1046 mullw 2 | |
1047 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319) | |
1048 | |
1049 rcall TFT_DataRead_PROD ; read pixel | |
1050 rcall dump_screen_pixel | |
1051 | |
1052 decfsz ds_line,F | |
1053 bra dump_screen_2 | |
1054 rcall dump_screen_pixel_flush | |
1055 | |
1056 ; Dump odd column | |
1057 movlw .240 ; 240 lines, twice. | |
1058 movwf ds_line | |
1059 dump_screen_3: | |
1060 Index_out 0x20 ; Frame Memory Horizontal Address | |
1061 movff ds_line,WREG ; d'0' ... d'239' | |
1062 mullw 1 ; Copy row to PRODH:L | |
1063 rcall TFT_DataWrite_PROD | |
1064 | |
1065 movff ds_column,WREG ; Init X position. | |
1066 mullw 2 | |
1067 movlw .1 | |
1068 addwf PRODL,F | |
1069 movlw 0 | |
1070 addwfc PRODH,F ; +1 | |
1071 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319) | |
1072 | |
1073 rcall TFT_DataRead_PROD ; read pixel | |
1074 rcall dump_screen_pixel | |
1075 | |
1076 decfsz ds_line,F | |
1077 bra dump_screen_3 | |
1078 rcall dump_screen_pixel_flush | |
1079 | |
1080 incf ds_column,F | |
1081 movlw .160 | |
1082 cpfseq ds_column | |
1083 bra dump_screen_1 | |
1084 | |
1085 bcf no_sensor_int | |
1086 clrf RCREG1 ; Clear receive buffer | |
1087 bcf RCSTA1,CREN ; Clear receiver status | |
1088 bsf RCSTA1,CREN | |
1089 bsf enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump) | |
1090 return | |
1091 | |
1092 | |
1093 ;============================================================================= | |
1094 ; Pixel compression | |
1095 ; | |
1096 ; Input: PRODH:L = pixel. | |
1097 ; Output: Compressed stream on output. | |
1098 ; Compressed format: | |
1099 ; 0ccccccc : BLACK pixel, repeated ccccccc+1 times (1..128). | |
1100 ; 11cccccc : WHITE pixel, repeated cccccc+1 times (1..64). | |
1101 ; 10cccccc HIGH LOW : color pixel (H:L) repeated ccccc+1 times (1..64). | |
1102 ; | |
1103 dump_screen_pixel: | |
1104 movf PRODH,W ; Compare pixel-high | |
1105 xorwf ds_pixel+1,W | |
1106 bnz dump_screen_pixel_1 ; Different -> dump. | |
1107 | |
1108 movf PRODL,W ; Compare pixel-low | |
1109 xorwf ds_pixel+0,W | |
1110 bnz dump_screen_pixel_1 ; Different -> dump. | |
1111 | |
1112 incf ds_count,F ; Same color: just increment. | |
1113 return | |
1114 | |
1115 dump_screen_pixel_1: ; Send (pixel,count) tuple | |
1116 movf ds_count,W ; Is count zero ? | |
1117 bz dump_screen_pixel_2 ; Yes: skip sending. | |
1118 | |
1119 movf ds_pixel+1,W ; This is a BLACK pixel ? | |
1120 iorwf ds_pixel+0,W | |
1121 bz dump_screen_pix_black ; YES. | |
1122 | |
1123 movf ds_pixel+1,W ; This is a white pixel ? | |
1124 andwf ds_pixel+0,W | |
1125 incf WREG | |
1126 bz dump_screen_pix_white ; YES. | |
1127 | |
1128 ; No: write the pixel itself... | |
1129 movlw .64 ; Max color pixel on a single byte. | |
1130 cpfsgt ds_count ; Skip if count > 64 | |
1131 movf ds_count,W ; W <- min(64,count) | |
1132 subwf ds_count,F ; ds_count <- ds_count-W | |
1133 decf WREG ; Save as 0..63 | |
1134 iorlw b'10000000' ; MARK as a color pixel. | |
1135 | |
1136 movwf TXREG | |
1137 call rs232_wait_tx ; wait for UART | |
1138 movff ds_pixel+1,TXREG | |
1139 call rs232_wait_tx ; wait for UART | |
1140 movff ds_pixel+0,TXREG | |
1141 call rs232_wait_tx ; wait for UART | |
1142 bra dump_screen_pixel_1 | |
1143 | |
1144 dump_screen_pixel_2: | |
1145 movff PRODH,ds_pixel+1 ; Save new pixel color | |
1146 movff PRODL,ds_pixel+0 | |
1147 movlw 1 | |
1148 movwf ds_count ; And set count=1. | |
1149 return | |
1150 | |
1151 dump_screen_pix_black: | |
1152 movlw .128 ; Max black pixel on a single byte. | |
1153 cpfsgt ds_count ; Skip if count > 128 | |
1154 movf ds_count,W ; W <- min(128,count) | |
1155 subwf ds_count,F ; ds_count <- ds_count-W | |
1156 decf WREG ; Save as 0..127 | |
1157 dump_screen_pix_3: | |
1158 movwf TXREG | |
1159 call rs232_wait_tx | |
1160 bra dump_screen_pixel_1 ; More to dump ? | |
1161 | |
1162 dump_screen_pix_white: | |
1163 movlw .64 ; Max white pixel on a single byte. | |
1164 cpfsgt ds_count ; Skip if count > 64 | |
1165 movf ds_count,W ; W <- min(64,count) | |
1166 subwf ds_count,F ; ds_count <- ds_count-W | |
1167 decf WREG ; Save as 0..63 | |
1168 iorlw b'11000000' ; MARK as a compressed white. | |
1169 bra dump_screen_pix_3 | |
1170 | |
1171 dump_screen_pixel_flush: | |
1172 clrf PRODH | |
1173 clrf PRODL | |
1174 rcall dump_screen_pixel_1 ; Send it | |
1175 dump_screen_pixel_reset: | |
1176 clrf ds_count ; But clear count. | |
1177 return | |
1178 | |
1179 end |