Mercurial > public > hwos_code
annotate src/eeprom_rs232.inc @ 535:cf68fe0c3002
NEW: Show a warning for each sensor if the sensor is end-of-life after calibration (Less then 8mV in Air at sea level)
author | heinrichsweikamp |
---|---|
date | Tue, 22 Aug 2017 13:23:52 +0200 |
parents | 5a4801918be9 |
children | b455b31ce022 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File eeprom_rs232.inc | |
4 ; | |
5 ; | |
6 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
7 ;============================================================================= | |
8 ; HISTORY | |
9 ; 2011-08-03 : [mH] moving from OSTC code | |
10 | |
11 write_int_eeprom macro eeprom_address | |
12 movlw eeprom_address | |
13 call write_int_eeprom_1 | |
14 endm | |
15 | |
16 read_int_eeprom macro eeprom_address | |
17 movlw eeprom_address | |
18 call read_int_eeprom_1 | |
19 endm | |
20 | |
21 extern write_int_eeprom_1 | |
22 extern read_int_eeprom_1 | |
23 extern read_eeprom | |
24 extern write_eeprom | |
25 extern enable_rs232 | |
26 extern disable_rs232 | |
27 extern rs232_get_byte | |
28 extern rs232_wait_tx | |
113 | 29 extern rs232_wait_tx2 |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
113
diff
changeset
|
30 extern enable_ir_s8 |
224
5a4801918be9
temporally disable "Copy disable flags from digital input" routine
heinrichsweikamp
parents:
187
diff
changeset
|
31 extern disable_ir_s8 |