0
|
1 ;=============================================================================
|
|
2 ;
|
634
|
3 ; File hwos.asm * combined next generation V3.09.4e
|
0
|
4 ;
|
275
|
5 ; Definition of the hwOS dive computer platform.
|
0
|
6 ;
|
|
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
|
|
8 ;=============================================================================
|
|
9 ; HISTORY
|
604
|
10 ; 2011-05-24 : [jDG] Cleanups from initial Matthias code
|
|
11 ; 2011-06-24 : [MH] Added clock speeds
|
|
12
|
623
|
13 ;=============================================================================
|
|
14
|
634
|
15 #DEFINE INSIDE_HWOS_ASM
|
604
|
16
|
275
|
17 #include "hwos.inc"
|
623
|
18 #include "eeprom_rs232.inc"
|
0
|
19
|
634
|
20 ;----------------------------- PIC Configuration -----------------------------
|
|
21 ;
|
|
22 CONFIG RETEN = OFF ; regulator power while in sleep mode controlled by SRETEN bit
|
|
23 CONFIG SOSCSEL = HIGH ; high power SOSC circuit selected
|
|
24 CONFIG XINST = OFF ; extended instruction set disabled
|
623
|
25 CONFIG FOSC = INTIO2 ; internal RC oscillator, no clock-out
|
634
|
26 CONFIG PLLCFG = OFF ; oscillator used directly
|
|
27 CONFIG IESO = OFF ; two-speed start-up disabled
|
|
28 CONFIG PWRTEN = OFF ; power-up timer disabled, because incompatible with ICD3 (Ri-400)
|
|
29 CONFIG BOREN = ON ; brown-out reset controlled with SBOREN bit
|
|
30 CONFIG BORV = 2 ; brown-out reset voltage 2.0V
|
|
31 CONFIG BORPWR = MEDIUM ; brown-out monitoring set to medium power level
|
|
32 CONFIG WDTEN = ON ; watchdog timer enabled, controlled by SWDTEN bit
|
|
33 CONFIG WDTPS = 128 ; watchdog timer post-scaler 1:128
|
|
34 CONFIG RTCOSC = SOSCREF ; RTCC uses SOSC as ref clock
|
|
35 CONFIG MCLRE = ON ; MCLR enabled, RG5 disabled
|
|
36 CONFIG CCP2MX = PORTBE ; ECCP2 muxed with RE7 (micro-controller mode) /RB3 (other modes)
|
623
|
37
|
|
38
|
|
39 ;---------------------------- Bank0 ACCESS RAM -------------------------------
|
634
|
40 ;
|
623
|
41 ac_ram equ 0x000
|
|
42 ac_ram udata_acs ac_ram ; access RAM data
|
|
43
|
|
44
|
|
45 ;---- Flags - Hardware Descriptors
|
|
46 HW_descriptor res 1 ; OSTC - model descriptor (cleared & rebuilt in restart)
|
|
47 HW_variants res 1 ; OSTC - model variants (NOT cleared in restart)
|
628
|
48
|
623
|
49 ;---- Flags - Hardware States
|
628
|
50 HW_flags_state1 res 1 ; hardware - states 1
|
|
51 HW_flags_state2 res 1 ; hardware - states 2
|
623
|
52
|
|
53 ;--- Flags - Operating System
|
|
54 OS_flags_persist res 1 ; system - persistent settings (NOT cleared in restart)
|
|
55 OS_flags_ISR1 res 1 ; system - ISR control 1
|
|
56 OS_flags_ISR2 res 1 ; system - ISR control 2
|
|
57
|
|
58 ;---- Flags - Operating Modes
|
|
59 OM_flags_mode res 1 ; operating modes
|
|
60
|
|
61 ;---- Flags - Dive Modes
|
|
62 DM_flags_deco res 1 ; dive mode - main dive & deco mode
|
|
63
|
|
64 ;---- CPU Speed
|
|
65 cpu_speed_request res 1 ; requested CPU speed: =1: eco, =2: normal, =3: fastest
|
|
66 cpu_speed_state res 1 ; current CPU speed: =1: eco, =2: normal, =3: fastest
|
|
67
|
|
68 ;---- Timebase & Eventbase
|
|
69 timebase res 1 ; timed trigger flags and running timebase
|
|
70 eventbase res 1 ; event trigger flags
|
|
71
|
|
72 ;---- Timeout-Timer Service
|
|
73 isr_timeout_timer res 1 ; timeout timer
|
|
74 isr_timeout_reload res 1 ; timeout reload value
|
|
75
|
|
76 ;---- Dive Times
|
|
77 total_divetime_secs res 2 ; total dive time, seconds
|
|
78 counted_divetime_mins res 2 ; counted dive time, minutes | Attention: do not change the position of
|
|
79 counted_divetime_secs res 1 ; counted dive time, seconds | these 2 Variables relative to each other!
|
604
|
80
|
623
|
81 ;---- Dive Times / Apnoe
|
|
82 apnoe_surface_mins res 1 ; surface time minutes | Attention: do not change the position of
|
|
83 apnoe_surface_secs res 1 ; surface time seconds | these 2 Variables relative to each other!
|
|
84
|
|
85 apnoe_dive_mins res 1 ; dive time minutes | Attention: do not change the position of
|
|
86 apnoe_dive_secs res 1 ; dive time seconds | these 2 Variables relative to each other!
|
|
87
|
|
88 ;---- Profile Recording
|
|
89 sampling_rate res 1 ; configured sampling rate
|
|
90 sampling_timer res 1 ; sampling timer
|
|
91
|
|
92 ;---- Simulator Mode
|
|
93 simulatormode_depth res 1 ; depth in simulator mode
|
|
94
|
|
95 ;---- HUD / Sensor Data
|
|
96 hud_status_byte res 1 ; HUD status byte, see definition of flags | Attention: keep relative position
|
|
97 hud_battery_mv res 2 ; hud/ppo2 monitor battery voltage in mV | between these two variables!
|
|
98
|
634
|
99 ;---- Battery Management
|
|
100 battery_capacity_internal res 2 ; for internal battery gauging
|
|
101 battery_capacity res 2 ; for battery gauge IC
|
|
102 battery_offset res 2 ; for battery gauge IC
|
|
103 battery_type res 1 ; =0:1.5V, =1:3.6V Saft, =2:LiIon 3.7V/0.8Ah, =3:LiIon 3.7V/3.1Ah, =4: LiIon 3.7V/2.3Ah
|
|
104 battery_accumulated_charge res 2 ; raw values in battery gauge IC
|
|
105 battery_temperature res 2 ; battery temperature in 0.1 Kelvin
|
|
106 gauge_status_byte res 1 ; gauge IC status byte
|
623
|
107
|
634
|
108
|
|
109
|
|
110 ; 40 byte user data
|
623
|
111 ; 32 byte tmp data placed by C compiler
|
|
112 ; 20 byte variables placed by math library
|
|
113 ; ==
|
634
|
114 ; 92 byte used, 4 byte free (96 byte total available)
|
623
|
115
|
631
|
116
|
623
|
117 global HW_descriptor
|
|
118 global HW_variants
|
628
|
119 global HW_flags_state1
|
|
120 global HW_flags_state2
|
623
|
121 global OS_flags_persist
|
|
122 global OS_flags_ISR1
|
|
123 global OS_flags_ISR2
|
|
124 global OM_flags_mode
|
|
125 global DM_flags_deco
|
|
126 global cpu_speed_request
|
|
127 global cpu_speed_state
|
|
128 global timebase
|
|
129 global eventbase
|
|
130 global isr_timeout_timer
|
|
131 global isr_timeout_reload
|
|
132 global total_divetime_secs
|
|
133 global counted_divetime_mins
|
|
134 global counted_divetime_secs
|
|
135 global apnoe_surface_secs
|
|
136 global apnoe_surface_mins
|
|
137 global apnoe_dive_secs
|
|
138 global apnoe_dive_mins
|
|
139 global sampling_rate
|
|
140 global sampling_timer
|
|
141 global simulatormode_depth
|
|
142 global hud_status_byte
|
|
143 global hud_battery_mv
|
634
|
144 global battery_capacity_internal
|
|
145 global battery_capacity
|
|
146 global battery_offset
|
|
147 global battery_type
|
|
148 global battery_accumulated_charge
|
|
149 global battery_temperature
|
|
150 global gauge_status_byte
|
|
151
|
|
152
|
|
153 ;=============================================================================
|
|
154 hwos1 CODE
|
|
155 ;=============================================================================
|
623
|
156
|
|
157 ;-----------------------------------------------------------------------------
|
634
|
158 ; Master Initialization of Hardware Resources
|
|
159 ;
|
604
|
160 global init_ostc
|
275
|
161 init_ostc:
|
623
|
162
|
|
163 ; Oscillator
|
|
164 banksel common ; select bank common
|
634
|
165 movlw b'01110010' ; select 16 MHz INTOSC
|
|
166 movwf OSCCON ; ...
|
|
167 movlw b'00001000' ; secondary oscillator running
|
|
168 movwf OSCCON2 ; ...
|
|
169 movlw b'00000000' ; 4x PLL disable (Bit 6) - only works with 8 or 16MHz (=32 or 64MHz)
|
|
170 movwf OSCTUNE ; ...
|
608
|
171
|
623
|
172 movlw coding_speed_normal ; coding for normal CPU speed
|
|
173 movwf cpu_speed_request ; store CPU shall run with normal speed
|
|
174 movwf cpu_speed_state ; store CPU does run with normal speed
|
608
|
175
|
623
|
176 ;bcf RCON,SBOREN ; brown-out off (not needed here, is handled in bootloader)
|
604
|
177 bcf RCON,IPEN ; priority interrupts off
|
608
|
178
|
604
|
179 banksel WDTCON
|
634
|
180 movlw b'10000000' ; setup watchdog
|
|
181 movwf WDTCON ; ...
|
0
|
182
|
608
|
183
|
0
|
184 ; I/O Ports
|
634
|
185 banksel 0xF16 ; addresses F16h ... F5Fh are not part of the access RAM
|
|
186
|
604
|
187 clrf REFOCON ; no reference oscillator active on REFO pin
|
|
188 clrf ODCON1 ; disable open drain capability
|
|
189 clrf ODCON2 ; disable open drain capability
|
|
190 clrf ODCON3 ; disable open drain capability
|
634
|
191 clrf CM1CON ; disable comparator 1
|
|
192 clrf CM2CON ; disable comparator 2
|
|
193 clrf CM3CON ; disable comparator 3
|
0
|
194
|
634
|
195 movlw b'11000000' ; ANSEL0: AN7, AN6 -> analog inputs, PORTA is digital
|
|
196 movwf ANCON0 ; ...
|
|
197 movlw b'00000111' ; ANSEL1: AN8, AN9, AN10 -> analog input
|
|
198 movwf ANCON1 ; ...
|
|
199 movlw b'00000010' ; ANSEL2: AN17 -> analog input
|
|
200 movwf ANCON2 ; ...
|
|
201
|
|
202 banksel common ; back to bank common
|
0
|
203
|
604
|
204 ; movlw b'00000000' ; 1= input -> Data TFT_high
|
634
|
205 clrf TRISA ; ...
|
604
|
206 ; movlw b'00000000' ; init port
|
634
|
207 clrf PORTA ; ...
|
0
|
208
|
604
|
209 movlw b'00000011' ; 1= input, (RB0, RB1) -> switches, RB2 -> Power_MCP, RB3 -> s8_npower, RB4 -> LED_green/rx_nreset, RB5 -> /TFT_POWER
|
634
|
210 movwf TRISB ; ...
|
604
|
211 movlw b'00111000' ; init port, rx_nreset=1 -> hard reset RX
|
634
|
212 movwf PORTB ; ...
|
0
|
213
|
604
|
214 movlw b'10011010' ; 1= input, (RC0, RC1) -> SOSC, RC2 -> TFT_LED_PWM, (RC3,RC4) -> I²C, RC5 -> MOSI_MS5541, (RC6, RC7) -> UART1
|
634
|
215 movwf TRISC ; ...
|
604
|
216 ; movlw b'00000000' ; init port
|
634
|
217 clrf PORTC ; ...
|
0
|
218
|
604
|
219 movlw b'00100000' ; 1= input, RD0 -> TFT_NCS, RD1 -> TFT_RS, RD2 -> TFT_NWR, RD3 -> TFT_RD, RD4 -> MOSI_Flash, RD5 -> MISO_Flash, RD6 -> CLK_Flash, RD7 -> TFT_NRESET
|
634
|
220 movwf TRISD ; ...
|
604
|
221 ; movlw b'00000000' ; init port
|
634
|
222 clrf PORTD ; ...
|
0
|
223
|
628
|
224 movlw b'00100000' ; 1= input, RE0 -> not_Power_BLE, RE1 -> Power_IR, RE2 -> CS_MCP, RE3 -> LED_blue, RE4 -> power_sw1, RE5 -> leave as input
|
634
|
225 movwf TRISE ; ...
|
627
|
226 movlw b'00010001' ; init port
|
634
|
227 movwf PORTE ; ...
|
0
|
228
|
604
|
229 movlw b'01111110' ; 1= input, (RF1, RF2, RF3, RF4, RF5) -> Analog
|
634
|
230 movwf TRISF ; ...
|
604
|
231 ; movlw b'00000000' ; init port
|
634
|
232 clrf PORTF ; ...
|
0
|
233
|
628
|
234 movlw b'00001110' ; 1= input, <7:6> not implemented, RG0 -> TX3_PIEZO_CFG, , RG1 -> TX2, RG2 -> RX2, RG3 -> AN17_RSSI, RG4 -> SOSC_OUT, RG5 -> /RESET
|
634
|
235 movwf TRISG ; ...
|
604
|
236 movlw b'00000001' ; init port
|
634
|
237 movwf PORTG ; ...
|
0
|
238
|
604
|
239 ; movlw b'00000000' ; 1= input -> Data TFT_low
|
634
|
240 clrf TRISH ; ...
|
604
|
241 ; movlw b'00000000' ; init port
|
634
|
242 clrf PORTH ; ...
|
0
|
243
|
623
|
244 movlw b'10011011' ; 1= input, RJ4 -> vusb_in, RJ5 -> power_sw2, RJ6 -> CLK_MS5541, RJ7 -> MISO_MS5541
|
634
|
245 movwf TRISJ ; ...
|
604
|
246 movlw b'00100000' ; init port
|
634
|
247 movwf PORTJ ; ...
|
0
|
248
|
623
|
249
|
618
|
250 ; disable Charger by default
|
623
|
251 bsf charge_disable ; set charging-inhibit signal
|
|
252 bcf charge_enable ; activate charging-inhibit signal
|
|
253
|
|
254
|
634
|
255 ; Timer 7 for 62.5 ms Interrupt (Sensor States)
|
|
256 banksel 0xF16 ; addresses F16h...F5Fh are not part of the access RAM
|
|
257 clrf T7GCON ; clear timer 7 gate control register
|
|
258 movlw b'10001101' ; bit 7-6: 10 = clock source SOSC/SCLKI (with bit 3 = 1)
|
|
259 ; bit 5-4: 00 = 1:1 prescaler
|
|
260 ; bit 3: 1 = clock source SOSC/SCLKI (with bit 7-6 = 10)
|
|
261 ; bit 2: 1 = DO NOT synchronize external clock input (else OSTC won't wake up from sleep!)
|
|
262 ; bit 1: 0 = 2x 8 bit operation
|
|
263 ; bit 0: 1 = timer enabled
|
|
264 ; 32768 Hz clock source, 1:1 prescaler -> timer counts at 30.51757813 µs/bit
|
|
265 movwf T7CON ; ...
|
|
266 movlw .248 ; load timer 7, high byte (8x256 ticks -> 62.5 ms)
|
|
267 movwf TMR7H ; ...
|
|
268 clrf TMR7L ; load timer 7, low byte
|
0
|
269
|
623
|
270
|
634
|
271 ; Timer 0 - not used
|
|
272 movlw b'00000001' ; timer0 stopped (1:4 prescaler)
|
|
273 movwf T0CON ; ...
|
|
274
|
|
275
|
|
276 ; Timer 1 - Button hold-down Timer
|
|
277 ; movlw b'10001100' ; old setting
|
|
278 movlw b'10001010' ; bit 7-6: 10 = clock source SOSC/SCLKI (with bit 3 = 1)
|
|
279 ; bit 5-4: 00 = 1:1 prescaler
|
|
280 ; bit 3: 1 = clock source SOSC/SCLKI (with bit 7-6 = 10)
|
|
281 ; bit 2: 0 = synchronize external clock input
|
|
282 ; bit 1: 1 = 16 bit operation
|
|
283 ; bit 0: 0 = timer stopped
|
|
284 ; 32768 Hz clock source, 1:1 prescaler -> timer counts at 30.51757813 µs/bit
|
|
285 movwf T1CON ; ...
|
0
|
286
|
623
|
287
|
0
|
288 ; RTCC
|
623
|
289 banksel 0xF16 ; addresses, F16h through F5Fh, are also used by SFRs, but are not part of the access RAM
|
634
|
290 movlw 0x55 ; unlock sequence for RTCWREN
|
|
291 movwf EECON2 ; ...
|
|
292 movlw 0xAA ; ...
|
|
293 movwf EECON2 ; ...
|
|
294 bsf RTCCFG,RTCWREN ; unlock access to RTC
|
|
295 bsf RTCCFG,RTCPTR1 ; set pointer register to b'11'
|
|
296 bsf RTCCFG,RTCPTR0 ; ..
|
623
|
297 bsf RTCCFG,RTCEN ; module enable
|
|
298 bsf RTCCFG,RTCOE ; output enable
|
|
299 movlw b'00000100' ; 32768 Hz SOCS on RTCC pin (PORTG,4) Bit7-5: pull-ups for Port D, E and J
|
634
|
300 movwf PADCFG1 ; ...
|
|
301 movlw b'11000000' ; 1/2 second alarm
|
|
302 movwf ALRMCFG ; ...
|
|
303 movlw d'1' ; select alarm repeat counter to 1
|
|
304 movwf ALRMRPT ; ...
|
|
305 movlw 0x55 ; unlock sequence for RTCWREN
|
|
306 movwf EECON2 ; ...
|
|
307 movlw 0xAA ; ...
|
|
308 movwf EECON2 ; ...
|
|
309 bcf RTCCFG,RTCWREN ; lock access to RTC
|
|
310 banksel common ; back to bank common
|
623
|
311
|
614
|
312
|
0
|
313 ; A/D Converter
|
|
314 movlw b'00011000' ; power off ADC, select AN6
|
634
|
315 movwf ADCON0 ; ...
|
0
|
316 movlw b'00100000' ; 2.048V Vref+
|
634
|
317 movwf ADCON1 ; ...
|
631
|
318 movlw b'10111010' ; right aligned, 20 x T_AD acquisition time, FOSC/32 -> max. 40 MHz device clock speed
|
634
|
319 movwf ADCON2 ; ...
|
0
|
320
|
623
|
321
|
634
|
322 ; Serial Port 1 (TRISC6/7)
|
631
|
323 movlw b'00001000' ; switch baud generator to 16 bit mode (BRG16=1)
|
|
324 movwf BAUDCON1 ; ...
|
|
325 ; SPBRGH:SPBRG = .34 : 114285 BAUD @ 16MHz (+0.79% error at 115200 baud)
|
|
326 ; SPBRGH:SPBRG = .207 : 19230 BAUD @ 16MHz (-0.16% error at 19200 baud)
|
|
327 movlw .34 ; select 114285 baud (low byte)
|
|
328 movwf SPBRG1 ; ...
|
|
329 clrf SPBRGH1 ; ... (high byte)
|
204
|
330
|
631
|
331 clrf RCSTA1 ; disable UART RX
|
|
332 clrf TXSTA1 ; disable UART TX
|
|
333 bcf PORTC,6 ; tie TX output hard to GND
|
0
|
334
|
623
|
335
|
634
|
336 ; Serial Port 2 (TRISG2) for IR/S8 digital Interface
|
623
|
337 ;
|
|
338 ; - will be initialized by enable_ir_s8 (eeprom_rs232.asm) in case IR/S8 shall be available
|
|
339
|
0
|
340
|
623
|
341 ; Timer 3 for IR-RX Timeout
|
|
342 IFDEF _external_sensor
|
634
|
343 clrf T3GCON ; clear Timer3 gate control register
|
|
344 ; movlw b'10001101' ; old value
|
|
345 movlw b'10001011' ; bit 7-6: 10 = clock source SOSC/SCLKI (with bit 3 = 1)
|
|
346 ; bit 5-4: 00 = 1:1 prescaler
|
|
347 ; bit 3: 1 = clock source SOSC/SCLKI (with bit 7-6 = 10)
|
|
348 ; bit 2: 0 = synchronize external clock input
|
|
349 ; bit 1: 1 = 16 bit operation
|
|
350 ; bit 0: 1 = timer enabled
|
|
351 ; 32768 Hz clock source, 1:1 prescaler -> timer counts at 30.51757813 µs/bit
|
|
352 movwf T3CON ; ...
|
623
|
353 ENDIF
|
|
354
|
0
|
355
|
|
356 ; SPI Module(s)
|
|
357 ; SPI2: External Flash
|
634
|
358 movlw b'00110000' ; set up SPI module
|
|
359 movwf SSP2CON1 ; ...
|
|
360 clrf SSP2STAT ; ...
|
|
361 ; resulting bit clocks: 0.25 MHz @ 1 MHz CPU clock (Eco)
|
|
362 ; 4.00 MHz @ 16 MHz CPU clock (Normal)
|
|
363 ; 16.00 MHz @ 64 MHz CPU clock (Fastest)
|
623
|
364
|
0
|
365
|
|
366 ; MSSP1 Module: I2C Master
|
634
|
367 movlw b'00101000' ; set up I2C to master mode
|
|
368 movwf SSP1CON1 ; ...
|
|
369 clrf SSP1CON2 ; ...
|
|
370 movlw 0x9C ; select speed 100kHz @ 64MHz Fosc
|
|
371 movwf SSP1ADD ; ...
|
0
|
372
|
623
|
373
|
0
|
374 ; PWM Module(s)
|
623
|
375 ; PWM 1 for LED dimming
|
634
|
376 movlw b'00001100' ; set up PWM module
|
|
377 movwf CCP1CON ; ...
|
|
378 movlw b'00000001' ; pulse steering disabled
|
|
379 movwf PSTR1CON ; ...
|
|
380 movlw d'254' ; select period
|
|
381 movwf PR2 ; ...
|
604
|
382 ; 255 is max brightness (300 mW)
|
634
|
383 clrf CCPR1L ; duty cycle, low byte
|
|
384 clrf CCPR1H ; duty cycle, high byte
|
|
385 movlw T2CON_NORMAL ; set timer for normal dimming
|
|
386 movwf T2CON ; ...
|
623
|
387
|
0
|
388
|
634
|
389 ; Timer 5 for ISR-independent Wait/Timeout
|
|
390 clrf T5GCON ; clear Timer5 gate control register
|
|
391 ; movlw b'10001111' ; old value
|
|
392 movlw b'10001011' ; bit 7-6: 10 = clock source SOSC/SCLKI (with bit 3 = 1)
|
|
393 ; bit 5-4: 00 = 1:1 prescaler
|
|
394 ; bit 3: 1 = clock source SOSC/SCLKI (with bit 7-6 = 10)
|
|
395 ; bit 2: 0 = synchronize external clock input
|
|
396 ; bit 1: 1 = 16 bit operation
|
|
397 ; bit 0: 1 = timer enabled
|
|
398 ; 32768 Hz clock source, 1:1 prescaler -> timer counts at 30.51757813 µs/bit
|
|
399 movwf T5CON ; ...
|
0
|
400
|
623
|
401
|
634
|
402 ; turn off unused Timers
|
|
403 ;banksel 0xF16 ; addresses F16h...F5Fh are not part of the access RAM
|
|
404 movlw b'11000000' ; disable ECCP3 and ECCP2
|
|
405 movwf PMD0 ; ...
|
623
|
406 IFDEF _external_sensor
|
634
|
407 movlw b'11010001' ; disable PSP, CTMU, Timer 4 and EMB
|
623
|
408 ELSE
|
634
|
409 movlw b'11011001' ; disable PSP, CTMU, Timer 4, Timer 3 and EMB
|
623
|
410 ENDIF
|
634
|
411 movwf PMD1 ; ...
|
|
412 movlw b'11010111' ; disable timer 10, timer 8, timer 6 and comparators 1-3
|
|
413 movwf PMD2 ; ...
|
|
414 movlw b'11111111' ; disable CCP 4-10 and timer 12
|
|
415 movwf PMD3 ; ...
|
608
|
416
|
623
|
417
|
|
418 ; turn off unused CTMU
|
634
|
419 ;banksel 0xF16 ; addresses F16h...F5Fh are not part of the access RAM
|
|
420 clrf CTMUCONH ; disable CTMU
|
|
421 clrf CTMUCONL ; ...
|
|
422 clrf CTMUICON ; ...
|
|
423
|
623
|
424
|
604
|
425 banksel common
|
608
|
426
|
623
|
427
|
0
|
428 ; Interrupts
|
634
|
429 bcf PIR5,TMR7IF ; if applicable clear timer 7 IRQ flag
|
0
|
430
|
634
|
431 movlw b'11010000' ; enable global IRQ, peripheral IRQ and external IRQ 0
|
|
432 movwf INTCON ; ...
|
|
433 movlw b'00001000' ; external IRQ 0 on falling edge, pull-up of PORTB by TRIS register
|
|
434 movwf INTCON2 ; ...
|
|
435 movlw b'00000000' ; disable external IRQs 1,2,3
|
|
436 movwf INTCON3 ; ...
|
|
437 movlw b'00000001' ; enable timer 1 IRQ
|
|
438 movwf PIE1 ; ...
|
|
439 movlw b'00000010' ; enable timer 3 IRQ
|
|
440 movwf PIE2 ; ...
|
|
441 movlw b'00000000' ; enable timer 5 IRQ
|
|
442 movwf PIE5 ; ...
|
|
443 movlw b'00000001' ; enable RTCC IRQ
|
|
444 movwf PIE3 ; ...
|
|
445 movlw b'00001000' ; enable timer 7 IRQ
|
|
446 movwf PIE5 ; ...
|
|
447
|
|
448 ; Release RESET from RX Circuitry
|
|
449 bcf active_reset_ostc_rx
|
|
450
|
|
451 ; Power-up the Switches
|
623
|
452 ;bra power_up_switches
|
|
453
|
0
|
454
|
634
|
455 ;-----------------------------------------------------------------------------
|
|
456 ; Power-up the Switches
|
|
457 ;
|
623
|
458 global power_up_switches
|
|
459 power_up_switches:
|
|
460 bsf power_sw1 ; switch on power supply for switch 1
|
|
461 btfss power_sw1 ; power established?
|
|
462 bra $-4 ; NO - wait
|
634
|
463
|
623
|
464 bsf power_sw2 ; switch on power supply for switch 2
|
|
465 btfss power_sw2 ; power established?
|
|
466 bra $-4 ; NO - wait
|
204
|
467
|
634
|
468 return ; done
|
|
469
|
0
|
470
|
|
471 ;=============================================================================
|
634
|
472 hwos2 CODE
|
|
473 ;=============================================================================
|
623
|
474
|
634
|
475 ;-----------------------------------------------------------------------------
|
|
476 ; CPU Speed Change Requests
|
|
477 ;
|
623
|
478 global request_speed_eco
|
|
479 request_speed_eco:
|
|
480 movlw coding_speed_eco ; load coding for eco speed
|
|
481 movwf cpu_speed_request ; request ISR to change the CPU speed
|
|
482 return ; done
|
|
483
|
|
484 global request_speed_normal
|
|
485 request_speed_normal:
|
|
486 movlw coding_speed_normal ; load coding for normal speed
|
|
487 movwf cpu_speed_request ; request ISR to change the CPU speed
|
|
488 return ; done
|
|
489
|
|
490 global request_speed_fastest
|
|
491 request_speed_fastest:
|
|
492 movlw coding_speed_fastest ; load coding for fastest speed
|
|
493 movwf cpu_speed_request ; request ISR to change the CPU speed
|
|
494 return ; done
|
|
495
|
634
|
496
|
0
|
497 ;=============================================================================
|
634
|
498 hwos3 CODE
|
|
499 ;=============================================================================
|
|
500
|
|
501 ;-----------------------------------------------------------------------------
|
|
502 ; Backup the first 128 bytes from program FLASH to EEPROM
|
623
|
503 ;
|
|
504 global backup_flash_page
|
|
505 backup_flash_page:
|
|
506 banksel common
|
631
|
507
|
634
|
508 ; set start address in internal program FLASH
|
631
|
509 movlw 0x00 ; set 0x000000
|
|
510 movwf TBLPTRL ; ...
|
|
511 movwf TBLPTRH ; ...
|
|
512 movwf TBLPTRU ; ...
|
|
513 TBLRD*- ; dummy read to be in 128 byte block
|
|
514
|
|
515 ; set start address in EEPROM
|
|
516 EEPROM_SET_ADDRESS eeprom_prog_page0_backup
|
623
|
517
|
|
518 movlw .128 ; copy 1 block = 128 byte
|
631
|
519 movwf eeprom_loop ; initialize loop counter
|
623
|
520 backup_flash_loop:
|
634
|
521 tblrd+* ; read one byte from program FLASH (with pre-increment)
|
|
522 movff TABLAT,EEDATA ; transfer byte from program FLASH read to EEPROM write
|
631
|
523 call write_eeprom ; execute EEPROM write
|
623
|
524 incf EEADR,F ; increment EEPROM address
|
631
|
525 decfsz eeprom_loop,F ; all 128 byte done?
|
623
|
526 bra backup_flash_loop ; NO - loop
|
631
|
527 return ; YES - done
|
623
|
528
|
634
|
529
|
0
|
530 ;=============================================================================
|
634
|
531 hwos4 CODE
|
|
532 ;=============================================================================
|
|
533
|
|
534 ;-----------------------------------------------------------------------------
|
|
535 ; Restore the first 128 bytes from EEPROM to program FLASH
|
623
|
536 ;
|
|
537 global restore_flash
|
|
538 restore_flash:
|
|
539 banksel common
|
631
|
540
|
634
|
541 ;set start address in internal program FLASH
|
631
|
542 movlw 0x00 ; set 0x000000
|
|
543 movwf TBLPTRL ; ...
|
|
544 movwf TBLPTRH ; ...
|
|
545 movwf TBLPTRU ; ...
|
|
546 TBLRD*- ; dummy read to be in 128 byte block
|
623
|
547
|
|
548 movlw b'10010100' ; setup block erase
|
|
549 rcall restore_write ; execute block erase
|
|
550
|
631
|
551 ; set start address in EEPROM
|
|
552 EEPROM_SET_ADDRESS eeprom_prog_page0_backup
|
623
|
553
|
631
|
554 movlw .128 ; copy 1 block = 128 byte
|
|
555 movwf eeprom_loop ; initialize loop counter
|
623
|
556 restore_flash_loop:
|
631
|
557 call read_eeprom ; execute EEPROM read
|
623
|
558 incf EEADR,F ; increment EEPROM address
|
634
|
559 movff EEDATA,TABLAT ; transfer byte from EEPROM read to program FLASH write
|
|
560 tblwt+* ; execute program FLASH write (with pre-increment)
|
631
|
561 decfsz eeprom_loop,F ; all 128 bytes done?
|
|
562 bra restore_flash_loop ; NO - loop
|
623
|
563 movlw b'10000100' ; YES - setup block write
|
|
564 rcall restore_write ; - execute block write
|
|
565 reset ; - done, reset CPU
|
|
566
|
|
567 restore_write:
|
631
|
568 movwf EECON1 ; configure operation
|
|
569 movlw 0x55 ; unlock sequence
|
|
570 movwf EECON2 ; ...
|
|
571 movlw 0xAA ; ...
|
|
572 movwf EECON2 ; ...
|
|
573 bsf EECON1,WR ; execute operation
|
|
574 nop ; wait for operation to complete
|
|
575 nop ; ...
|
|
576 return ; done
|
|
577
|
634
|
578
|
631
|
579 ;=============================================================================
|
634
|
580 hwos5 CODE
|
|
581 ;=============================================================================
|
|
582
|
|
583 ;-----------------------------------------------------------------------------
|
|
584 ; Memory clear and move Functions, to be used via Macros
|
631
|
585 ;
|
|
586 global memory_clear
|
|
587 memory_clear:
|
|
588 clrf POSTINC1 ; clear address
|
|
589 decfsz WREG ; decrement loop counter, became zero?
|
|
590 bra memory_clear ; NO - loop
|
|
591 return ; YES - done
|
|
592
|
|
593 global memory_move
|
|
594 memory_move:
|
|
595 movff POSTINC1,POSTINC2 ; copy from-to
|
|
596 decfsz WREG ; decrement loop counter, became zero?
|
|
597 bra memory_move ; NO - loop
|
|
598 return ; YES - done
|
0
|
599
|
634
|
600
|
|
601 ;=============================================================================
|
|
602 hwos6 CODE
|
|
603 ;=============================================================================
|
|
604
|
|
605 ;-----------------------------------------------------------------------------
|
|
606 ; Read CPU Silicon Version
|
|
607 ;
|
|
608 global get_cpu_version
|
|
609 get_cpu_version:
|
|
610 movlw 0xFE ; select address 0x3FFFFE
|
|
611 movwf TBLPTRL ; ...
|
|
612 movlw 0xFF ; ...
|
|
613 movwf TBLPTRH ; ...
|
|
614 movlw 0x3F ; ...
|
|
615 movwf TBLPTRU ; ...
|
|
616 TBLRD*+ ; read DEVID1 byte
|
|
617 movlw b'00011111' ; load mask for silicon version
|
|
618 andwf TABLAT,W ; apply mask and store result in WREG
|
|
619 return ; done
|
|
620
|
|
621 ;-----------------------------------------------------------------------------
|
|
622
|
|
623 END
|