annotate src/tft.asm @ 436:95ee78f4a974

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