BMS_EEPROM.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*********************************************************************
  2. *
  3. * BMS_EEPROM Header
  4. *
  5. *********************************************************************
  6. * FileName: BMS_EEPROM.h
  7. * Processor: PIC18F25K80
  8. * Complier: Microchip C18 v3.41
  9. * Company: KIT - CN - IPE
  10. *
  11. * Author Date Comment
  12. *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  13. * Ott W. 23.03.2016 Release
  14. *********************************************************************/
  15. #ifndef BMS_EEPROM_H
  16. #define BMS_EEPROM_H
  17. /*********************************************************************
  18. *
  19. * Defines
  20. *
  21. *********************************************************************/
  22. /*********************************************************************
  23. *
  24. * Function Prototypes
  25. *
  26. *********************************************************************/
  27. uint8_t EEread (uint8_t adress);
  28. void EEwrite (uint8_t adress, uint8_t *DATA_temp);
  29. void EEwrite_new (uint8_t adress, uint8_t data);
  30. #endif /* BMS_EEPROM_H */