Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/MAIN.ASM @ 655:8c01edcf57fc
Allow any diluent to be "First gas" in CCR modes
author | heinrichsweikamp |
---|---|
date | Tue, 23 Oct 2012 10:03:47 +0200 |
parents | e3ffc6d62a63 |
children | c6220d340684 |
rev | line source |
---|---|
0 | 1 |
2 ; OSTC - diving computer code | |
482
8e1fb9cdd62a
lock sensor for surfacemode until value is stable
heinrichsweikamp
parents:
454
diff
changeset
|
3 ; Copyright (C) 2008-2011 HeinrichsWeikamp GbR |
0 | 4 |
5 ; This program is free software: you can redistribute it and/or modify | |
6 ; it under the terms of the GNU General Public License as published by | |
7 ; the Free Software Foundation, either version 3 of the License, or | |
8 ; (at your option) any later version. | |
9 | |
10 ; This program is distributed in the hope that it will be useful, | |
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ; GNU General Public License for more details. | |
14 | |
15 ; You should have received a copy of the GNU General Public License | |
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | |
18 | |
19 ; includes and isr | |
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
21 ; written: 041013 | |
22 ; last updated: 081219 | |
23 ; known bugs: | |
24 ; ToDo: | |
25 | |
26 | |
27 LIST P=18F4685 ;directive to define processor | |
28 #include <P18F4685.INC> ;processor specific variable definitions | |
29 | |
30 #include definitions.asm ; Defines, I/O Ports and variables | |
494 | 31 #include shared_definitions.h |
164 | 32 |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
33 reset_v code 0x0000 |
164 | 34 goto start ; Start! |
0 | 35 |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
36 inter_v code 0x0008 |
0 | 37 bra HighInt ;High Priority Interrups |
38 | |
353
b5b030c1ae7e
Avoid spurious switch-depth stops with 3 or more gas.
JeanDo
parents:
344
diff
changeset
|
39 inter_asm code 0x0018 ;Low Priority Interrups |
0 | 40 ; *** low priority interrupts not used |
41 bra HighInt ;High Priority Interrups | |
42 | |
43 HighInt: | |
44 movlb b'00000001' ;select Bank1 | |
92 | 45 movff PRODL,prod_temp+0 |
46 movff PRODH,prod_temp+1 | |
0 | 47 |
553 | 48 movf PORTB,W ; move portb into latch register |
0 | 49 |
553 | 50 btfsc PIR1,TMR1IF ; Timer1 INT (external 32.768kHz Clock) |
0 | 51 call timer1int |
52 | |
553 | 53 btfsc INTCON,TMR0IF ; Timer0 INT (Debounce Timer) |
0 | 54 call timer0int |
55 | |
56 btfsc PIR1,RCIF ; UART | |
57 call uartint | |
58 | |
59 btfsc INTCON,INT0IF ; Switch left | |
238 | 60 call switch_left_int |
0 | 61 |
62 btfsc INTCON3,INT1IF ; switch right | |
238 | 63 call switch_right_int |
0 | 64 |
92 | 65 movff prod_temp+1,PRODH |
66 movff prod_temp+0,PRODL | |
543 | 67 retfie FAST |
0 | 68 |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
69 ;============================================================================= |
174 | 70 #include multilang_text.asm ; includes textmacros |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
71 |
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
72 ;============================================================================= |
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
73 osct_asm code |
97 | 74 #include strings.inc |
75 | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
238
diff
changeset
|
76 #include isr.asm ; Interrupt service routine (RTC&Sensor) |
0 | 77 #include displaytext.asm ; sends texts to wordprocessor |
78 #include math.asm ; mathematical functions | |
79 #include wait.asm ; waitroutines | |
123 | 80 #include oled_samsung.asm ; Attached in 80-System 8-Bit Mode |
577 | 81 #include aa_wordprocessor.asm; New antialiased word processor and fonts |
123 | 82 #include color_processor.asm ; Color image drawing. |
330 | 83 #include dump_screen.asm ; Copy screen contains to serial interface |
0 | 84 #include valconv.asm ; outputs to POSTINC2 |
85 #include eeprom_rs232.asm ; Internal EEPROM and RS232 Interface | |
86 #include menu_custom.asm ; Menu "Custom FunctionsI" and "Custom FunctionsII" | |
87 #include menu.asm ; Main Menu and Setup Menu | |
88 #include menu_reset.asm ; Submenu "Reset" | |
89 #include menu_settime.asm ; Submenu "Set Time" | |
90 #include ms5535.asm ; Interface to MS5535A,B or C pressure sensor | |
91 #include pled_outputs.asm ; div. PLED outputs and background debugger | |
92 #include i2c_eeprom.asm ; for external I2C EEPROM and general I2C Routines | |
93 #include menu_logbook.asm ; Submenu "Logbook" | |
94 #include interface.asm ; Interface routines | |
95 #include menu_ppO2.asm ; Constant ppO2 setup menu | |
96 #include menu_battery.asm ; Submenu "Battery Info" | |
97 #include menu_gassetup.asm ; Menu "Gas Setup" | |
98 #include surfmode.asm ; Mainroutines for Surfacemode | |
99 #include divemode.asm ; Mainroutines for Divemode | |
100 #include divemode_menu.asm ; Underwater menu | |
101 #include sleepmode.asm ; Mainroutines for Sleepmode | |
102 #include adc_rtc.asm ; A/D converter (battery control) and RTC init | |
103 #include temp_extrema.asm ; Takes care of the temperature extrema logger | |
104 #include sync_clock.asm ; syncs RTC with PC | |
105 #include start.asm ; Startup and init, checks background debugger | |
106 #include simulator.asm ; Stand-alone simulator routines | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
97
diff
changeset
|
107 #include customview.asm ; Customview for divemode |
97 | 108 #include strings.asm ; Basic string operations |
0 | 109 |
125 | 110 #include altimeter.asm |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
111 ;============================================================================= |
123 | 112 #include dive_icons.asm ; Draw dive type icons in surface mode. |
62 | 113 |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
114 ;============================================================================= |
123 | 115 ; Extracted from p3_wordprocessor includes: |
116 #include aa_fonts.asm | |
110 | 117 |
118 ;============================================================================= | |
552 | 119 MESSG "OSTC - diving computer code, Copyright (C) 2012 HeinrichsWeikamp" |
0 | 120 MESSG "This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the" |
121 MESSG "Free Software Foundation, either version 3 of the License, or (at your option) any later version." | |
122 MESSG "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY" | |
123 MESSG "or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details." | |
124 MESSG "You should have received a copy of the GNU General Public License along with this program.If not, see http://www.gnu.org/licenses/." | |
125 | |
238 | 126 ifdef __DEBUG |
127 MESSG "OSTC Mk.2 code compiled in DEBUG configuration!" | |
128 else | |
129 MESSG "OSTC Mk.2 code compiled in RELEASE configuration!" | |
130 endif | |
131 | |
132 | |
0 | 133 END ; end of program |
134 |