Mercurial > public > hwos_code
annotate src/eeprom_rs232.inc @ 187:669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
Ignore 1,2mV noise for not-connected inputs
| author | heinrichsweikamp |
|---|---|
| date | Sat, 25 Oct 2014 15:28:18 +0200 |
| parents | f3062a611eef |
| children | 5a4801918be9 |
| 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 |
| 0 | 31 extern disable_ir |
