ee_access.h 342 B

12345678910111213141516
  1. /* By Thomas.Lange@Corelatus.com 001025
  2. Definitions for EEPROM/VOLT METER DS2438 */
  3. #ifndef INCeeaccessh
  4. #define INCeeaccessh
  5. int ee_do_command( u8 *Tx, int Tx_len, u8 *Rx, int Rx_len, int Send_skip );
  6. int ee_init_data(void);
  7. int ee_crc_ok( u8 *Buffer, int Len, u8 Crc );
  8. #ifndef TRUE
  9. #define TRUE 1
  10. #endif
  11. #endif /* INCeeaccessh */