Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/oled_samsung.asm @ 149:55a763d514ed
Changed CF11->BSat, CF12->BDes, and CF29->Last
author | heinrichsweikamp |
---|---|
date | Sun, 09 Jan 2011 17:25:51 +0100 |
parents | c09b0be2e1e6 |
children | fc699a7460e6 |
rev | line source |
---|---|
0 | 1 ; OSTC - diving computer code |
2 ; Copyright (C) 2009 HeinrichsWeikamp GbR | |
3 | |
4 ; This program is free software: you can redistribute it and/or modify | |
5 ; it under the terms of the GNU General Public License as published by | |
6 ; the Free Software Foundation, either version 3 of the License, or | |
7 ; (at your option) any later version. | |
8 | |
9 ; This program is distributed in the hope that it will be useful, | |
10 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 ; GNU General Public License for more details. | |
13 | |
14 ; You should have received a copy of the GNU General Public License | |
15 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | |
17 | |
18 ; hardware routines for S6E6D6 Samsung OLED Driver IC | |
19 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
20 ; written: 090801 | |
142 | 21 ; History: |
22 ; 2009-08-30: [MH] last updated. | |
23 ; 2011-01-07: [jDG] Added flip_screen option | |
24 ; known bugs: pixel-write (loogbok curves) not done yet... | |
25 ; ToDo: | |
0 | 26 |
27 WIN_FONT macro win_font_input | |
28 movlw win_font_input | |
29 movff WREG,win_font | |
30 endm | |
31 | |
32 WIN_TOP macro win_top_input | |
33 movlw win_top_input | |
34 movff WREG,win_top | |
35 endm | |
36 | |
37 WIN_LEFT macro win_left_input | |
38 movlw win_left_input | |
39 movff WREG,win_leftx2 | |
40 endm | |
41 | |
42 WIN_INVERT macro win_invert_input | |
43 movlw win_invert_input | |
44 movff WREG,win_invert | |
45 endm | |
46 | |
47 WIN_COLOR macro win_color_input | |
48 movlw win_color_input | |
49 call PLED_set_color | |
50 endm | |
142 | 51 |
52 ;============================================================================= | |
53 | |
0 | 54 word_processor: ; word_processor: |
142 | 55 clrf POSTINC2 ; Required, to mark end of string. |
56 call aa_wordprocessor | |
57 movlb b'00000001' ; Back to Rambank1 | |
58 return | |
0 | 59 |
142 | 60 ;============================================================================= |
146 | 61 ; Macro to provides our own interface code. |
142 | 62 ; |
146 | 63 PIXEL_WRITE macro colRegister, rowRegister |
64 movff colRegister,win_leftx2 | |
65 movff rowRegister,win_top | |
66 call pixel_write | |
67 endm | |
123 | 68 |
146 | 69 INIT_PIXEL_WROTE macro colRegister |
70 movff colRegister,win_leftx2 | |
71 call init_pixel_write | |
72 endm | |
73 | |
74 HALF_PIXEL_WRITE macro rowRegister | |
75 movff rowRegister,win_top | |
76 call half_pixel_write | |
77 endm | |
0 | 78 |
146 | 79 ;----------------------------------------------------------------------------- |
80 ; Init for half_pixel_write | |
81 ; Set column register on OLED device, and current color. | |
82 ; Inputs: win_leftx2 | |
83 ; Outputs: win_color:2 | |
84 ; Trashed: WREG, PROD | |
85 init_pixel_write: | |
86 movff win_leftx2,WREG | |
87 mullw 2 | |
88 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319) | |
89 goto PLED_standard_color | |
90 | |
91 ;----------------------------------------------------------------------------- | |
92 ; Writes two half-pixels at position (win_top,win_leftx2) | |
93 ; Inputs: win_leftx2, win_top, win_color:2 | |
94 ; Trashed: WREG, PROD | |
95 pixel_write: | |
96 movff win_leftx2,WREG | |
97 mullw 2 | |
98 rcall pixel_write_col320 ; Start Address Vertical (.0 - .319) | |
99 rcall half_pixel_write ; Write this half-one. | |
123 | 100 |
146 | 101 movff win_leftx2,WREG ; Address of next one |
102 mullw 2 | |
103 infsnz PRODL ; +1 | |
104 incf PRODH | |
105 rcall pixel_write_col320 | |
106 bra half_pixel_write ; Note: Cmd 0x20 is mandatory, because | |
107 ; of the autoincrement going vertical | |
108 | |
109 ;---- Do the 16bit 319-X-->X, if needed, and send to OLED ------------ | |
110 pixel_write_col320: | |
111 movff win_flags,WREG ; BEWARE: bank0 bit-test | |
112 btfss WREG,0 ; 180° rotation ? | |
113 bra pixel_write_noflip_H | |
114 | |
115 movf PRODL,W ; 16bits 319 - PROD --> PROD | |
116 sublw LOW(.319) ; 319-W --> W | |
117 movwf PRODL | |
118 movf PRODH,W | |
119 btfss STATUS,C ; Borrow = /CARRY | |
120 incf WREG | |
121 sublw HIGH(.319) | |
122 movwf PRODH | |
0 | 123 |
146 | 124 pixel_write_noflip_H: |
125 movlw 0x21 ; Start Address Vertical (.0 - .319) | |
126 rcall PLED_CmdWrite | |
127 bra PLED_DataWrite_PROD | |
128 | |
129 ;----------------------------------------------------------------------------- | |
130 ; Writes one half-pixel at position (win_top,win_leftx2). | |
131 ; Inputs: win_leftx2, win_top, win_color:2 | |
132 ; Trashed: WREG, PROD | |
133 half_pixel_write: | |
134 movff win_top,WREG ; d'0' ... d'239' | |
135 | |
136 movff win_flags,PRODL ; BEWARE: bank0 bit-test | |
137 btfsc PRODL,0 ; 180° rotation ? | |
138 sublw .239 ; 239-Y --> Y | |
0 | 139 |
146 | 140 mullw 1 ; Copy row to PRODH:L |
141 movlw 0x20 ; Horizontal Address START:END | |
142 rcall PLED_CmdWrite | |
143 rcall PLED_DataWrite_PROD | |
144 | |
145 movlw 0x22 ; Start Writing Data to GRAM | |
146 rcall PLED_CmdWrite | |
147 bsf oled_rs ; Data! | |
148 movff win_color1, PORTD | |
149 bcf oled_rw | |
150 bsf oled_rw ; Upper | |
151 movff win_color2, PORTD | |
152 bcf oled_rw | |
153 bsf oled_rw ; Lower | |
154 return | |
0 | 155 |
156 ; ----------------------------- | |
157 ; PLED Display Off | |
158 ; ----------------------------- | |
159 PLED_DisplayOff: | |
160 clrf PORTD | |
161 bcf oled_hv | |
162 bcf oled_vdd | |
163 bcf oled_cs | |
164 bcf oled_e_nwr | |
165 bcf oled_rw | |
166 bcf oled_nreset | |
167 return | |
168 | |
123 | 169 ;============================================================================= |
142 | 170 ; Fast macros to write to OLED display. |
171 ; Adding a call/return adds 3 words and a pipeline flush, hence make it | |
172 ; nearly twice slower... | |
173 ; | |
174 ; Input : commande as macro parameter. | |
175 ; Output : NONE | |
176 ; Trash : WREG | |
177 ; | |
178 AA_CMD_WRITE macro cmd | |
179 movlw cmd | |
180 rcall PLED_CmdWrite | |
181 ; bcf oled_rs ; Cmd mode | |
182 ; movwf PORTD,A | |
183 ; bcf oled_rw ; Tick the clock | |
184 ; bsf oled_rw | |
185 endm | |
186 ; | |
187 ; Input : PRODH:L as 16bits data. | |
188 ; Output : NONE | |
189 ; Trash : NONE | |
190 ; | |
191 AA_DATA_WRITE_PROD macro | |
192 rcall PLED_DataWrite_PROD | |
193 ; bsf oled_rs ; Data mode | |
194 ; movff PRODH,PORTD ; NOTE: OLED is BIGENDIAN! | |
195 ; bcf oled_rw ; Tick the clock | |
196 ; bsf oled_rw | |
197 ; movff PRODL,PORTD | |
198 ; bcf oled_rw ; Tick the clock | |
199 ; bsf oled_rw | |
200 endm | |
201 | |
202 ;============================================================================= | |
203 ; Output OLED Window Address commands. | |
204 ; Inputs : win_top, win_leftx2, win_height, aa_width. | |
205 ; Output : PortD commands. | |
206 ; Trashed: PROD | |
207 ; | |
208 PLED_box_write: | |
209 movff win_leftx2,WREG ; Compute left = 2*leftx2 --> PROD | |
210 mullw 2 | |
211 | |
212 movff win_flags,WREG ; BEWARE: bank0 bit-test | |
213 btfsc WREG,0 ; 180° rotation ? | |
214 bra PLED_box_flip_H ; YES: | |
215 | |
216 ;---- Normal horizontal window --------------------------------------- | |
217 ; Output 0x35 left, | |
218 ; 0x36 right == left + width - 1. | |
219 AA_CMD_WRITE 0x35 ; this is the left border | |
220 AA_DATA_WRITE_PROD ; Output left | |
221 AA_CMD_WRITE 0x21 ; Also the horizontal first pix coord. | |
222 AA_DATA_WRITE_PROD | |
223 | |
224 movf aa_width+0,W,ACCESS ; right = left + width - 1 | |
225 addwf PRODL,F | |
226 movf aa_width+1,W,ACCESS | |
227 addwfc PRODH,F | |
228 decf PRODL,F,A ; decrement result | |
229 btfss STATUS,C | |
230 decf PRODH,F,A | |
231 | |
232 AA_CMD_WRITE 0x36 ; Write and the right border | |
233 AA_DATA_WRITE_PROD | |
234 | |
235 bra PLED_box_noflip_H | |
236 | |
237 ;---- Flipped horizontal window -------------------------------------- | |
238 PLED_box_flip_H: | |
239 ; Output 0x36 flipped(left) = 319-left | |
240 ; 0x35 flipped(right) = 319-right = 320 - left - width | |
241 movf PRODL,W ; 16bits 319 - PROD --> PROD | |
242 sublw LOW(.319) ; 319-W --> W | |
243 movwf PRODL | |
244 movf PRODH,W | |
245 btfss STATUS,C ; Borrow = /CARRY | |
246 incf WREG | |
247 sublw HIGH(.319) | |
248 movwf PRODH | |
249 AA_CMD_WRITE 0x36 ; this is the left border | |
250 AA_DATA_WRITE_PROD ; Output left | |
251 AA_CMD_WRITE 0x21 | |
252 AA_DATA_WRITE_PROD | |
253 | |
254 movf aa_width+0,W ; 16bits PROD - width --> PROD | |
255 subwf PRODL,F ; PRODL - WREG --> PRODL | |
256 movf aa_width+1,W | |
257 subwfb PRODH,F | |
258 infsnz PRODL ; PROD+1 --> PROD | |
259 incf PRODH | |
260 AA_CMD_WRITE 0x35 ; this is the left border | |
261 AA_DATA_WRITE_PROD ; Output left | |
262 | |
263 PLED_box_noflip_H: | |
264 movff win_flags,WREG ; BEWARE: bank0 bit-test | |
265 btfsc WREG,0 ; 180° rotation ? | |
266 bra PLED_box_flip_V | |
267 | |
268 ;---- Normal vertical window ----------------------------------------- | |
269 ; Output 0x37 (top) (bottom) | |
270 movff win_top,PRODH ; top --> PRODH (first byte) | |
271 movff win_height,WREG | |
272 addwf PRODH,W | |
273 decf WREG | |
274 movwf PRODL ; top+height-1 --> PRODL (second byte) | |
275 | |
276 AA_CMD_WRITE 0x37 | |
277 AA_DATA_WRITE_PROD | |
278 | |
279 movff PRODH,PRODL | |
280 clrf PRODH ; Start pixel V coord == top. | |
281 AA_CMD_WRITE 0x20 | |
282 AA_DATA_WRITE_PROD | |
283 | |
284 return | |
285 | |
286 ;---- Flipped vertical window ---------------------------------------- | |
287 ; Output 0x37 flipped(bottom) = 239-bottom = 240 - top - height | |
288 ; flipped(top) = 239-top | |
289 PLED_box_flip_V: | |
290 movff win_top,PRODL | |
291 movff win_height,WREG | |
292 addwf PRODL,W | |
293 sublw .240 ; 240 - top - height | |
294 movwf PRODH ; First byte | |
295 | |
296 movf PRODL,W | |
297 sublw .239 ; 249-top | |
298 movwf PRODL ; --> second byte. | |
299 | |
300 AA_CMD_WRITE 0x37 | |
301 AA_DATA_WRITE_PROD | |
302 | |
303 clrf PRODH ; Start pixel V coord. | |
304 AA_CMD_WRITE 0x20 | |
305 AA_DATA_WRITE_PROD | |
306 | |
307 return | |
308 | |
309 ;============================================================================= | |
123 | 310 ; PLED_frame : draw a frame around current box with current color. |
311 ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
312 ; Outputs: (none) | |
313 ; Trashed: WREG, PROD, aa_start:2, aa_end:2, win_leftx2, win_width:1 | |
0 | 314 |
142 | 315 PLED_frame: |
316 movff win_top,aa_start+0 ; Backup everything. | |
123 | 317 movff win_height,aa_start+1 |
318 movff win_leftx2,aa_end+0 | |
319 movff win_width,aa_end+1 | |
0 | 320 |
123 | 321 ;---- TOP line ----------------------------------------------------------- |
142 | 322 movlw 1 ; row ~ height=1 |
123 | 323 movff WREG,win_height |
324 rcall PLED_box | |
0 | 325 |
123 | 326 ;---- BOTTOM line -------------------------------------------------------- |
142 | 327 movff aa_start+0,PRODL ; Get back top, |
328 movff aa_start+1,WREG ; and height | |
329 addwf PRODL,W ; top+height | |
330 decf WREG ; top+height-1 | |
331 movff WREG,win_top ; top+height-1 --> top | |
123 | 332 rcall PLED_box |
0 | 333 |
123 | 334 ;---- LEFT column -------------------------------------------------------- |
335 movff aa_start+0,win_top ; Restore top/height. | |
336 movff aa_start+1,win_height | |
337 movlw 1 ; column ~ width=1 | |
338 movff WREG,win_width | |
339 rcall PLED_box | |
0 | 340 |
123 | 341 ;---- RIGHT column ------------------------------------------------------- |
342 movff aa_end+0,WREG | |
343 movff aa_end+1,PRODL | |
344 addwf PRODL,W | |
345 decf WREG | |
346 movff WREG,win_leftx2 | |
347 bra PLED_box | |
0 | 348 |
123 | 349 ;============================================================================= |
350 ; PLED_box : fills current box with current color. | |
351 ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
352 ; Outputs: (none) | |
353 ; Trashed: WREG, PROD | |
0 | 354 |
355 PLED_box: | |
123 | 356 ;---- Define Window ------------------------------------------------------ |
142 | 357 movff win_width,WREG |
358 bcf STATUS,C | |
359 rlcf WREG | |
360 movwf aa_width | |
361 movlw 0 | |
362 rlcf WREG | |
363 movwf aa_width+1 | |
364 rcall PLED_box_write | |
0 | 365 |
123 | 366 ;---- Fill Window -------------------------------------------------------- |
142 | 367 movlw 0x22 ; Start Writing Data to GRAM |
0 | 368 rcall PLED_CmdWrite |
369 | |
142 | 370 movff win_width,PRODH |
371 bsf oled_rs ; Data! | |
0 | 372 |
142 | 373 PLED_box2: ; Loop height times |
374 movff win_height,PRODL | |
375 PLED_box3: ; loop width times | |
0 | 376 movff win_color1,PORTD |
377 bcf oled_rw | |
142 | 378 bsf oled_rw ; Upper |
0 | 379 movff win_color2,PORTD |
380 bcf oled_rw | |
142 | 381 bsf oled_rw ; Lower |
0 | 382 |
383 movff win_color1,PORTD | |
384 bcf oled_rw | |
142 | 385 bsf oled_rw ; Upper |
0 | 386 movff win_color2,PORTD |
387 bcf oled_rw | |
142 | 388 bsf oled_rw ; Lower |
0 | 389 |
123 | 390 decfsz PRODL,F |
0 | 391 bra PLED_box3 |
123 | 392 decfsz PRODH,F |
0 | 393 bra PLED_box2 |
394 | |
142 | 395 movlw 0x00 ; NOP, to stop Address Update Counter |
396 bra PLED_CmdWrite ; returns... | |
0 | 397 |
123 | 398 ;============================================================================= |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
123
diff
changeset
|
399 ; PLED_ClearScreen: An optimized version of PLEX_box, for full screen black. |
123 | 400 ; Trashed: WREG, PROD |
0 | 401 |
402 PLED_ClearScreen: | |
403 movlw 0x35 ; VerticalStartAddress HIGH:LOW | |
404 rcall PLED_CmdWrite | |
123 | 405 mullw 0 |
406 rcall PLED_DataWrite_PROD | |
0 | 407 |
408 movlw 0x36 ; VerticalEndAddress HIGH:LOW | |
409 rcall PLED_CmdWrite | |
410 movlw 0x01 | |
123 | 411 rcall PLED_DataWrite |
0 | 412 movlw 0x3F |
123 | 413 rcall PLED_DataWrite |
0 | 414 |
415 movlw 0x37 ; HorizontalAddress START:END | |
416 rcall PLED_CmdWrite | |
417 movlw 0x00 | |
123 | 418 rcall PLED_DataWrite |
0 | 419 movlw 0xEF |
123 | 420 rcall PLED_DataWrite |
0 | 421 |
422 movlw 0x20 ; Start Address Horizontal (.0 - .239) | |
423 rcall PLED_CmdWrite | |
123 | 424 rcall PLED_DataWrite_PROD |
0 | 425 |
426 movlw 0x21 ; Start Address Vertical (.0 - .319) | |
427 rcall PLED_CmdWrite | |
123 | 428 rcall PLED_DataWrite_PROD |
0 | 429 |
430 movlw 0x22 ; Start Writing Data to GRAM | |
431 rcall PLED_CmdWrite | |
432 | |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
81
diff
changeset
|
433 ; See Page 101 of OLED Driver IC Datasheet how to handle rs/rw clocks |
0 | 434 bsf oled_rs ; Data! |
435 | |
123 | 436 movlw .160 |
437 movwf PRODH | |
0 | 438 PLED_ClearScreen2: |
123 | 439 movlw .240 |
440 movwf PRODL | |
0 | 441 PLED_ClearScreen3: |
442 | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
3
diff
changeset
|
443 clrf PORTD ; Need to generate trace here too. |
0 | 444 bcf oled_rw |
445 bsf oled_rw ; Upper | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
3
diff
changeset
|
446 |
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
3
diff
changeset
|
447 clrf PORTD ; Need to generate trace here too. |
0 | 448 bcf oled_rw |
449 bsf oled_rw ; Lower | |
450 | |
123 | 451 clrf PORTD ; Need to generate trace here too. |
452 bcf oled_rw | |
453 bsf oled_rw ; Upper | |
454 | |
455 clrf PORTD ; Need to generate trace here too. | |
456 bcf oled_rw | |
457 bsf oled_rw ; Lower | |
458 | |
459 decfsz PRODL,F | |
0 | 460 bra PLED_ClearScreen3 |
123 | 461 decfsz PRODH,F |
0 | 462 bra PLED_ClearScreen2 |
463 | |
464 movlw 0x00 ; NOP, to stop Address Update Counter | |
123 | 465 bra PLED_CmdWrite |
0 | 466 |
467 ; ----------------------------- | |
468 ; PLED Write Cmd via W | |
469 ; ----------------------------- | |
470 PLED_CmdWrite: | |
471 bcf oled_rs ; Command! | |
472 movwf PORTD ; Move Data to PORTD | |
473 bcf oled_rw | |
474 bsf oled_rw | |
475 return | |
476 | |
477 ; ----------------------------- | |
478 ; PLED Write Display Data via W | |
479 ; ----------------------------- | |
480 PLED_DataWrite: | |
123 | 481 bsf oled_rs ; Data! |
482 movwf PORTD ; Move Data to PORTD | |
483 bcf oled_rw | |
484 bsf oled_rw | |
485 return | |
0 | 486 |
487 ; ----------------------------- | |
488 ; PLED Data Cmd via W | |
489 ; ----------------------------- | |
123 | 490 PLED_DataWrite_PROD: |
0 | 491 bsf oled_rs ; Data! |
123 | 492 movff PRODH,PORTD ; Move high byte to PORTD (OLED is bigendian) |
493 bcf oled_rw | |
494 bsf oled_rw | |
495 movff PRODL,PORTD ; Move low byte to PORTD | |
0 | 496 bcf oled_rw |
497 bsf oled_rw | |
498 return | |
499 | |
500 ; ----------------------------- | |
501 ; PLED boot | |
502 ; ----------------------------- | |
503 PLED_boot: | |
504 bcf oled_hv | |
505 WAITMS d'32' | |
506 bsf oled_vdd | |
507 nop | |
508 bcf oled_cs | |
509 nop | |
510 bsf oled_nreset | |
3 | 511 ; WAITMS d'10' ; Quick wake-up |
512 WAITMS d'250' ; Standard wake-up | |
0 | 513 bsf oled_e_nwr |
514 nop | |
515 bcf oled_nreset | |
516 WAIT10US d'2' | |
517 bsf oled_nreset | |
518 WAITMS d'10' | |
519 | |
520 movlw 0x24 ; 80-System 8-Bit Mode | |
521 rcall PLED_CmdWrite | |
522 | |
523 movlw 0x02 ; RGB Interface Control (S6E63D6 Datasheet page 42) | |
524 rcall PLED_CmdWrite | |
525 movlw 0x00 ; X X X X X X X RM | |
123 | 526 rcall PLED_DataWrite |
0 | 527 movlw 0x00 ; DM X RIM1 RIM0 VSPL HSPL EPL DPL |
123 | 528 rcall PLED_DataWrite ; System Interface: RIM is ignored, Internal Clock |
0 | 529 |
530 movlw 0x03 ; Entry Mode (S6E63D6 Datasheet page 46) | |
531 rcall PLED_CmdWrite | |
142 | 532 movlw 0x00 ; CLS MDT1 MDT0 BGR X X X SS 65k Color |
123 | 533 rcall PLED_DataWrite |
142 | 534 |
535 ; Change direction for block-writes of pixels | |
536 lfsr FSR0,win_flags | |
537 btfss INDF0,0 ; BANK-SAFE bit test. | |
538 movlw b'00110000' ; [normal] X X I/D1 I/D0 X X X AM | |
539 btfsc INDF0,0 | |
540 movlw b'00000000' ; [flipped] X X I/D1 I/D0 X X X AM | |
123 | 541 rcall PLED_DataWrite |
0 | 542 |
543 movlw 0x18 | |
544 rcall PLED_CmdWrite | |
545 movlw 0x00 | |
123 | 546 rcall PLED_DataWrite |
0 | 547 movlw 0x28 |
123 | 548 rcall PLED_DataWrite |
0 | 549 |
550 movlw 0xF8 | |
551 rcall PLED_CmdWrite | |
552 movlw 0x00 | |
123 | 553 rcall PLED_DataWrite |
0 | 554 movlw 0x0F |
123 | 555 rcall PLED_DataWrite |
0 | 556 |
557 movlw 0xF9 | |
558 rcall PLED_CmdWrite | |
559 movlw 0x00 | |
123 | 560 rcall PLED_DataWrite |
0 | 561 movlw 0x0F |
123 | 562 rcall PLED_DataWrite |
0 | 563 |
564 movlw 0x10 | |
565 rcall PLED_CmdWrite | |
566 movlw 0x00 | |
123 | 567 rcall PLED_DataWrite |
0 | 568 movlw 0x00 |
123 | 569 rcall PLED_DataWrite |
0 | 570 |
571 ; Now Gamma settings... | |
572 rcall PLED_brightness_full | |
2 | 573 ;rcall PLED_brightness_low |
0 | 574 ; End Gamma Settings |
575 | |
576 rcall PLED_ClearScreen | |
577 | |
578 bsf oled_hv | |
579 WAITMS d'32' | |
580 | |
581 movlw 0x05 | |
582 rcall PLED_CmdWrite | |
583 movlw 0x00 | |
123 | 584 rcall PLED_DataWrite |
0 | 585 movlw 0x01 |
123 | 586 rcall PLED_DataWrite ; Display ON |
0 | 587 return |
588 | |
589 | |
590 PLED_brightness_full: | |
591 movlw 0x70 | |
592 rcall PLED_CmdWrite | |
593 movlw 0x1F | |
123 | 594 rcall PLED_DataWrite |
0 | 595 movlw 0x00 |
123 | 596 rcall PLED_DataWrite |
0 | 597 movlw 0x71 |
598 rcall PLED_CmdWrite | |
599 movlw 0x23 | |
123 | 600 rcall PLED_DataWrite |
0 | 601 movlw 0x80 |
123 | 602 rcall PLED_DataWrite |
0 | 603 movlw 0x72 |
604 rcall PLED_CmdWrite | |
605 movlw 0x2A | |
123 | 606 rcall PLED_DataWrite |
0 | 607 movlw 0x80 |
123 | 608 rcall PLED_DataWrite |
0 | 609 |
610 movlw 0x73 | |
611 rcall PLED_CmdWrite | |
612 movlw 0x15 | |
123 | 613 rcall PLED_DataWrite |
0 | 614 movlw 0x11 |
123 | 615 rcall PLED_DataWrite |
0 | 616 movlw 0x74 |
617 rcall PLED_CmdWrite | |
618 movlw 0x1C | |
123 | 619 rcall PLED_DataWrite |
0 | 620 movlw 0x11 |
123 | 621 rcall PLED_DataWrite |
0 | 622 |
623 movlw 0x75 | |
624 rcall PLED_CmdWrite | |
625 movlw 0x1B | |
123 | 626 rcall PLED_DataWrite |
0 | 627 movlw 0x15 |
123 | 628 rcall PLED_DataWrite |
0 | 629 movlw 0x76 |
630 rcall PLED_CmdWrite | |
631 movlw 0x1A | |
123 | 632 rcall PLED_DataWrite |
0 | 633 movlw 0x15 |
123 | 634 rcall PLED_DataWrite |
0 | 635 |
636 movlw 0x77 | |
637 rcall PLED_CmdWrite | |
638 movlw 0x1C | |
123 | 639 rcall PLED_DataWrite |
0 | 640 movlw 0x18 |
123 | 641 rcall PLED_DataWrite |
0 | 642 movlw 0x78 |
643 rcall PLED_CmdWrite | |
644 movlw 0x21 | |
123 | 645 rcall PLED_DataWrite |
0 | 646 movlw 0x15 |
123 | 647 rcall PLED_DataWrite |
0 | 648 |
649 return | |
650 | |
651 PLED_brightness_low: | |
652 movlw 0x70 | |
653 rcall PLED_CmdWrite | |
654 movlw 0x14 | |
123 | 655 rcall PLED_DataWrite |
0 | 656 movlw 0x00 |
123 | 657 rcall PLED_DataWrite |
0 | 658 movlw 0x71 |
659 rcall PLED_CmdWrite | |
660 movlw 0x17 | |
123 | 661 rcall PLED_DataWrite |
0 | 662 movlw 0x00 |
123 | 663 rcall PLED_DataWrite |
0 | 664 movlw 0x72 |
665 rcall PLED_CmdWrite | |
666 movlw 0x15 | |
123 | 667 rcall PLED_DataWrite |
0 | 668 movlw 0x80 |
123 | 669 rcall PLED_DataWrite |
0 | 670 |
671 movlw 0x73 | |
672 rcall PLED_CmdWrite | |
673 movlw 0x15 | |
123 | 674 rcall PLED_DataWrite |
0 | 675 movlw 0x11 |
123 | 676 rcall PLED_DataWrite |
0 | 677 movlw 0x74 |
678 rcall PLED_CmdWrite | |
679 movlw 0x14 | |
123 | 680 rcall PLED_DataWrite |
0 | 681 movlw 0x0B |
123 | 682 rcall PLED_DataWrite |
0 | 683 |
684 movlw 0x75 | |
685 rcall PLED_CmdWrite | |
686 movlw 0x1B | |
123 | 687 rcall PLED_DataWrite |
0 | 688 movlw 0x15 |
123 | 689 rcall PLED_DataWrite |
0 | 690 movlw 0x76 |
691 rcall PLED_CmdWrite | |
692 movlw 0x13 | |
123 | 693 rcall PLED_DataWrite |
0 | 694 movlw 0x0E |
123 | 695 rcall PLED_DataWrite |
0 | 696 |
697 movlw 0x77 | |
698 rcall PLED_CmdWrite | |
699 movlw 0x1C | |
123 | 700 rcall PLED_DataWrite |
0 | 701 movlw 0x18 |
123 | 702 rcall PLED_DataWrite |
0 | 703 movlw 0x78 |
704 rcall PLED_CmdWrite | |
705 movlw 0x15 | |
123 | 706 rcall PLED_DataWrite |
0 | 707 movlw 0x0E |
123 | 708 rcall PLED_DataWrite |
0 | 709 |
710 return | |
711 | |
712 PLED_set_color:;Converts 8Bit RGB b'RRRGGGBB' into 16Bit RGB b'RRRRRGGGGGGBBBBB' | |
713 movwf oled1_temp ; Get 8Bit RGB b'RRRGGGBB' | |
714 movff oled1_temp, oled2_temp ; Copy | |
715 | |
716 ; Mask Bit 7,6,5,4,3,2 | |
717 movlw b'00000011' | |
718 andwf oled2_temp,F | |
719 | |
720 movlw b'00000000' | |
721 dcfsnz oled2_temp,F | |
722 movlw b'01010000' | |
723 dcfsnz oled2_temp,F | |
724 movlw b'10100000' | |
725 dcfsnz oled2_temp,F | |
726 movlw b'11111000' | |
727 movwf oled3_temp ; Blue done. | |
728 | |
729 movff oled1_temp, oled2_temp ; Copy | |
730 ; Mask Bit 7,6,5,1,0 | |
731 movlw b'00011100' | |
732 andwf oled2_temp,F | |
733 rrncf oled2_temp,F | |
734 rrncf oled2_temp,F | |
735 | |
736 movlw b'00000000' | |
737 dcfsnz oled2_temp,F | |
738 movlw b'00000100' | |
739 dcfsnz oled2_temp,F | |
740 movlw b'00001000' | |
741 dcfsnz oled2_temp,F | |
742 movlw b'00001100' | |
743 dcfsnz oled2_temp,F | |
744 movlw b'00010000' | |
745 dcfsnz oled2_temp,F | |
746 movlw b'00010100' | |
747 dcfsnz oled2_temp,F | |
748 movlw b'00100000' | |
749 dcfsnz oled2_temp,F | |
750 movlw b'00111111' | |
751 movwf oled4_temp | |
752 | |
753 rrcf oled4_temp,F | |
754 rrcf oled3_temp,F | |
755 | |
756 rrcf oled4_temp,F | |
757 rrcf oled3_temp,F | |
758 | |
759 rrcf oled4_temp,F | |
760 rrcf oled3_temp,F ; oled3_temp (b'GGGBBBBB') done. | |
761 | |
762 movff oled1_temp, oled2_temp ; Copy | |
763 clrf oled1_temp | |
764 | |
765 rrcf oled4_temp,F | |
766 rrcf oled1_temp,F | |
767 | |
768 rrcf oled4_temp,F | |
769 rrcf oled1_temp,F | |
770 | |
771 rrcf oled4_temp,F | |
772 rrcf oled1_temp,F ; Green done. | |
773 | |
774 ; Mask Bit 4,3,2,1,0 | |
775 movlw b'11100000' | |
776 andwf oled2_temp,F | |
777 | |
778 rrncf oled2_temp,F | |
779 rrncf oled2_temp,F | |
780 rrncf oled2_temp,F | |
781 rrncf oled2_temp,F | |
782 rrncf oled2_temp,F | |
783 | |
784 movlw b'00000000' | |
785 dcfsnz oled2_temp,F | |
786 movlw b'00000100' | |
787 dcfsnz oled2_temp,F | |
788 movlw b'00001000' | |
789 dcfsnz oled2_temp,F | |
790 movlw b'00001100' | |
791 dcfsnz oled2_temp,F | |
792 movlw b'00010000' | |
793 dcfsnz oled2_temp,F | |
794 movlw b'00010100' | |
795 dcfsnz oled2_temp,F | |
796 movlw b'00100000' | |
797 dcfsnz oled2_temp,F | |
798 movlw b'00111111' | |
799 movwf oled4_temp | |
800 | |
801 rrcf oled4_temp,F | |
802 rrcf oled1_temp,F | |
803 | |
804 rrcf oled4_temp,F | |
805 rrcf oled1_temp,F | |
806 | |
807 rrcf oled4_temp,F | |
808 rrcf oled1_temp,F | |
809 | |
810 rrcf oled4_temp,F | |
811 rrcf oled1_temp,F | |
812 | |
813 rrcf oled4_temp,F | |
814 rrcf oled1_temp,F ; Red done. | |
815 | |
816 movff oled1_temp,win_color1 | |
817 movff oled3_temp,win_color2 ; Set Bank0 Color registers... | |
818 return | |
819 |