annotate src/tft.asm @ 486:1c35fc2e0834

2.15 start...
author heinrichsweikamp
date Mon, 20 Feb 2017 15:51:51 +0100
parents 4927ba3bd3b5
children b455b31ce022
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
461
4927ba3bd3b5 repeated init (For screen 2 issues)
heinrichsweikamp
parents: 441
diff changeset
318 WAITMS d'5'
4927ba3bd3b5 repeated init (For screen 2 issues)
heinrichsweikamp
parents: 441
diff changeset
319 bcf tft_nreset
4927ba3bd3b5 repeated init (For screen 2 issues)
heinrichsweikamp
parents: 441
diff changeset
320 WAITMS d'5'
4927ba3bd3b5 repeated init (For screen 2 issues)
heinrichsweikamp
parents: 441
diff changeset
321 bsf tft_nreset
0
heinrichsweikamp
parents:
diff changeset
322 WAITMS d'150'
heinrichsweikamp
parents:
diff changeset
323 bsf lightsen_power ; Supply power to light sensor
heinrichsweikamp
parents:
diff changeset
324
heinrichsweikamp
parents:
diff changeset
325 ; Data Transfer Synchronization
heinrichsweikamp
parents:
diff changeset
326 Parameter_out 0x00, 0x00
heinrichsweikamp
parents:
diff changeset
327 Parameter_out 0x00, 0x00
441
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
328
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
329 ; Get screentype from Bootloader-Info
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
330 movlw 0x7B
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
331 movwf TBLPTRL
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
332 movlw 0xF7
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
333 movwf TBLPTRH
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
334 movlw 0x01
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
335 movwf TBLPTRU
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
336 TBLRD*+ ; Reads .110 for cR and USB OSTC3, .0 for BLE (2 and 3), and .2 for display1 OSTC
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
337 movlw 0x02
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
338 cpfseq TABLAT
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
339 bra TFT_boot_0 ; Display0
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
340
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
341 TFT_boot_1:
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
342 ; Init through config table...
363
9a1c275077b0 cleanup
heinrichsweikamp
parents: 361
diff changeset
343 movlw 0x74
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
344 movwf TBLPTRL
363
9a1c275077b0 cleanup
heinrichsweikamp
parents: 361
diff changeset
345 movlw 0xF7
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
346 movwf TBLPTRH
363
9a1c275077b0 cleanup
heinrichsweikamp
parents: 361
diff changeset
347 movlw 0x01
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
348 movwf TBLPTRU
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
349 bsf screen_type
441
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
350 bra TFT_boot_com
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
351
441
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
352 TFT_boot_0:
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
353 ; Init through config table...
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
354 movlw LOW display0_config_table
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
355 movwf TBLPTRL
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
356 movlw HIGH display0_config_table
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
357 movwf TBLPTRH
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
358 movlw UPPER display0_config_table
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
359 movwf TBLPTRU
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
360 bcf screen_type
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
361
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
362 TFT_boot_com:
0
heinrichsweikamp
parents:
diff changeset
363 rcall display0_init_loop
heinrichsweikamp
parents:
diff changeset
364
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
365 Index_out 0x03
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
366 btfsc flip_screen ; 180° rotation ?
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
367 bra TFT_boot2 ; Yes
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
368
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
369 btfss screen_type ; display1?
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
370 bra TFT_boot1a ; no
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
371 Parameter_out 0x10, 0x00 ; display1
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
372 bra TFT_boot3
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
373 TFT_boot1a:
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
374 Parameter_out 0x50, 0x20 ; display0
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
375 bra TFT_boot3
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
376 TFT_boot2:
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
377 btfss screen_type ; display1?
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
378 bra TFT_boot2a ; no
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
379 Parameter_out 0x10, 0x30 ; display1
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
380 bra TFT_boot3
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
381 TFT_boot2a:
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
382 Parameter_out 0x50, 0x10 ; display0
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
383 TFT_boot3:
0
heinrichsweikamp
parents:
diff changeset
384 Index_out 0x22
225
31088352ee32 BUGFIX: Show dives with >999mins divetime correctly
heinrichsweikamp
parents: 152
diff changeset
385 rcall TFT_ClearScreen
0
heinrichsweikamp
parents:
diff changeset
386 Index_out 0x07
312
b2f6a4b01e64 Config table for alternative display
heinrichsweikamp
parents: 275
diff changeset
387 Parameter_out 0x01, 0x33
0
heinrichsweikamp
parents:
diff changeset
388 return
heinrichsweikamp
parents:
diff changeset
389
heinrichsweikamp
parents:
diff changeset
390 display0_config_table:
heinrichsweikamp
parents:
diff changeset
391 ; Reg, Dat0, Dat1 or 0xFF,0x00,0x00 for end
heinrichsweikamp
parents:
diff changeset
392 db 0xA4,0x00,0x01,0xFF,.002,0x00
heinrichsweikamp
parents:
diff changeset
393 db 0x09,0x00,0x01,0x92,0x04,0x00
heinrichsweikamp
parents:
diff changeset
394 db 0x93,0x04,0x02,0x94,0x00,0x02
heinrichsweikamp
parents:
diff changeset
395 db 0x07,0x00,0x00,0x10,0x04,0x30
heinrichsweikamp
parents:
diff changeset
396 db 0x11,0x02,0x37,0x12,0x11,0x8D
heinrichsweikamp
parents:
diff changeset
397 db 0x13,0x11,0x00,0x01,0x01,0x00
heinrichsweikamp
parents:
diff changeset
398 db 0x02,0x02,0x00,0x03,0x50,0x20
heinrichsweikamp
parents:
diff changeset
399 db 0x0A,0x00,0x08,0x0D,0x00,0x00
heinrichsweikamp
parents:
diff changeset
400 db 0x0E,0x00,0x30,0xFF,.151,0x00
heinrichsweikamp
parents:
diff changeset
401 db 0x12,0x11,0xBD,0x20,0x00,0x00
heinrichsweikamp
parents:
diff changeset
402 db 0x21,0x00,0x00,0x30,0x06,0x02
heinrichsweikamp
parents:
diff changeset
403 db 0x31,0x56,0x0D,0x32,0x05,0x07
heinrichsweikamp
parents:
diff changeset
404 db 0x33,0x06,0x09,0x34,0x00,0x00
heinrichsweikamp
parents:
diff changeset
405 db 0x35,0x09,0x06,0x36,0x57,0x05
heinrichsweikamp
parents:
diff changeset
406 db 0x37,0x0D,0x06,0x38,0x02,0x06
heinrichsweikamp
parents:
diff changeset
407 db 0x39,0x00,0x00,0xFF,0x00,0x00
heinrichsweikamp
parents:
diff changeset
408
heinrichsweikamp
parents:
diff changeset
409 display0_init_loop:
heinrichsweikamp
parents:
diff changeset
410 TBLRD*+
heinrichsweikamp
parents:
diff changeset
411 movlw 0xFF
heinrichsweikamp
parents:
diff changeset
412 cpfseq TABLAT
heinrichsweikamp
parents:
diff changeset
413 bra display0_config_write ; Write Config pair to Display
heinrichsweikamp
parents:
diff changeset
414 ; Delay ms or quit (return)
heinrichsweikamp
parents:
diff changeset
415 TBLRD*+
heinrichsweikamp
parents:
diff changeset
416 tstfsz TABLAT ; End of config?
heinrichsweikamp
parents:
diff changeset
417 bra $+4 ; No
heinrichsweikamp
parents:
diff changeset
418 return ; Done.
heinrichsweikamp
parents:
diff changeset
419 movf TABLAT,W
heinrichsweikamp
parents:
diff changeset
420 call WAITMSX ; Wait WREG milliseconds
heinrichsweikamp
parents:
diff changeset
421 TBLRD*+ ; Dummy read (Third byte of delay command)
heinrichsweikamp
parents:
diff changeset
422 bra display0_init_loop ; Loop
heinrichsweikamp
parents:
diff changeset
423
heinrichsweikamp
parents:
diff changeset
424 display0_config_write: ; With command in WREG
heinrichsweikamp
parents:
diff changeset
425 movf TABLAT,W
heinrichsweikamp
parents:
diff changeset
426 rcall TFT_CmdWrite ; Write command
heinrichsweikamp
parents:
diff changeset
427 TBLRD*+ ; Get config0
heinrichsweikamp
parents:
diff changeset
428 movff TABLAT,PORTA
heinrichsweikamp
parents:
diff changeset
429 TBLRD*+ ; Get config1
heinrichsweikamp
parents:
diff changeset
430 movf TABLAT,W
heinrichsweikamp
parents:
diff changeset
431 rcall TFT_DataWrite ; Write config
heinrichsweikamp
parents:
diff changeset
432 bra display0_init_loop ; Loop
heinrichsweikamp
parents:
diff changeset
433
heinrichsweikamp
parents:
diff changeset
434
heinrichsweikamp
parents:
diff changeset
435 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
436 ; Smooth lighting-up of the display:
heinrichsweikamp
parents:
diff changeset
437 ;
heinrichsweikamp
parents:
diff changeset
438 ; Trashes: WREG, PRODL
heinrichsweikamp
parents:
diff changeset
439 ; Typical usage:
heinrichsweikamp
parents:
diff changeset
440 ; clrf CCPR1L ; Backlight off
heinrichsweikamp
parents:
diff changeset
441 ; [draw splash screen]
heinrichsweikamp
parents:
diff changeset
442 ; call TFT_DisplayFadeIn
heinrichsweikamp
parents:
diff changeset
443 ;
heinrichsweikamp
parents:
diff changeset
444 global TFT_Display_FadeIn
heinrichsweikamp
parents:
diff changeset
445 TFT_Display_FadeIn:
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 225
diff changeset
446 movlw CCP1CON_VALUE ; See hwos.inc
0
heinrichsweikamp
parents:
diff changeset
447 movwf CCP1CON
heinrichsweikamp
parents:
diff changeset
448 bsf tft_is_dimming ; TFT is dimming, ignore ambient sensor!
heinrichsweikamp
parents:
diff changeset
449 clrf CCPR1L ; Backlight off - to be sure
heinrichsweikamp
parents:
diff changeset
450 movff max_CCPR1L,PRODL
heinrichsweikamp
parents:
diff changeset
451 TFT_Display_FadeIn_0:
heinrichsweikamp
parents:
diff changeset
452 incf CCPR1L,F ; Duty cycle
heinrichsweikamp
parents:
diff changeset
453 WAITMS d'2'
heinrichsweikamp
parents:
diff changeset
454 decfsz PRODL,F
heinrichsweikamp
parents:
diff changeset
455 bra TFT_Display_FadeIn_0
heinrichsweikamp
parents:
diff changeset
456 bcf tft_is_dimming ; dimming done.
heinrichsweikamp
parents:
diff changeset
457 return
heinrichsweikamp
parents:
diff changeset
458
heinrichsweikamp
parents:
diff changeset
459 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
460 ; Smooth lighting-off of the display:
heinrichsweikamp
parents:
diff changeset
461 ; Trashes: WREG, PRODL
heinrichsweikamp
parents:
diff changeset
462 global TFT_Display_FadeOut
heinrichsweikamp
parents:
diff changeset
463 TFT_Display_FadeOut:
heinrichsweikamp
parents:
diff changeset
464 movff max_CCPR1L,PRODL
heinrichsweikamp
parents:
diff changeset
465 bsf tft_is_dimming ; TFT is dimming, ignore ambient sensor!
heinrichsweikamp
parents:
diff changeset
466 TFT_Display_FadeOut_0:
heinrichsweikamp
parents:
diff changeset
467 movff PRODL,CCPR1L ; Duty cycle
heinrichsweikamp
parents:
diff changeset
468 WAITMS d'1'
heinrichsweikamp
parents:
diff changeset
469 decfsz PRODL,F
heinrichsweikamp
parents:
diff changeset
470 bra TFT_Display_FadeOut_0
heinrichsweikamp
parents:
diff changeset
471 clrf CCPR1L
heinrichsweikamp
parents:
diff changeset
472 return
heinrichsweikamp
parents:
diff changeset
473
heinrichsweikamp
parents:
diff changeset
474 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
475
heinrichsweikamp
parents:
diff changeset
476 global box_std_block, box_black_block, box_color_block
heinrichsweikamp
parents:
diff changeset
477
heinrichsweikamp
parents:
diff changeset
478 box_std_block: ; Use white color
heinrichsweikamp
parents:
diff changeset
479 setf WREG
heinrichsweikamp
parents:
diff changeset
480 bra box_common
heinrichsweikamp
parents:
diff changeset
481 box_black_block: ; Use black color
heinrichsweikamp
parents:
diff changeset
482 clrf WREG
heinrichsweikamp
parents:
diff changeset
483 box_common:
heinrichsweikamp
parents:
diff changeset
484 box_color_block:
heinrichsweikamp
parents:
diff changeset
485 rcall TFT_set_color
heinrichsweikamp
parents:
diff changeset
486 VARARGS_BEGIN
heinrichsweikamp
parents:
diff changeset
487 VARARGS_GET8 win_top
heinrichsweikamp
parents:
diff changeset
488 VARARGS_GET8 win_height
heinrichsweikamp
parents:
diff changeset
489 VARARGS_GET8 win_leftx2
heinrichsweikamp
parents:
diff changeset
490 VARARGS_GET8 win_width
heinrichsweikamp
parents:
diff changeset
491 VARARGS_END
heinrichsweikamp
parents:
diff changeset
492 bra TFT_box
heinrichsweikamp
parents:
diff changeset
493
heinrichsweikamp
parents:
diff changeset
494 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
495
heinrichsweikamp
parents:
diff changeset
496 global box_frame_std, box_frame_common, box_frame_color, box_frame_color16
heinrichsweikamp
parents:
diff changeset
497
heinrichsweikamp
parents:
diff changeset
498 box_frame_std:
heinrichsweikamp
parents:
diff changeset
499 setf WREG
heinrichsweikamp
parents:
diff changeset
500 rcall TFT_set_color
heinrichsweikamp
parents:
diff changeset
501
heinrichsweikamp
parents:
diff changeset
502 box_frame_common:
heinrichsweikamp
parents:
diff changeset
503 VARARGS_BEGIN
heinrichsweikamp
parents:
diff changeset
504 VARARGS_GET8 win_top
heinrichsweikamp
parents:
diff changeset
505 VARARGS_GET8 win_height
heinrichsweikamp
parents:
diff changeset
506 VARARGS_GET8 win_leftx2
heinrichsweikamp
parents:
diff changeset
507 VARARGS_GET8 win_width
heinrichsweikamp
parents:
diff changeset
508 VARARGS_END
heinrichsweikamp
parents:
diff changeset
509 bra TFT_frame
heinrichsweikamp
parents:
diff changeset
510
heinrichsweikamp
parents:
diff changeset
511 box_frame_color:
heinrichsweikamp
parents:
diff changeset
512 rcall TFT_set_color
heinrichsweikamp
parents:
diff changeset
513 box_frame_color16:
heinrichsweikamp
parents:
diff changeset
514 bra box_frame_common
heinrichsweikamp
parents:
diff changeset
515
434
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
516 ;;=============================================================================
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
517 ;; Init for half_pixel_write
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
518 ;; Set column register on TFT device, and current color.
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
519 ;; Inputs: win_leftx2
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
520 ;; Outputs: win_color:2
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
521 ;; Trashed: WREG, PROD
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
522 ; global init_pixel_write
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
523 ;init_pixel_write:
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
524 ; movf win_leftx2,W
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
525 ; mullw 2
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
526 ; rcall pixel_write_col320 ; Start Address Vertical (.0 - .319)
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
527 ; setf WREG
a001f170a1f7 hunting a bug in the logbook (Day 3)
heinrichsweikamp
parents: 432
diff changeset
528 ; bra TFT_set_color
0
heinrichsweikamp
parents:
diff changeset
529
heinrichsweikamp
parents:
diff changeset
530 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
531 ; Writes two half-pixels at position (win_top,win_leftx2)
heinrichsweikamp
parents:
diff changeset
532 ; Inputs: win_leftx2, win_top, win_color:2
heinrichsweikamp
parents:
diff changeset
533 ; Trashed: WREG, PROD
heinrichsweikamp
parents:
diff changeset
534 global pixel_write
heinrichsweikamp
parents:
diff changeset
535 pixel_write:
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
536 movf win_leftx2,W
0
heinrichsweikamp
parents:
diff changeset
537 mullw 2 ; win_leftx2 x 2 -> PRODH:PRODL
heinrichsweikamp
parents:
diff changeset
538 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319)
heinrichsweikamp
parents:
diff changeset
539 rcall half_pixel_write ; Write this half-one.
heinrichsweikamp
parents:
diff changeset
540
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
541 movf win_leftx2,W ; Address of next one
0
heinrichsweikamp
parents:
diff changeset
542 mullw 2
heinrichsweikamp
parents:
diff changeset
543 infsnz PRODL ; +1
heinrichsweikamp
parents:
diff changeset
544 incf PRODH
heinrichsweikamp
parents:
diff changeset
545 rcall pixel_write_col320
heinrichsweikamp
parents:
diff changeset
546 bra half_pixel_write ; Note: Cmd 0x20 is mandatory, because
heinrichsweikamp
parents:
diff changeset
547 ; of the autoincrement going vertical
heinrichsweikamp
parents:
diff changeset
548
heinrichsweikamp
parents:
diff changeset
549 global pixel_write_col320
heinrichsweikamp
parents:
diff changeset
550 pixel_write_col320:
371
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
551 btfsc screen_type ; display1?
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
552 bra pixel_write_col320_d1 ; Yes
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
553 ; Display0
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
554 btfss flip_screen ; 180° rotation?
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
555 bra pixel_write_noflip_H ; No
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
556 bra pixel_write_flip_H ; Yes
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
557 pixel_write_col320_d1: ; Display1
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
558 btfsc flip_screen ; 180° rotation?
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
559 bra pixel_write_noflip_H ; Yes for d1
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
560 pixel_write_flip_H: ; Flip d0
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
561 movf PRODL,W ; 16bits 319 - PROD --> PROD
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
562 sublw LOW(.319) ; 319-W --> W
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
563 movwf PRODL
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
564 movf PRODH,W
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
565 btfss STATUS,C ; Borrow = /CARRY
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
566 incf WREG
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
567 sublw HIGH(.319)
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
568 movwf PRODH
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
569
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
570 pixel_write_noflip_H:
0
heinrichsweikamp
parents:
diff changeset
571 Index_out 0x21 ; Frame Memory Vertical Address
371
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
572 bra TFT_DataWrite_PROD ; and return...
0
heinrichsweikamp
parents:
diff changeset
573
heinrichsweikamp
parents:
diff changeset
574 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
575 ; Writes one half-pixel at position (win_top,win_leftx2).
heinrichsweikamp
parents:
diff changeset
576 ; Inputs: win_leftx2, win_top, win_color:2
heinrichsweikamp
parents:
diff changeset
577 ; Trashed: WREG, PROD
heinrichsweikamp
parents:
diff changeset
578 global half_pixel_write
heinrichsweikamp
parents:
diff changeset
579 half_pixel_write:
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
580 movf win_top,W ; d'0' ... d'239'
0
heinrichsweikamp
parents:
diff changeset
581 ; Variant with Y position in WREG.
heinrichsweikamp
parents:
diff changeset
582 half_pixel_write_1:
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
583 btfss flip_screen ; 180° rotation?
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
584 sublw .239 ; 239-Y --> Y
371
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
585 mullw 1 ; Copy row to PRODL (PRODH=0)
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
586 Index_out 0x20 ; Frame Memory Horizontal Address
0
heinrichsweikamp
parents:
diff changeset
587 rcall TFT_DataWrite_PROD
heinrichsweikamp
parents:
diff changeset
588
371
fec5eec4c8b7 fix some display issues with display1
heinrichsweikamp
parents: 370
diff changeset
589 Index_out 0x22 ; Frame Memory Data Write start
0
heinrichsweikamp
parents:
diff changeset
590 RS_H ; Data
436
95ee78f4a974 no screen reboot after logbook exit
heinrichsweikamp
parents: 434
diff changeset
591 bcf INTCON,GIE
0
heinrichsweikamp
parents:
diff changeset
592 movff win_color1,PORTA ; Upper
heinrichsweikamp
parents:
diff changeset
593 movff win_color2,PORTH ; Lower
heinrichsweikamp
parents:
diff changeset
594 WR_L
heinrichsweikamp
parents:
diff changeset
595 WR_H ; Tick
436
95ee78f4a974 no screen reboot after logbook exit
heinrichsweikamp
parents: 434
diff changeset
596 bsf INTCON,GIE
0
heinrichsweikamp
parents:
diff changeset
597 return
heinrichsweikamp
parents:
diff changeset
598
heinrichsweikamp
parents:
diff changeset
599 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
600 ; Writes a vertical line of half-pixel at position (win_top,win_leftx2,win_height).
heinrichsweikamp
parents:
diff changeset
601 ; Inputs: win_leftx2, win_top, win_height, win_color:2
heinrichsweikamp
parents:
diff changeset
602 ; Trashed: WREG, PROD, TABLAT, TBLPTRL
heinrichsweikamp
parents:
diff changeset
603 global half_vertical_line
heinrichsweikamp
parents:
diff changeset
604 half_vertical_line:
heinrichsweikamp
parents:
diff changeset
605 clrf TABLAT ; Loop index.
heinrichsweikamp
parents:
diff changeset
606
heinrichsweikamp
parents:
diff changeset
607 half_vertical_line_loop:
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
608 movf win_leftx2,W ; Init X position.
0
heinrichsweikamp
parents:
diff changeset
609 mullw 2
heinrichsweikamp
parents:
diff changeset
610 movf TABLAT,W ; Get loop index
heinrichsweikamp
parents:
diff changeset
611 andlw 1 ; Just low bit
heinrichsweikamp
parents:
diff changeset
612 xorwf PRODL,F ; And use it to jitter current X position
heinrichsweikamp
parents:
diff changeset
613 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319)
heinrichsweikamp
parents:
diff changeset
614
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
615 movf win_height,W ; Index reached height (Bank0 read) ?
0
heinrichsweikamp
parents:
diff changeset
616 xorwf TABLAT,W
heinrichsweikamp
parents:
diff changeset
617 btfsc STATUS,Z ; Equals ?
heinrichsweikamp
parents:
diff changeset
618 return ; Yes: done.
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
619 movf win_top,W ; Y = top + index (Bank0 read)
0
heinrichsweikamp
parents:
diff changeset
620 addwf TABLAT,W
heinrichsweikamp
parents:
diff changeset
621 rcall half_pixel_write_1
heinrichsweikamp
parents:
diff changeset
622 incf TABLAT,F ; index++
heinrichsweikamp
parents:
diff changeset
623 bra half_vertical_line_loop
heinrichsweikamp
parents:
diff changeset
624
heinrichsweikamp
parents:
diff changeset
625 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
626 ; Writes a horizontal line of half-pixel at position (win_top,win_leftx2,win_width).
heinrichsweikamp
parents:
diff changeset
627 ; Inputs: win_leftx2, win_top, win_width, win_color:2
heinrichsweikamp
parents:
diff changeset
628 ; Trashed: WREG, PROD, TABLAT, TBLPTRL
heinrichsweikamp
parents:
diff changeset
629 global half_horizontal_line
heinrichsweikamp
parents:
diff changeset
630 half_horizontal_line:
heinrichsweikamp
parents:
diff changeset
631 clrf TABLAT ; Loop index.
heinrichsweikamp
parents:
diff changeset
632
heinrichsweikamp
parents:
diff changeset
633 half_horizontal_line_loop:
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
634 movf win_leftx2,W ; Init X position.
0
heinrichsweikamp
parents:
diff changeset
635 mullw 2
heinrichsweikamp
parents:
diff changeset
636 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319)
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
637 movf win_width,W ; Index reached height (Bank0 read) ?
0
heinrichsweikamp
parents:
diff changeset
638 xorwf TABLAT,W
heinrichsweikamp
parents:
diff changeset
639 btfsc STATUS,Z ; Equals ?
heinrichsweikamp
parents:
diff changeset
640 return ; Yes: done.
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
641 movf win_top,W ; Y = top + index (Bank0 read)
0
heinrichsweikamp
parents:
diff changeset
642 addwf TABLAT,W
heinrichsweikamp
parents:
diff changeset
643 rcall half_pixel_write_1
heinrichsweikamp
parents:
diff changeset
644 incf TABLAT,F ; index++
heinrichsweikamp
parents:
diff changeset
645 bra half_horizontal_line_loop
heinrichsweikamp
parents:
diff changeset
646
heinrichsweikamp
parents:
diff changeset
647
heinrichsweikamp
parents:
diff changeset
648 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
649 ; TFT Data Cmd via W
heinrichsweikamp
parents:
diff changeset
650 ;
heinrichsweikamp
parents:
diff changeset
651 global TFT_DataWrite_PROD
heinrichsweikamp
parents:
diff changeset
652 TFT_DataWrite_PROD:
heinrichsweikamp
parents:
diff changeset
653 ; RD_H ; Keep high
heinrichsweikamp
parents:
diff changeset
654 RS_H ; Data
436
95ee78f4a974 no screen reboot after logbook exit
heinrichsweikamp
parents: 434
diff changeset
655 bcf INTCON,GIE
0
heinrichsweikamp
parents:
diff changeset
656 movff PRODH,PORTA ; Move high byte to PORTA
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
657 movff PRODL,PORTH ; Move low byte to PORTH
0
heinrichsweikamp
parents:
diff changeset
658 WR_L
heinrichsweikamp
parents:
diff changeset
659 WR_H ; Tick
436
95ee78f4a974 no screen reboot after logbook exit
heinrichsweikamp
parents: 434
diff changeset
660 bsf INTCON,GIE
0
heinrichsweikamp
parents:
diff changeset
661 return
heinrichsweikamp
parents:
diff changeset
662
heinrichsweikamp
parents:
diff changeset
663 TFT_DataRead_PROD:
heinrichsweikamp
parents:
diff changeset
664 Index_out 0x22 ; Frame Memory Data Read start
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 312
diff changeset
665 TFT_CmdRead_PROD:
0
heinrichsweikamp
parents:
diff changeset
666 setf TRISA ; PortA as input.
heinrichsweikamp
parents:
diff changeset
667 setf TRISH ; PortH as input.
heinrichsweikamp
parents:
diff changeset
668 RS_H ; Data
441
360acdcda0d7 +BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents: 436
diff changeset
669 WR_H ; Not write
0
heinrichsweikamp
parents:
diff changeset
670 RD_L ; Read!
heinrichsweikamp
parents:
diff changeset
671 nop
heinrichsweikamp
parents:
diff changeset
672 nop
heinrichsweikamp
parents:
diff changeset
673 nop
heinrichsweikamp
parents:
diff changeset
674 RD_H ; Tick
heinrichsweikamp
parents:
diff changeset
675 nop
366
0052a7a654b9 tft timings
heinrichsweikamp
parents: 363
diff changeset
676 nop
0052a7a654b9 tft timings
heinrichsweikamp
parents: 363
diff changeset
677 nop
0
heinrichsweikamp
parents:
diff changeset
678 RD_L ; Read!
heinrichsweikamp
parents:
diff changeset
679 nop
366
0052a7a654b9 tft timings
heinrichsweikamp
parents: 363
diff changeset
680 ; nop
0052a7a654b9 tft timings
heinrichsweikamp
parents: 363
diff changeset
681 ; nop
0
heinrichsweikamp
parents:
diff changeset
682 movff PORTA,PRODH
heinrichsweikamp
parents:
diff changeset
683 movff PORTH,PRODL
heinrichsweikamp
parents:
diff changeset
684 RD_H ; Tick
heinrichsweikamp
parents:
diff changeset
685 nop
heinrichsweikamp
parents:
diff changeset
686 clrf TRISA ; PortA as output
heinrichsweikamp
parents:
diff changeset
687 clrf TRISH ; PortH as output
heinrichsweikamp
parents:
diff changeset
688 return
heinrichsweikamp
parents:
diff changeset
689
heinrichsweikamp
parents:
diff changeset
690 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
691 ; Output TFT Window Address commands.
heinrichsweikamp
parents:
diff changeset
692 ; Inputs : win_top, win_leftx2, win_height, win_width.
heinrichsweikamp
parents:
diff changeset
693 ; Output : PortA/PortH commands.
heinrichsweikamp
parents:
diff changeset
694 ; Trashed: PROD
heinrichsweikamp
parents:
diff changeset
695 ;
heinrichsweikamp
parents:
diff changeset
696 global TFT_box_write
heinrichsweikamp
parents:
diff changeset
697 TFT_box_write:
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
698 movf win_leftx2,W ; Compute left = 2*leftx2 --> PROD
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
699 mullw 2
0
heinrichsweikamp
parents:
diff changeset
700
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
701 global TFT_box_write_16bit_win_left
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
702 TFT_box_write_16bit_win_left: ; With column in PRODL:PRODH
361
631cbfea3757 1.85beta release
heinrichsweikamp
parents: 360
diff changeset
703 btfsc screen_type ; display1?
631cbfea3757 1.85beta release
heinrichsweikamp
parents: 360
diff changeset
704 bra TFT_box_write_16bit_win_left_d1 ; Yes
631cbfea3757 1.85beta release
heinrichsweikamp
parents: 360
diff changeset
705 ; Display0
631cbfea3757 1.85beta release
heinrichsweikamp
parents: 360
diff changeset
706 btfsc flip_screen ; 180° rotation?
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
707 bra DISP_box_flip_H ; Yes
361
631cbfea3757 1.85beta release
heinrichsweikamp
parents: 360
diff changeset
708 bra TFT_box_write_16bit_win_left_com ; No
631cbfea3757 1.85beta release
heinrichsweikamp
parents: 360
diff changeset
709 TFT_box_write_16bit_win_left_d1: ; Display1
631cbfea3757 1.85beta release
heinrichsweikamp
parents: 360
diff changeset
710 btfss flip_screen ; 180° rotation?
370
67e631aa5b8c debugging the compass screen
heinrichsweikamp
parents: 366
diff changeset
711 bra DISP_box_flip_H ; No for d1
67e631aa5b8c debugging the compass screen
heinrichsweikamp
parents: 366
diff changeset
712 ; Yes for d1
361
631cbfea3757 1.85beta release
heinrichsweikamp
parents: 360
diff changeset
713 TFT_box_write_16bit_win_left_com:
0
heinrichsweikamp
parents:
diff changeset
714 ;---- Normal horizontal window ---------------------------------------
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
715 Index_out 0x52 ; Window Vertical Start Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
716 rcall TFT_DataWrite_PROD ; Output left
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
717 Index_out 0x21 ; Frame Memory Vertical Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
718 rcall TFT_DataWrite_PROD ; Output left
0
heinrichsweikamp
parents:
diff changeset
719
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
720 movf win_width+0,W ; right = left + width - 1
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
721 addwf PRODL,F
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
722 movf win_width+1,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
723 addwfc PRODH,F
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
724 decf PRODL,F ; decrement result
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
725 btfss STATUS,C
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
726 decf PRODH,F
0
heinrichsweikamp
parents:
diff changeset
727
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
728 Index_out 0x53 ; Window Vertical End Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
729 rcall TFT_DataWrite_PROD
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
730 bra DISP_box_noflip_H
0
heinrichsweikamp
parents:
diff changeset
731
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
732 ;---- Flipped horizontal window --------------------------------------
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
733 DISP_box_flip_H:
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
734 movf PRODL,W ; 16bits 319 - PROD --> PROD
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
735 sublw LOW(.319) ; 319-W --> W
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
736 movwf PRODL
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
737 movf PRODH,W
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
738 btfss STATUS,C ; Borrow = /CARRY
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
739 incf WREG
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
740 sublw HIGH(.319)
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
741 movwf PRODH
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
742
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
743 Index_out 0x53 ; Window Vertical Start Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
744 rcall TFT_DataWrite_PROD ; Output left
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
745 Index_out 0x21 ; Frame Memory Vertical Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
746 rcall TFT_DataWrite_PROD ; Output left
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
747
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
748 movf win_width+0,W ; 16bits PROD - width --> PROD
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
749 subwf PRODL,F ; PRODL - WREG --> PRODL
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
750 movf win_width+1,W
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
751 subwfb PRODH,F
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
752 infsnz PRODL ; PROD+1 --> PROD
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
753 incf PRODH
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
754
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
755 Index_out 0x52 ; Window Vertical End Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
756 rcall TFT_DataWrite_PROD
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
757
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
758 DISP_box_noflip_H:
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
759 btfss flip_screen ; 180° rotation ?
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
760 bra TFT_box_noflip_V ; No.
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
761
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
762 ;---- Flipped vertical window -----------------------------------------
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
763 movff win_top,PRODH ; top --> PRODH (first byte)
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
764 movf win_height,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
765 addwf PRODH,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
766 decf WREG
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
767 movwf PRODL ; top+height-1 --> PRODL (second byte)
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
768
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
769 Index_out 0x50 ; Window Horizontal Start Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
770 movf PRODH,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
771 rcall TFT_DataWrite ; Lower (and tick)
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
772
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
773 Index_out 0x51 ; Window Horizontal End Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
774 movf PRODL,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
775 rcall TFT_DataWrite ; Lower (and tick)
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
776
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
777 Index_out 0x20 ; Frame Memory Horizontal Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
778 movf PRODH,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
779 bra TFT_DataWrite ; Lower (and tick) and return
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
780 ; return
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
781
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 125
diff changeset
782
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
783 TFT_box_noflip_V:
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 151
diff changeset
784 ;---- Normal vertical window ----------------------------------------
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
785 movff win_top,PRODL
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
786 movf win_height,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
787 addwf PRODL,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
788 sublw .240 ; 240 - top - height
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
789 movwf PRODH ; First byte
0
heinrichsweikamp
parents:
diff changeset
790
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
791 movf PRODL,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
792 sublw .239 ; 239-top
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
793 movwf PRODL ; --> second byte.
0
heinrichsweikamp
parents:
diff changeset
794
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
795 Index_out 0x50 ; Window Horizontal Start Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
796 movf PRODH,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
797 rcall TFT_DataWrite ; Lower (and tick)
0
heinrichsweikamp
parents:
diff changeset
798
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
799 Index_out 0x51 ; Window Horizontal End Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
800 movf PRODL,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
801 rcall TFT_DataWrite ; Lower (and tick)
0
heinrichsweikamp
parents:
diff changeset
802
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
803 Index_out 0x20 ; Frame Memory Horizontal Address
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
804 movf PRODL,W
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
805 bra TFT_DataWrite ; Lower (and tick) and return
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
806 ; return
0
heinrichsweikamp
parents:
diff changeset
807
heinrichsweikamp
parents:
diff changeset
808 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
809 ; TFT_frame : draw a frame around current box with current color.
heinrichsweikamp
parents:
diff changeset
810 ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2
heinrichsweikamp
parents:
diff changeset
811 ; Outputs: (none)
heinrichsweikamp
parents:
diff changeset
812 ; Trashed: WREG, PROD, aa_start:2, aa_end:2
heinrichsweikamp
parents:
diff changeset
813 global TFT_frame
heinrichsweikamp
parents:
diff changeset
814 TFT_frame:
heinrichsweikamp
parents:
diff changeset
815 movff win_top,save_top ; Backup everything.
heinrichsweikamp
parents:
diff changeset
816 movff win_height,save_height
heinrichsweikamp
parents:
diff changeset
817 movff win_leftx2,save_left
heinrichsweikamp
parents:
diff changeset
818 movff win_width,save_width
heinrichsweikamp
parents:
diff changeset
819
heinrichsweikamp
parents:
diff changeset
820 ;---- TOP line -----------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
821 movlw 1 ; row ~ height=1
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
822 movwf win_height
0
heinrichsweikamp
parents:
diff changeset
823 rcall TFT_box
heinrichsweikamp
parents:
diff changeset
824
heinrichsweikamp
parents:
diff changeset
825 ;---- BOTTOM line --------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
826 movff save_top,PRODL ; Get back top,
heinrichsweikamp
parents:
diff changeset
827 movff save_height,WREG ; and height
heinrichsweikamp
parents:
diff changeset
828 addwf PRODL,W ; top+height
heinrichsweikamp
parents:
diff changeset
829 decf WREG ; top+height-1
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
830 movwf win_top ; top+height-1 --> top
0
heinrichsweikamp
parents:
diff changeset
831 rcall TFT_box
heinrichsweikamp
parents:
diff changeset
832
heinrichsweikamp
parents:
diff changeset
833 ;---- LEFT column --------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
834 movff save_top,win_top ; Restore top/height.
heinrichsweikamp
parents:
diff changeset
835 movff save_height,win_height
heinrichsweikamp
parents:
diff changeset
836 movlw 1 ; column ~ width=1
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
837 movwf win_width+0
0
heinrichsweikamp
parents:
diff changeset
838 rcall TFT_box
heinrichsweikamp
parents:
diff changeset
839
heinrichsweikamp
parents:
diff changeset
840 ;---- RIGHT column -------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
841 movff save_left,WREG
heinrichsweikamp
parents:
diff changeset
842 movff save_width,PRODL
heinrichsweikamp
parents:
diff changeset
843 addwf PRODL,W
heinrichsweikamp
parents:
diff changeset
844 decf WREG
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
845 movwf win_leftx2
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
846 rcall TFT_box
0
heinrichsweikamp
parents:
diff changeset
847
heinrichsweikamp
parents:
diff changeset
848 ;---- Restore everything -------------------------------------------------
heinrichsweikamp
parents:
diff changeset
849 movff save_left,win_leftx2
heinrichsweikamp
parents:
diff changeset
850 movff save_width,win_width
heinrichsweikamp
parents:
diff changeset
851 return
heinrichsweikamp
parents:
diff changeset
852
heinrichsweikamp
parents:
diff changeset
853 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
854 ; TFT_box : fills current box with current color.
heinrichsweikamp
parents:
diff changeset
855 ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2
heinrichsweikamp
parents:
diff changeset
856 ; Outputs: (none)
heinrichsweikamp
parents:
diff changeset
857 ; Trashed: WREG, PROD
heinrichsweikamp
parents:
diff changeset
858 global TFT_box
heinrichsweikamp
parents:
diff changeset
859
heinrichsweikamp
parents:
diff changeset
860 TFT_box:
heinrichsweikamp
parents:
diff changeset
861 ;---- Define Window ------------------------------------------------------
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
862 bcf STATUS,C
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
863 rlcf win_width+0,F
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
864 rlcf win_width+1,F ; x2
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
865 rcall TFT_box_write ; Setup box
0
heinrichsweikamp
parents:
diff changeset
866
83
eb72c8865f47 Test with graphic compass
heinrichsweikamp
parents: 0
diff changeset
867 global TFT_box_16bit_win_left
eb72c8865f47 Test with graphic compass
heinrichsweikamp
parents: 0
diff changeset
868 TFT_box_16bit_win_left:
431
9500b2d3e32b hunting a bug in the logbook...
heinrichsweikamp
parents: 371
diff changeset
869 bcf STATUS,C
9500b2d3e32b hunting a bug in the logbook...
heinrichsweikamp
parents: 371
diff changeset
870 rrcf win_width+1,F ; width /= 2
9500b2d3e32b hunting a bug in the logbook...
heinrichsweikamp
parents: 371
diff changeset
871 rrcf win_width+0,F
0
heinrichsweikamp
parents:
diff changeset
872
heinrichsweikamp
parents:
diff changeset
873 ;---- Fill Window --------------------------------------------------------
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
874 Index_out 0x22 ; Frame Memory Data Write start
0
heinrichsweikamp
parents:
diff changeset
875
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
876 clrf PRODH ; Column counter.
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
877 RS_H ; Data
0
heinrichsweikamp
parents:
diff changeset
878
heinrichsweikamp
parents:
diff changeset
879 TFT_box2: ; Loop height times
heinrichsweikamp
parents:
diff changeset
880 movff win_height,PRODL
heinrichsweikamp
parents:
diff changeset
881
heinrichsweikamp
parents:
diff changeset
882 TFT_box3: ; loop width times
436
95ee78f4a974 no screen reboot after logbook exit
heinrichsweikamp
parents: 434
diff changeset
883 bcf INTCON,GIE
0
heinrichsweikamp
parents:
diff changeset
884 movff win_color1,PORTA ; Upper
heinrichsweikamp
parents:
diff changeset
885 movff win_color2,PORTH ; Lower
heinrichsweikamp
parents:
diff changeset
886 WR_L
heinrichsweikamp
parents:
diff changeset
887 WR_H ; Tick
370
67e631aa5b8c debugging the compass screen
heinrichsweikamp
parents: 366
diff changeset
888 ;
67e631aa5b8c debugging the compass screen
heinrichsweikamp
parents: 366
diff changeset
889 ; movff win_color1,PORTA ; Upper
67e631aa5b8c debugging the compass screen
heinrichsweikamp
parents: 366
diff changeset
890 ; movff win_color2,PORTH ; Lower
0
heinrichsweikamp
parents:
diff changeset
891 WR_L
heinrichsweikamp
parents:
diff changeset
892 WR_H ; Tick
436
95ee78f4a974 no screen reboot after logbook exit
heinrichsweikamp
parents: 434
diff changeset
893 bsf INTCON,GIE
0
heinrichsweikamp
parents:
diff changeset
894 decfsz PRODL,F ; row loop finished ?
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
895 bra TFT_box3 ; No: continue.
0
heinrichsweikamp
parents:
diff changeset
896
heinrichsweikamp
parents:
diff changeset
897 incf PRODH,F ; column count ++
heinrichsweikamp
parents:
diff changeset
898
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
899 movf win_bargraph,W ; current column == bargraph ?
0
heinrichsweikamp
parents:
diff changeset
900 cpfseq PRODH
heinrichsweikamp
parents:
diff changeset
901 bra TFT_box4 ; No: just loop.
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
902 ; Yes: switch to black
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
903 clrf win_color1
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
904 clrf win_color2
0
heinrichsweikamp
parents:
diff changeset
905 TFT_box4:
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
906 movf win_width+0,W ; compare ?
0
heinrichsweikamp
parents:
diff changeset
907 xorwf PRODH,W
heinrichsweikamp
parents:
diff changeset
908 bnz TFT_box2 ; Loop not finished.
heinrichsweikamp
parents:
diff changeset
909
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
910 movlw 0x00 ; NOP, to stop window mode
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
911 rcall TFT_CmdWrite
0
heinrichsweikamp
parents:
diff changeset
912
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
913 ; Reset bargraph mode...
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
914 setf win_bargraph
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
915 return
0
heinrichsweikamp
parents:
diff changeset
916
heinrichsweikamp
parents:
diff changeset
917 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
918 ;Converts 8Bit RGB b'RRRGGGBB' into 16Bit RGB b'RRRRRGGGGGGBBBBB'
heinrichsweikamp
parents:
diff changeset
919 global TFT_set_color
heinrichsweikamp
parents:
diff changeset
920
heinrichsweikamp
parents:
diff changeset
921 TFT_set_color:
heinrichsweikamp
parents:
diff changeset
922 movwf tft_temp1 ; Get 8Bit RGB b'RRRGGGBB'
heinrichsweikamp
parents:
diff changeset
923 movwf tft_temp2 ; Copy
heinrichsweikamp
parents:
diff changeset
924
heinrichsweikamp
parents:
diff changeset
925 ; Mask Bit 7,6,5,4,3,2
heinrichsweikamp
parents:
diff changeset
926 movlw b'00000011'
heinrichsweikamp
parents:
diff changeset
927 andwf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
928
heinrichsweikamp
parents:
diff changeset
929 movlw b'00000000'
heinrichsweikamp
parents:
diff changeset
930 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
931 movlw b'01010000'
heinrichsweikamp
parents:
diff changeset
932 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
933 movlw b'10100000'
heinrichsweikamp
parents:
diff changeset
934 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
935 movlw b'11111000'
heinrichsweikamp
parents:
diff changeset
936 movwf tft_temp3 ; Blue done.
heinrichsweikamp
parents:
diff changeset
937
heinrichsweikamp
parents:
diff changeset
938 movff tft_temp1, tft_temp2 ; Copy
heinrichsweikamp
parents:
diff changeset
939 ; Mask Bit 7,6,5,1,0
heinrichsweikamp
parents:
diff changeset
940 movlw b'00011100'
heinrichsweikamp
parents:
diff changeset
941 andwf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
942 rrncf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
943 rrncf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
944
heinrichsweikamp
parents:
diff changeset
945 movlw b'00000000'
heinrichsweikamp
parents:
diff changeset
946 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
947 movlw b'00000100'
heinrichsweikamp
parents:
diff changeset
948 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
949 movlw b'00001000'
heinrichsweikamp
parents:
diff changeset
950 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
951 movlw b'00001100'
heinrichsweikamp
parents:
diff changeset
952 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
953 movlw b'00010000'
heinrichsweikamp
parents:
diff changeset
954 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
955 movlw b'00010100'
heinrichsweikamp
parents:
diff changeset
956 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
957 movlw b'00100000'
heinrichsweikamp
parents:
diff changeset
958 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
959 movlw b'00111111'
heinrichsweikamp
parents:
diff changeset
960 movwf tft_temp4
heinrichsweikamp
parents:
diff changeset
961
heinrichsweikamp
parents:
diff changeset
962 rrcf tft_temp4,F
heinrichsweikamp
parents:
diff changeset
963 rrcf tft_temp3,F
heinrichsweikamp
parents:
diff changeset
964
heinrichsweikamp
parents:
diff changeset
965 rrcf tft_temp4,F
heinrichsweikamp
parents:
diff changeset
966 rrcf tft_temp3,F
heinrichsweikamp
parents:
diff changeset
967
heinrichsweikamp
parents:
diff changeset
968 rrcf tft_temp4,F
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
969 rrcf tft_temp3,W ; tft_temp3 (b'GGGBBBBB') done.
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
970 movwf win_color2 ; Set Color registers...
0
heinrichsweikamp
parents:
diff changeset
971
heinrichsweikamp
parents:
diff changeset
972 movff tft_temp1, tft_temp2 ; Copy
heinrichsweikamp
parents:
diff changeset
973 clrf tft_temp1
heinrichsweikamp
parents:
diff changeset
974
heinrichsweikamp
parents:
diff changeset
975 rrcf tft_temp4,F
heinrichsweikamp
parents:
diff changeset
976 rrcf tft_temp1,F
heinrichsweikamp
parents:
diff changeset
977
heinrichsweikamp
parents:
diff changeset
978 rrcf tft_temp4,F
heinrichsweikamp
parents:
diff changeset
979 rrcf tft_temp1,F
heinrichsweikamp
parents:
diff changeset
980
heinrichsweikamp
parents:
diff changeset
981 rrcf tft_temp4,F
heinrichsweikamp
parents:
diff changeset
982 rrcf tft_temp1,F ; Green done.
heinrichsweikamp
parents:
diff changeset
983
heinrichsweikamp
parents:
diff changeset
984 ; Mask Bit 4,3,2,1,0
heinrichsweikamp
parents:
diff changeset
985 movlw b'11100000'
heinrichsweikamp
parents:
diff changeset
986 andwf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
987
heinrichsweikamp
parents:
diff changeset
988 rrncf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
989 rrncf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
990 rrncf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
991 rrncf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
992 rrncf tft_temp2,F
heinrichsweikamp
parents:
diff changeset
993
heinrichsweikamp
parents:
diff changeset
994 movlw b'00000000'
heinrichsweikamp
parents:
diff changeset
995 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
996 movlw b'00000100'
heinrichsweikamp
parents:
diff changeset
997 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
998 movlw b'00001000'
heinrichsweikamp
parents:
diff changeset
999 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
1000 movlw b'00001100'
heinrichsweikamp
parents:
diff changeset
1001 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
1002 movlw b'00010000'
heinrichsweikamp
parents:
diff changeset
1003 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
1004 movlw b'00010100'
heinrichsweikamp
parents:
diff changeset
1005 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
1006 movlw b'00100000'
heinrichsweikamp
parents:
diff changeset
1007 dcfsnz tft_temp2,F
heinrichsweikamp
parents:
diff changeset
1008 movlw b'00111111'
heinrichsweikamp
parents:
diff changeset
1009 movwf tft_temp4
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
heinrichsweikamp
parents:
diff changeset
1018 rrcf tft_temp1,F
heinrichsweikamp
parents:
diff changeset
1019
heinrichsweikamp
parents:
diff changeset
1020 rrcf tft_temp4,F
heinrichsweikamp
parents:
diff changeset
1021 rrcf tft_temp1,F
heinrichsweikamp
parents:
diff changeset
1022
heinrichsweikamp
parents:
diff changeset
1023 rrcf tft_temp4,F
432
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
1024 rrcf tft_temp1,W ; Red done.
929feb0da4f5 hunting a bug in the logbook (Day 2)
heinrichsweikamp
parents: 431
diff changeset
1025 movwf win_color1 ; Set Color registers...
0
heinrichsweikamp
parents:
diff changeset
1026 return
heinrichsweikamp
parents:
diff changeset
1027
heinrichsweikamp
parents:
diff changeset
1028 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
1029 ; Dump screen contents to the UART
heinrichsweikamp
parents:
diff changeset
1030
heinrichsweikamp
parents:
diff changeset
1031 global TFT_dump_screen
heinrichsweikamp
parents:
diff changeset
1032 TFT_dump_screen:
heinrichsweikamp
parents:
diff changeset
1033 bsf no_sensor_int
heinrichsweikamp
parents:
diff changeset
1034 movlw 'l'
heinrichsweikamp
parents:
diff changeset
1035 movwf TXREG ; Send command echo.
heinrichsweikamp
parents:
diff changeset
1036 call rs232_wait_tx ; wait for UART
heinrichsweikamp
parents:
diff changeset
1037 ;---- Send DISPLAY box command for the full screen window -------------------
heinrichsweikamp
parents:
diff changeset
1038 Index_out 0x50 ; Window Horizontal Start Address
heinrichsweikamp
parents:
diff changeset
1039 Parameter_out 0x00, 0x00 ; 0-239
heinrichsweikamp
parents:
diff changeset
1040 Index_out 0x51 ; Window Horizontal End Address
heinrichsweikamp
parents:
diff changeset
1041 Parameter_out 0x00, 0xEF ; 0-239
heinrichsweikamp
parents:
diff changeset
1042 Index_out 0x52 ; Window Vertical Start Address
heinrichsweikamp
parents:
diff changeset
1043 Parameter_out 0x00, 0x00 ; 0-319
heinrichsweikamp
parents:
diff changeset
1044 Index_out 0x53 ; Window Vertical End Address
heinrichsweikamp
parents:
diff changeset
1045 Parameter_out 0x01, 0x3F ; 0-319
heinrichsweikamp
parents:
diff changeset
1046
heinrichsweikamp
parents:
diff changeset
1047 clrf ds_column
heinrichsweikamp
parents:
diff changeset
1048 rcall dump_screen_pixel_reset
heinrichsweikamp
parents:
diff changeset
1049 dump_screen_1:
heinrichsweikamp
parents:
diff changeset
1050 btg LEDr ; LED activity toggle
heinrichsweikamp
parents:
diff changeset
1051 ; Dump even column
heinrichsweikamp
parents:
diff changeset
1052 movlw .240 ; 240 lines, once.
heinrichsweikamp
parents:
diff changeset
1053 movwf ds_line
heinrichsweikamp
parents:
diff changeset
1054 dump_screen_2:
heinrichsweikamp
parents:
diff changeset
1055 Index_out 0x20 ; Frame Memory Horizontal Address
heinrichsweikamp
parents:
diff changeset
1056 movff ds_line,WREG ; d'0' ... d'239'
heinrichsweikamp
parents:
diff changeset
1057 mullw 1 ; Copy row to PRODH:L
heinrichsweikamp
parents:
diff changeset
1058 rcall TFT_DataWrite_PROD
heinrichsweikamp
parents:
diff changeset
1059
heinrichsweikamp
parents:
diff changeset
1060 movff ds_column,WREG ; Init X position.
heinrichsweikamp
parents:
diff changeset
1061 mullw 2
heinrichsweikamp
parents:
diff changeset
1062 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319)
heinrichsweikamp
parents:
diff changeset
1063
heinrichsweikamp
parents:
diff changeset
1064 rcall TFT_DataRead_PROD ; read pixel
heinrichsweikamp
parents:
diff changeset
1065 rcall dump_screen_pixel
heinrichsweikamp
parents:
diff changeset
1066
heinrichsweikamp
parents:
diff changeset
1067 decfsz ds_line,F
heinrichsweikamp
parents:
diff changeset
1068 bra dump_screen_2
heinrichsweikamp
parents:
diff changeset
1069 rcall dump_screen_pixel_flush
heinrichsweikamp
parents:
diff changeset
1070
heinrichsweikamp
parents:
diff changeset
1071 ; Dump odd column
heinrichsweikamp
parents:
diff changeset
1072 movlw .240 ; 240 lines, twice.
heinrichsweikamp
parents:
diff changeset
1073 movwf ds_line
heinrichsweikamp
parents:
diff changeset
1074 dump_screen_3:
heinrichsweikamp
parents:
diff changeset
1075 Index_out 0x20 ; Frame Memory Horizontal Address
heinrichsweikamp
parents:
diff changeset
1076 movff ds_line,WREG ; d'0' ... d'239'
heinrichsweikamp
parents:
diff changeset
1077 mullw 1 ; Copy row to PRODH:L
heinrichsweikamp
parents:
diff changeset
1078 rcall TFT_DataWrite_PROD
heinrichsweikamp
parents:
diff changeset
1079
heinrichsweikamp
parents:
diff changeset
1080 movff ds_column,WREG ; Init X position.
heinrichsweikamp
parents:
diff changeset
1081 mullw 2
heinrichsweikamp
parents:
diff changeset
1082 movlw .1
heinrichsweikamp
parents:
diff changeset
1083 addwf PRODL,F
heinrichsweikamp
parents:
diff changeset
1084 movlw 0
heinrichsweikamp
parents:
diff changeset
1085 addwfc PRODH,F ; +1
heinrichsweikamp
parents:
diff changeset
1086 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319)
heinrichsweikamp
parents:
diff changeset
1087
heinrichsweikamp
parents:
diff changeset
1088 rcall TFT_DataRead_PROD ; read pixel
heinrichsweikamp
parents:
diff changeset
1089 rcall dump_screen_pixel
heinrichsweikamp
parents:
diff changeset
1090
heinrichsweikamp
parents:
diff changeset
1091 decfsz ds_line,F
heinrichsweikamp
parents:
diff changeset
1092 bra dump_screen_3
heinrichsweikamp
parents:
diff changeset
1093 rcall dump_screen_pixel_flush
heinrichsweikamp
parents:
diff changeset
1094
heinrichsweikamp
parents:
diff changeset
1095 incf ds_column,F
heinrichsweikamp
parents:
diff changeset
1096 movlw .160
heinrichsweikamp
parents:
diff changeset
1097 cpfseq ds_column
heinrichsweikamp
parents:
diff changeset
1098 bra dump_screen_1
heinrichsweikamp
parents:
diff changeset
1099
heinrichsweikamp
parents:
diff changeset
1100 bcf no_sensor_int
heinrichsweikamp
parents:
diff changeset
1101 clrf RCREG1 ; Clear receive buffer
heinrichsweikamp
parents:
diff changeset
1102 bcf RCSTA1,CREN ; Clear receiver status
heinrichsweikamp
parents:
diff changeset
1103 bsf RCSTA1,CREN
heinrichsweikamp
parents:
diff changeset
1104 bsf enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump)
heinrichsweikamp
parents:
diff changeset
1105 return
heinrichsweikamp
parents:
diff changeset
1106
heinrichsweikamp
parents:
diff changeset
1107
heinrichsweikamp
parents:
diff changeset
1108 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
1109 ; Pixel compression
heinrichsweikamp
parents:
diff changeset
1110 ;
heinrichsweikamp
parents:
diff changeset
1111 ; Input: PRODH:L = pixel.
heinrichsweikamp
parents:
diff changeset
1112 ; Output: Compressed stream on output.
heinrichsweikamp
parents:
diff changeset
1113 ; Compressed format:
heinrichsweikamp
parents:
diff changeset
1114 ; 0ccccccc : BLACK pixel, repeated ccccccc+1 times (1..128).
heinrichsweikamp
parents:
diff changeset
1115 ; 11cccccc : WHITE pixel, repeated cccccc+1 times (1..64).
heinrichsweikamp
parents:
diff changeset
1116 ; 10cccccc HIGH LOW : color pixel (H:L) repeated ccccc+1 times (1..64).
heinrichsweikamp
parents:
diff changeset
1117 ;
heinrichsweikamp
parents:
diff changeset
1118 dump_screen_pixel:
heinrichsweikamp
parents:
diff changeset
1119 movf PRODH,W ; Compare pixel-high
heinrichsweikamp
parents:
diff changeset
1120 xorwf ds_pixel+1,W
heinrichsweikamp
parents:
diff changeset
1121 bnz dump_screen_pixel_1 ; Different -> dump.
heinrichsweikamp
parents:
diff changeset
1122
heinrichsweikamp
parents:
diff changeset
1123 movf PRODL,W ; Compare pixel-low
heinrichsweikamp
parents:
diff changeset
1124 xorwf ds_pixel+0,W
heinrichsweikamp
parents:
diff changeset
1125 bnz dump_screen_pixel_1 ; Different -> dump.
heinrichsweikamp
parents:
diff changeset
1126
heinrichsweikamp
parents:
diff changeset
1127 incf ds_count,F ; Same color: just increment.
heinrichsweikamp
parents:
diff changeset
1128 return
heinrichsweikamp
parents:
diff changeset
1129
heinrichsweikamp
parents:
diff changeset
1130 dump_screen_pixel_1: ; Send (pixel,count) tuple
heinrichsweikamp
parents:
diff changeset
1131 movf ds_count,W ; Is count zero ?
heinrichsweikamp
parents:
diff changeset
1132 bz dump_screen_pixel_2 ; Yes: skip sending.
heinrichsweikamp
parents:
diff changeset
1133
heinrichsweikamp
parents:
diff changeset
1134 movf ds_pixel+1,W ; This is a BLACK pixel ?
heinrichsweikamp
parents:
diff changeset
1135 iorwf ds_pixel+0,W
heinrichsweikamp
parents:
diff changeset
1136 bz dump_screen_pix_black ; YES.
heinrichsweikamp
parents:
diff changeset
1137
heinrichsweikamp
parents:
diff changeset
1138 movf ds_pixel+1,W ; This is a white pixel ?
heinrichsweikamp
parents:
diff changeset
1139 andwf ds_pixel+0,W
heinrichsweikamp
parents:
diff changeset
1140 incf WREG
heinrichsweikamp
parents:
diff changeset
1141 bz dump_screen_pix_white ; YES.
heinrichsweikamp
parents:
diff changeset
1142
heinrichsweikamp
parents:
diff changeset
1143 ; No: write the pixel itself...
heinrichsweikamp
parents:
diff changeset
1144 movlw .64 ; Max color pixel on a single byte.
heinrichsweikamp
parents:
diff changeset
1145 cpfsgt ds_count ; Skip if count > 64
heinrichsweikamp
parents:
diff changeset
1146 movf ds_count,W ; W <- min(64,count)
heinrichsweikamp
parents:
diff changeset
1147 subwf ds_count,F ; ds_count <- ds_count-W
heinrichsweikamp
parents:
diff changeset
1148 decf WREG ; Save as 0..63
heinrichsweikamp
parents:
diff changeset
1149 iorlw b'10000000' ; MARK as a color pixel.
heinrichsweikamp
parents:
diff changeset
1150
heinrichsweikamp
parents:
diff changeset
1151 movwf TXREG
heinrichsweikamp
parents:
diff changeset
1152 call rs232_wait_tx ; wait for UART
heinrichsweikamp
parents:
diff changeset
1153 movff ds_pixel+1,TXREG
heinrichsweikamp
parents:
diff changeset
1154 call rs232_wait_tx ; wait for UART
heinrichsweikamp
parents:
diff changeset
1155 movff ds_pixel+0,TXREG
heinrichsweikamp
parents:
diff changeset
1156 call rs232_wait_tx ; wait for UART
heinrichsweikamp
parents:
diff changeset
1157 bra dump_screen_pixel_1
heinrichsweikamp
parents:
diff changeset
1158
heinrichsweikamp
parents:
diff changeset
1159 dump_screen_pixel_2:
heinrichsweikamp
parents:
diff changeset
1160 movff PRODH,ds_pixel+1 ; Save new pixel color
heinrichsweikamp
parents:
diff changeset
1161 movff PRODL,ds_pixel+0
heinrichsweikamp
parents:
diff changeset
1162 movlw 1
heinrichsweikamp
parents:
diff changeset
1163 movwf ds_count ; And set count=1.
heinrichsweikamp
parents:
diff changeset
1164 return
heinrichsweikamp
parents:
diff changeset
1165
heinrichsweikamp
parents:
diff changeset
1166 dump_screen_pix_black:
heinrichsweikamp
parents:
diff changeset
1167 movlw .128 ; Max black pixel on a single byte.
heinrichsweikamp
parents:
diff changeset
1168 cpfsgt ds_count ; Skip if count > 128
heinrichsweikamp
parents:
diff changeset
1169 movf ds_count,W ; W <- min(128,count)
heinrichsweikamp
parents:
diff changeset
1170 subwf ds_count,F ; ds_count <- ds_count-W
heinrichsweikamp
parents:
diff changeset
1171 decf WREG ; Save as 0..127
heinrichsweikamp
parents:
diff changeset
1172 dump_screen_pix_3:
heinrichsweikamp
parents:
diff changeset
1173 movwf TXREG
heinrichsweikamp
parents:
diff changeset
1174 call rs232_wait_tx
heinrichsweikamp
parents:
diff changeset
1175 bra dump_screen_pixel_1 ; More to dump ?
heinrichsweikamp
parents:
diff changeset
1176
heinrichsweikamp
parents:
diff changeset
1177 dump_screen_pix_white:
heinrichsweikamp
parents:
diff changeset
1178 movlw .64 ; Max white pixel on a single byte.
heinrichsweikamp
parents:
diff changeset
1179 cpfsgt ds_count ; Skip if count > 64
heinrichsweikamp
parents:
diff changeset
1180 movf ds_count,W ; W <- min(64,count)
heinrichsweikamp
parents:
diff changeset
1181 subwf ds_count,F ; ds_count <- ds_count-W
heinrichsweikamp
parents:
diff changeset
1182 decf WREG ; Save as 0..63
heinrichsweikamp
parents:
diff changeset
1183 iorlw b'11000000' ; MARK as a compressed white.
heinrichsweikamp
parents:
diff changeset
1184 bra dump_screen_pix_3
heinrichsweikamp
parents:
diff changeset
1185
heinrichsweikamp
parents:
diff changeset
1186 dump_screen_pixel_flush:
heinrichsweikamp
parents:
diff changeset
1187 clrf PRODH
heinrichsweikamp
parents:
diff changeset
1188 clrf PRODL
heinrichsweikamp
parents:
diff changeset
1189 rcall dump_screen_pixel_1 ; Send it
heinrichsweikamp
parents:
diff changeset
1190 dump_screen_pixel_reset:
heinrichsweikamp
parents:
diff changeset
1191 clrf ds_count ; But clear count.
heinrichsweikamp
parents:
diff changeset
1192 return
heinrichsweikamp
parents:
diff changeset
1193
heinrichsweikamp
parents:
diff changeset
1194 end