-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEeprom.h
34 lines (25 loc) · 1.11 KB
/
Eeprom.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
Project: stepRocker Mini-TMCL
Module: Eeprom.h
Definitions of EEPROM access functions
Copyright (C) 2011 TRINAMIC Motion Control GmbH & Co KG
Waterloohain 5
D - 22769 Hamburg, Germany
http://www.trinamic.com/
This program is free software; you can redistribute it and/or modify it
freely.
This program is distributed "as is" in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.
*******************************************************************************/
/**
\file Eeprom.h
\author Trinamic Motion Control GmbH & Co KG
\version 1.00
\brief EEPROM access functions
This file contains the EEPROM access function defintions.
*/
void WriteEepromByte(UINT Address, UCHAR Value);
void WriteEepromBlock(UINT Address, UCHAR *Block, UINT Size);
UCHAR ReadEepromByte(UINT Address);
void ReadEepromBlock(UINT Address, UCHAR *Block, UINT Size);