Details | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 94 | johboh | 1 | /********************************************************************* |
| 2 | * |
||
| 3 | * Functions for reading and writing to EEPROM. |
||
| 4 | * |
||
| 5 | ********************************************************************* |
||
| 6 | * FileName: $HeadURL: https://svn.auml.se/svn/HomeAutomation/trunk/EmbeddedSoftware/PIC/Include/EEAccess.h $ |
||
| 7 | * Last changed: $LastChangedDate: 2006-11-14 20:15:02 +0100 (Tue, 14 Nov 2006) $ |
||
| 8 | * By: $LastChangedBy: johboh $ |
||
| 9 | * Revision: $Revision: 94 $ |
||
| 10 | ********************************************************************/ |
||
| 11 | #ifndef __EEACCESS_H |
||
| 12 | #define __EEACCESS_H |
||
| 13 | |||
| 14 | #include <typedefs.h> |
||
| 15 | |||
| 16 | BYTE EERead(WORD addr); |
||
| 17 | void EEWrite(WORD addr,BYTE data); |
||
| 18 | |||
| 19 | #endif //EEACCESS_H |