Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/eeprom_rs232.asm @ 453:38b38b105782
compute desat based on 30min old surface pressure
author | heinrichsweikamp |
---|---|
date | Mon, 22 Aug 2011 17:36:30 +0200 |
parents | 908d0013727e |
children | 86fc79735d3b |
rev | line source |
---|---|
0 | 1 ; OSTC - diving computer code |
2 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
3 | |
4 ; This program is free software: you can redistribute it and/or modify | |
5 ; it under the terms of the GNU General Public License as published by | |
6 ; the Free Software Foundation, either version 3 of the License, or | |
7 ; (at your option) any later version. | |
8 | |
9 ; This program is distributed in the hope that it will be useful, | |
10 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 ; GNU General Public License for more details. | |
13 | |
14 ; You should have received a copy of the GNU General Public License | |
15 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | |
17 | |
18 ; internal EEPROM and RS232 UART interface | |
19 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
20 ; written: 02/01/06 | |
21 ; last updated: 090109 | |
22 ; known bugs: | |
23 ; ToDo: | |
24 | |
25 write_int_eeprom macro eeprom_address | |
26 movlw eeprom_address | |
27 call write_int_eeprom_1 | |
28 endm | |
29 | |
30 write_int_eeprom_1: | |
31 movwf EEADR | |
32 bra write_eeprom ; writes and "returns" after write | |
33 | |
34 read_int_eeprom macro eeprom_address | |
35 movlw eeprom_address | |
36 call read_int_eeprom_1 | |
37 endm | |
38 | |
39 read_int_eeprom_1: | |
40 movwf EEADR | |
41 bra read_eeprom ; reads and "returns" after write | |
42 | |
43 internal_eeprom_access_b1: ; accesses internal EEPROM BANK 1 via the UART | |
44 bcf internal_eeprom_write2 ; clear flag! | |
45 movlw d'1' | |
46 movwf EEADRH ;BANK1 | |
47 movlw "i" | |
48 bra internal_eeprom_access1 ; Continue with bank1 and bank0 common routines | |
49 | |
50 internal_eeprom_access_b0: ; accesses internal EEPROM BANK 0 via the UART | |
51 bcf internal_eeprom_write ; clear flag! | |
52 clrf EEADRH ; Bank0 | |
53 movlw "d" | |
54 ; bra internal_eeprom_access1 ; Continue with bank1 and bank0 common routines | |
55 | |
56 internal_eeprom_access1: | |
57 movwf TXREG ; Send command echo ("i" or "d") | |
58 bsf no_sensor_int ; No Sensor Interrupt | |
59 movlw d'4' | |
60 movwf EEADR | |
61 bcf PIE1,RCIE ; no interrupt for UART | |
62 bcf PIR1,RCIF ; clear flag | |
21 | 63 bsf LED_blue ; LEDusb ON |
0 | 64 |
65 internal_eeprom_access2: | |
66 rcall rs232_get_byte ; Get byte to write... | |
67 movff RCREG,EEDATA ; copy to write register | |
21 | 68 bsf LED_red ; show activity |
0 | 69 |
70 btfsc rs232_recieve_overflow ; overflow recieved? | |
71 bra internal_eeprom_access3 ; Yes, abort! | |
72 | |
73 rcall write_eeprom ; No, write one byte | |
21 | 74 bcf LED_red |
0 | 75 movff EEDATA,TXREG ; Send echo! |
76 rcall rs232_wait_tx ; Wait for UART | |
77 incfsz EEADR,F ; Do until EEADR rolls to zero | |
78 bra internal_eeprom_access2 | |
79 internal_eeprom_access2a: | |
21 | 80 bcf LED_blue ; LEDusb OFF |
0 | 81 bcf PIR1,RCIF ; clear flag |
82 bsf PIE1,RCIE ; re-enable interrupt for UART | |
83 clrf EEADRH ; Point to Bank0 again | |
84 bcf rs232_recieve_overflow ; Clear Flag | |
85 bcf no_sensor_int ; Renable Sensor Interrupt | |
86 goto restart | |
87 | |
88 internal_eeprom_access3: ; Overflow! Abort writing | |
89 movlw 0xFF | |
90 movwf TXREG ; Error Byte | |
91 bra internal_eeprom_access2a ; Quit | |
92 | |
93 read_eeprom: ; reads from internal eeprom | |
94 bcf EECON1,EEPGD | |
95 bcf EECON1,CFGS | |
96 bsf EECON1,RD | |
97 return | |
98 | |
99 write_eeprom: ; writes into internal eeprom | |
100 bcf EECON1,EEPGD | |
101 bcf EECON1,CFGS | |
102 bsf EECON1,WREN | |
103 | |
104 bcf INTCON,GIE ; even the RTC will be delayed for the next 5 instructions... | |
105 movlw 0x55 | |
106 movwf EECON2 | |
107 movlw 0xAA | |
108 movwf EECON2 | |
109 bsf EECON1,WR | |
110 bsf INTCON,GIE ; ...but the flag for the ISR routines were still set, so they will interrupt now! | |
111 | |
112 write_eep2: | |
113 btfsc EECON1,WR | |
114 bra write_eep2 ; wait about 4ms... | |
115 bcf EECON1,WREN | |
116 return | |
117 | |
118 enable_rs232: ;IO Ports must be input in order to activate the module | |
119 bsf TRISC,6 ; TX Pin | |
120 bsf TRISC,7 ; RX Pin | |
121 | |
122 movlw b'00100100' ; BRGH=1 | |
123 movwf TXSTA | |
124 movlw b'10010000' | |
125 movwf RCSTA | |
126 movlw b'00001000' | |
127 movwf BAUDCON | |
128 clrf SPBRGH | |
129 movlw d'34' ; Take care of the baud rate when changing Fosc! | |
130 movwf SPBRG | |
131 clrf RCREG | |
132 clrf PIR1 | |
133 bsf PIE1,RCIE ; enable interrupt for RS232 | |
134 return | |
135 | |
136 disable_rs232: | |
137 clrf TXSTA | |
138 clrf RCSTA | |
139 bcf PIE1,RCIE ; disable interrupt for RS232 | |
140 bcf TRISC,6 ; TX Pin | |
141 bcf TRISC,7 ; RX Pin | |
142 bcf PORTC,6 ; TX Pin | |
143 bcf PORTC,7 ; RX Pin | |
144 return | |
145 | |
146 rs232_wait_tx: | |
147 btfss RCSTA,SPEN ; Transmitter active? | |
148 return ; No, return! | |
149 nop | |
150 btfss TXSTA,TRMT ; RS232 Busy? | |
151 bra rs232_wait_tx ; yes, wait... | |
152 return ; Done. | |
153 | |
154 | |
155 rs232_get_byte: | |
156 bcf PIR1,RCIF ; clear flag | |
157 bcf rs232_recieve_overflow ; clear flag | |
158 clrf uart1_temp | |
159 rs232_get_byte2: | |
160 clrf uart2_temp | |
161 rs232_get_byte3: | |
162 btfsc PIR1,RCIF ; data arrived? | |
163 return ; data received | |
164 | |
165 nop ; Wait 1us * 255 * 255 = 65ms+x Timeout/Byte | |
166 nop | |
167 nop | |
168 nop | |
169 btfsc PIR1,RCIF ; data arrived? | |
170 return | |
171 | |
172 nop | |
173 nop | |
174 nop | |
175 nop | |
176 btfsc PIR1,RCIF ; data arrived? | |
177 return | |
178 | |
179 nop | |
180 nop | |
181 nop | |
182 nop | |
183 btfsc PIR1,RCIF ; data arrived? | |
184 return | |
185 nop | |
186 nop | |
187 nop | |
188 nop | |
189 btfsc PIR1,RCIF ; data arrived? | |
190 return | |
191 | |
192 decfsz uart2_temp,F | |
193 bra rs232_get_byte3 | |
194 decfsz uart1_temp,F | |
195 bra rs232_get_byte2 | |
196 ; timeout occoured (about 20ms) | |
197 bcf RCSTA,CREN ; Clear receiver status | |
198 bsf RCSTA,CREN | |
199 bsf rs232_recieve_overflow ; set flag | |
283
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
200 return ; and return anyway |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
201 |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
202 uart_115k_bootloader: |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
203 bcf PIE1,RCIE ; disable interrupt for RS232 |
284
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
204 ; bcf PIR1,RCIF ; clear flag |
283
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
205 call PLED_ClearScreen ; Clear screen |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
206 movlw color_red |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
207 call PLED_set_color ; Set to Red |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
208 DISPLAYTEXTH d'302' ; Bootloader |
284
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
209 movlw d'4' ; one second |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
210 movwf uart1_temp |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
211 uart_115k_bootloader0: |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
212 btfsc PIR1,RCIF ; New byte in UART? |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
213 bra uart_115k_bootloader1 ; Yes, Check if 0xC1 |
283
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
214 WAITMS d'250' |
284
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
215 decfsz uart1_temp,F |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
216 bra uart_115k_bootloader0 |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
217 uart_115k_bootloader2: |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
218 DISPLAYTEXTH d'304' ; Aborted! |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
219 movlw d'8' ; Two seconds |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
220 movwf uart1_temp |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
221 uart_115k_bootloader3: |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
222 WAITMS d'250' |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
223 decfsz uart1_temp,F |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
224 bra uart_115k_bootloader3 |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
225 goto restart |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
226 |
908d0013727e
115200 baud bootloader tested and debugged
heinrichsweikamp
parents:
283
diff
changeset
|
227 uart_115k_bootloader1: |
283
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
228 movlw 0xC1 |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
229 cpfseq RCREG ; 115200Baud Bootloader request? |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
230 bra uart_115k_bootloader2 ; No, Abort |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
231 DISPLAYTEXTH d'303' ; Yes, "Please wait!" |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
232 clrf INTCON ; Interrupts disabled |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
233 bcf PIR1,RCIF ; clear flag |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
50
diff
changeset
|
234 goto 0x17F56 ; Enter straight into bootloader. Good luck! |