Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/MAIN.ASM @ 489:b8edb7362870
Cleanup shared_definitions include path
author | JeanDo |
---|---|
date | Mon, 17 Oct 2011 21:55:09 +0200 |
parents | 8e1fb9cdd62a |
children | 19b9e19ea4da |
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 | |
489 | 31 #include "../OSTC_code_c_part2/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 movff BSR,0x102 ;save BSR register | |
45 movlb b'00000001' ;select Bank1 | |
46 | |
47 movff STATUS,status_temp ;save STATUS register | |
48 movff WREG,wreg_temp ;save working register | |
92 | 49 movff PRODL,prod_temp+0 |
50 movff PRODH,prod_temp+1 | |
0 | 51 |
52 movf PORTB,W ;move portb into latch register | |
53 | |
54 btfsc PIR1,TMR1IF ;Timer1 INT (external 32.768kHz Clock) | |
55 call timer1int | |
56 | |
57 btfsc INTCON,TMR0IF ;Timer0 INT (Debounce Timer) | |
58 call timer0int | |
59 | |
60 btfsc PIR1,RCIF ; UART | |
61 call uartint | |
62 | |
63 btfsc INTCON,INT0IF ; Switch left | |
238 | 64 call switch_left_int |
0 | 65 |
66 btfsc INTCON3,INT1IF ; switch right | |
238 | 67 call switch_right_int |
0 | 68 |
92 | 69 movff prod_temp+1,PRODH |
70 movff prod_temp+0,PRODL | |
0 | 71 movff wreg_temp,WREG ;restore working register |
72 movff status_temp,STATUS ;restore STATUS register | |
73 movff 0x102,BSR ;restore BSR register | |
74 retfie | |
75 | |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
76 ;============================================================================= |
174 | 77 #include multilang_text.asm ; includes textmacros |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
78 |
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
79 ;============================================================================= |
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
80 osct_asm code |
97 | 81 #include strings.inc |
82 | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
238
diff
changeset
|
83 #include isr.asm ; Interrupt service routine (RTC&Sensor) |
0 | 84 #include displaytext.asm ; sends texts to wordprocessor |
85 #include math.asm ; mathematical functions | |
86 #include wait.asm ; waitroutines | |
123 | 87 #include oled_samsung.asm ; Attached in 80-System 8-Bit Mode |
88 #include aa_wordprocessor.asm ; New antialiased word processor and fonts | |
89 #include color_processor.asm ; Color image drawing. | |
330 | 90 #include dump_screen.asm ; Copy screen contains to serial interface |
0 | 91 #include valconv.asm ; outputs to POSTINC2 |
92 #include eeprom_rs232.asm ; Internal EEPROM and RS232 Interface | |
93 #include menu_custom.asm ; Menu "Custom FunctionsI" and "Custom FunctionsII" | |
94 #include menu.asm ; Main Menu and Setup Menu | |
95 #include menu_reset.asm ; Submenu "Reset" | |
96 #include menu_settime.asm ; Submenu "Set Time" | |
97 #include ms5535.asm ; Interface to MS5535A,B or C pressure sensor | |
98 #include pled_outputs.asm ; div. PLED outputs and background debugger | |
99 #include i2c_eeprom.asm ; for external I2C EEPROM and general I2C Routines | |
100 #include menu_logbook.asm ; Submenu "Logbook" | |
101 #include interface.asm ; Interface routines | |
102 #include menu_ppO2.asm ; Constant ppO2 setup menu | |
103 #include menu_battery.asm ; Submenu "Battery Info" | |
104 #include menu_gassetup.asm ; Menu "Gas Setup" | |
105 #include surfmode.asm ; Mainroutines for Surfacemode | |
106 #include divemode.asm ; Mainroutines for Divemode | |
107 #include divemode_menu.asm ; Underwater menu | |
108 #include sleepmode.asm ; Mainroutines for Sleepmode | |
109 #include adc_rtc.asm ; A/D converter (battery control) and RTC init | |
110 #include temp_extrema.asm ; Takes care of the temperature extrema logger | |
111 #include sync_clock.asm ; syncs RTC with PC | |
112 #include start.asm ; Startup and init, checks background debugger | |
113 #include simulator.asm ; Stand-alone simulator routines | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
97
diff
changeset
|
114 #include customview.asm ; Customview for divemode |
97 | 115 #include strings.asm ; Basic string operations |
0 | 116 |
125 | 117 #include altimeter.asm |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
118 ;============================================================================= |
123 | 119 #include dive_icons.asm ; Draw dive type icons in surface mode. |
62 | 120 |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
62
diff
changeset
|
121 ;============================================================================= |
123 | 122 ; Extracted from p3_wordprocessor includes: |
123 #include aa_fonts.asm | |
110 | 124 |
125 ;============================================================================= | |
454 | 126 MESSG "OSTC - diving computer code, Copyright (C) 2011 HeinrichsWeikamp" |
0 | 127 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" |
128 MESSG "Free Software Foundation, either version 3 of the License, or (at your option) any later version." | |
129 MESSG "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY" | |
130 MESSG "or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details." | |
131 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/." | |
132 | |
238 | 133 ifdef __DEBUG |
134 MESSG "OSTC Mk.2 code compiled in DEBUG configuration!" | |
135 else | |
136 MESSG "OSTC Mk.2 code compiled in RELEASE configuration!" | |
137 endif | |
138 | |
139 | |
0 | 140 END ; end of program |
141 |